/* ====================================================================
   AL HOMES — BLOG ARCHIVE / INSIGHTS  (Figma match v5.1)
   File: /assets/css/blog-archive-v5.css
   Dev:  Paul .Y 20260725

   BAGONG FILE — hindi kapalit ng blog-archive.css. Iwan mo lang doon
   ang luma; hindi naman siya naka-enqueue sa /blogs/ (naka-gate sa
   is_home()/is_archive(), at Page ang blogs).

   Prefix: alb5-  ·  Scoped lahat sa .alb5, walang :root leak.

   Figma px values (hindi Tailwind guesses):
     --Primary  #5A4F42   pagination active
     --300      #E8E5DF   bottom divider
     --400      #CCC8C0
     --100      #FAF9F7   header bg
     Dark-Text  #2A2A2A   title + EXCERPT
     Light-Text #666666   author • date

   v5.1 — CARD MEDIA: fixed height + align-self:stretch (dating
   aspect-ratio). Featured card = 350px, grid card = 250px. object-fit:
   cover na ang bahala mag-"smart fit" ng imahe kahit anong orientation
   (landscape/portrait) nang hindi na-distort — laging fu-fill ang box.
   ==================================================================== */


/* ===================================
   TOKENS + RESET (scoped)
   =================================== */
.alb5 {
    --alb5-dark:      #2A2A2A;   /* Dark-Text  */
    --alb5-light:     #666666;   /* Light-Text */
    --alb5-primary:   #5A4F42;   /* Primary    */
    --alb5-300:       #E8E5DF;
    --alb5-400:       #CCC8C0;
    --alb5-200:       #EFEDEB;
    --alb5-100:       #FAF9F7;
    --alb5-white:     #FFFFFF;

    --alb5-max:       1200px;
    --alb5-gutter:    75px;      /* katulad ng nav / dating .alatq */
    --alb5-gap:       30px;      /* Figma: sections, rows, cards */

    --alb5-font:      'Afacad Flux', -apple-system, BlinkMacSystemFont, sans-serif;
    --alb5-display:   'Sofia Pro', -apple-system, BlinkMacSystemFont, sans-serif;

    background: var(--alb5-white);
    /* Ang 100vw breakout ay hawak ng blog-fullwidth-fix.css sa
       .blog-archive-shortcode — hindi na inuulit dito. */
}

.alb5,
.alb5 *,
.alb5 *::before,
.alb5 *::after {
    box-sizing: border-box;
}

.alb5 h2,
.alb5 h3,
.alb5 p {
    margin: 0;
    padding: 0;
}


/* ====================================================================
   HEADER — "Insights for homebuyers"
   Figma: 1440 px-120 py-80, bg-100, content 1200, gap 10
   ==================================================================== */
.alb5-hero {
    width: 100%;
    padding: 80px var(--alb5-gutter);
    background: var(--alb5-100);
}

.alb5-hero__wrap {
    width: 100%;
    max-width: var(--alb5-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alb5-hero__title {
    font-family: var(--alb5-display);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    color: var(--alb5-dark);
}

.alb5-hero__desc {
    font-family: var(--alb5-font);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    color: var(--alb5-light);
}


/* ====================================================================
   SECTIONS
   ==================================================================== */
.alb5-section {
    width: 100%;
    padding: 80px var(--alb5-gutter);
    background: var(--alb5-white);
}

/* Featured at All posts ay magkadikit sa Figma — 30px lang ang pagitan */
.alb5-section--featured { padding-bottom: 30px; }
.alb5-section--all      { padding-top: 30px; }

.alb5-wrap {
    width: 100%;
    max-width: var(--alb5-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--alb5-gap);
}

/* Section title — Afacad Flux 28/500 */
.alb5-heading {
    font-family: var(--alb5-font);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--alb5-dark);
}


/* ====================================================================
   GRIDS
   Figma: 1200 container · featured 585+30+585 · grid 380x3 + 30x2
   ==================================================================== */
.alb5-featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--alb5-gap);
    align-items: start;
}

.alb5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--alb5-gap);
    align-items: start;
}


/* ====================================================================
   CARD
   ==================================================================== */
.alb5-card {
    display: flex;
    flex-direction: column;
    gap: 20px;                 /* grid card: image → body */
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.alb5-card--featured { gap: 30px; }

/* --- image (TOP) ---
   v5.1: fixed height + align-self:stretch (Paul's spec) instead of
   aspect-ratio. object-fit:cover on the <img> below does the "smart
   fit" — crops to fill the box no matter the source image's
   orientation, no stretching/distortion. */
.alb5-card__media {
    display: block !important;
    width: 100% !important;
    height: 250px;
    align-self: stretch;
    overflow: hidden !important;
    position: relative;
    background: var(--alb5-200);
}

.alb5-card--featured .alb5-card__media {
    height: 350px;
}

.alb5 .alb5-card__media img,
.alb5-card__img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: transform 0.4s ease;
}

.alb5-card:hover .alb5-card__img { transform: scale(1.04); }

/* --- body --- */
.alb5-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;                 /* Figma: text block → pills */
}

.alb5-card__text {
    display: flex;
    flex-direction: column;
    gap: 5px;                  /* meta → headline */
}

/* meta: author • date */
.alb5-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alb5-card__author,
.alb5-card__date {
    font-family: var(--alb5-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--alb5-light);
}

.alb5-card__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--alb5-light);
    flex-shrink: 0;
}

.alb5-card__headline {
    display: flex;
    flex-direction: column;
    gap: 10px;                 /* title → excerpt */
}

/* title — 20/500 grid, 24/500 featured */
.alb5-card__title {
    font-family: var(--alb5-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: capitalize;
}

.alb5-card__title a {
    color: var(--alb5-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.alb5-card__title a:hover { color: var(--alb5-primary); }

.alb5-card--featured .alb5-card__title { font-size: 24px; }

/* Figma: featured title fixed h-63 (2 lines @ 24px) */
.alb5-card--featured .alb5-card__title a {
    min-height: 63px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* excerpt — Dark-Text, 16/400 grid, 18/400 featured */
.alb5-card__excerpt {
    font-family: var(--alb5-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--alb5-dark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.alb5-card--featured .alb5-card__excerpt {
    font-size: 18px;
    -webkit-line-clamp: 3;
}

/* category pills (BOTTOM) */
.alb5-card__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.alb5-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--alb5-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--alb5-dark);
    padding: 5px 10px;
    border: 0.5px solid var(--alb5-dark);
    border-radius: 50px;
    background: transparent;
    text-transform: capitalize;
    white-space: nowrap;
}


/* ====================================================================
   EMPTY STATE
   ==================================================================== */
.alb5-empty {
    padding: 60px 0;
    text-align: center;
}

.alb5-empty p {
    font-family: var(--alb5-font);
    font-size: 18px;
    font-weight: 300;
    color: var(--alb5-light);
}


/* ====================================================================
   PAGINATION
   Figma: pill 35x35 radius 20, gap 10 · active bg Primary + White 16/500
          idle bg White + Dark-Text 16/400 · chevrons 24x24 bare
   ==================================================================== */
.alb5-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.alb5-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.alb5-pagination li {
    list-style: none;
    margin: 0;
}

.alb5-pagination .page-numbers a,
.alb5-pagination .page-numbers span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 35px !important;
    height: 35px !important;
    padding: 0 8px !important;
    font-family: var(--alb5-font) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-transform: capitalize !important;
    color: var(--alb5-dark) !important;
    background: var(--alb5-white) !important;
    border: none !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease !important;
}

.alb5-pagination .page-numbers a:hover {
    background: var(--alb5-200) !important;
}

.alb5-pagination .page-numbers .current {
    background: var(--alb5-primary) !important;
    color: var(--alb5-white) !important;
    font-weight: 500 !important;
}

.alb5-pagination .page-numbers .dots {
    background: transparent !important;
    min-width: auto !important;
    padding: 0 2px !important;
    cursor: default !important;
    pointer-events: none !important;
}

.alb5-pagination .page-numbers a.page-nav {
    width: 35px !important;
    min-width: 35px !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--alb5-dark) !important;
}

.alb5-pagination .page-numbers a.page-nav:hover {
    background: var(--alb5-200) !important;
}

.alb5-pagination .page-numbers a.page-nav svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    color: currentColor !important;
}


/* ====================================================================
   EXPLORE AVAILABLE HOMES — Elementor Template wrapper (v5.2)
   Neutral lang — walang idinagdag na padding/max-width dito dahil
   malamang may sarili nang container/gutter ang Elementor Template mismo
   (id 4455), kagaya nang ginawa niya bilang standalone widget dati.
   Kung sablay ang spacing pag na-preview, dito lang babaguhin.
   ==================================================================== */
.alb5-explore-homes {
    width: 100%;
    background: var(--alb5-white);
}


/* ====================================================================
   BOTTOM DIVIDER — bago ang [elementor-template id="4455"]
   Figma line-51: 1200 wide, 1px --300
   ==================================================================== */
.alb5-divider {
    width: 100%;
    padding: 0 var(--alb5-gutter);
    background: var(--alb5-white);
}

.alb5-divider__line {
    width: 100%;
    max-width: var(--alb5-max);
    height: 1px;
    margin: 0 auto;
    background: var(--alb5-300);
}


/* ====================================================================
   RESPONSIVE — parehong breakpoints ng nav / dating .alatq
   ==================================================================== */
@media screen and (max-width: 1400px) {
    .alb5 { --alb5-gutter: 40px; }
}

@media screen and (max-width: 1100px) {
    .alb5 { --alb5-gutter: 30px; }

    .alb5-hero__title { font-size: 32px; }
    .alb5-hero__desc  { font-size: 17px; }

    .alb5-heading { font-size: 26px; }
    .alb5-card--featured .alb5-card__title   { font-size: 22px; }
    .alb5-card--featured .alb5-card__excerpt { font-size: 17px; }
}

/* Tablet — featured 1 col, grid 2 cols */
@media screen and (max-width: 1023px) {
    .alb5-featured { grid-template-columns: 1fr; }
    .alb5-grid     { grid-template-columns: repeat(2, 1fr); }

    .alb5-card--featured .alb5-card__title a { min-height: 0; }
}

/* Mobile — 1 col */
@media screen and (max-width: 767px) {
    .alb5-hero {
        padding: 48px var(--alb5-gutter);
    }
    .alb5-hero__title { font-size: 28px; }
    .alb5-hero__desc  { font-size: 16px; }

    .alb5-section { padding: 48px var(--alb5-gutter); }
    .alb5-section--featured { padding-bottom: 24px; }
    .alb5-section--all      { padding-top: 24px; }

    .alb5-wrap { gap: 24px; }
    .alb5-grid { grid-template-columns: 1fr; }

    .alb5-heading { font-size: 24px; }

    .alb5-card,
    .alb5-card--featured { gap: 20px; }

    /* v5.1: keep media heights readable on small screens instead of
       inheriting the full 350/250 desktop heights */
    .alb5-card__media { height: 220px; }
    .alb5-card--featured .alb5-card__media { height: 220px; }

    .alb5-card--featured .alb5-card__title,
    .alb5-card__title { font-size: 20px; }

    .alb5-card--featured .alb5-card__excerpt,
    .alb5-card__excerpt { font-size: 16px; }

    /* itago ang double-arrow jumps sa maliit na screen */
    .alb5-pagination .page-numbers a[aria-label="First page"],
    .alb5-pagination .page-numbers a[aria-label="Last page"] { display: none !important; }

    .alb5-pagination .page-numbers { gap: 6px; }
    .alb5-pagination .page-numbers a,
    .alb5-pagination .page-numbers span {
        min-width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        padding: 0 6px !important;
    }
    .alb5-pagination .page-numbers a.page-nav {
        width: 32px !important;
        min-width: 32px !important;
    }
    .alb5-pagination .page-numbers a.page-nav svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .alb5-hero    { padding-top: 40px; padding-bottom: 40px; }
    .alb5-hero__title { font-size: 24px; }
    .alb5-hero__desc  { font-size: 15px; }

    .alb5-section { padding: 40px var(--alb5-gutter); }

    .alb5-card__author,
    .alb5-card__date { font-size: 14px; }
    .alb5-tag { font-size: 12px; padding: 4px 8px; }
}

@media screen and (max-width: 374px) {
    .alb5 { --alb5-gutter: 20px; }
}


/* ====================================================================
   REDUCED MOTION / PRINT
   ==================================================================== */
@media (prefers-reduced-motion: reduce) {
    .alb5-card__img,
    .alb5-pagination .page-numbers a { transition: none !important; }
    .alb5-card:hover .alb5-card__img { transform: none; }
}

@media print {
    .alb5-pagination,
    .alb5-divider { display: none; }
    .alb5-card { break-inside: avoid; }
}


/* BLOG ARCHIVE V5 - FIGMA EXACT MATCH */
.blog-archive-shortcode.v5 {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    overflow-x: hidden;
    background: #FFFFFF;
}
.blog-archive-shortcode.v5 :root {
    --blog-dark-text: #2A2A2A;
    --blog-light-text: #666666;
    --blog-primary: #5A4F42;
    --blog-300: #E8E5DF;
    --blog-400: #CCC8C0;
    --blog-100: #FAF9F7;
    --blog-200: #EFEDEB;
    --blog-white: #FFFFFF;
}
.blog-hero-section { background: #FAF9F7; padding: 80px 120px; width: 100%; display: flex; justify-content: flex-start; }
.blog-hero-container { max-width: 1440px; width: 100%; margin: 0 auto; }
.blog-hero-content { max-width: 731px; display: flex; flex-direction: column; gap: 10px; }
.blog-hero-title { font-family: 'Sofia Pro', 'Afacad Flux', sans-serif; font-size: 36px; font-weight: 400; line-height: 1.2; color: #2A2A2A; margin: 0; }
.blog-hero-subtitle { font-family: 'Afacad Flux', sans-serif; font-size: 18px; font-weight: 300; line-height: 1.5; color: #666666; margin: 0; }

.blog-featured-section { background: #FFFFFF; padding: 60px 120px 40px; width: 100%; }
.blog-featured-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.blog-section-title { font-family: 'Afacad Flux', sans-serif; font-size: 28px; font-weight: 500; color: #2A2A2A; margin: 0; }
.blog-featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-featured-card { display: flex; flex-direction: column; gap: 30px; }
.blog-featured-image-link { display: block; width: 100%; }
.blog-featured-image { width: 100%; height: 350px; overflow: hidden; background: #EFEDEB; }
.blog-featured-image img, .blog-featured-thumbnail { width: 100%; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block; transition: transform 0.4s ease; }
.blog-featured-card:hover .blog-featured-thumbnail { transform: scale(1.04); }
.blog-featured-content { display: flex; flex-direction: column; gap: 20px; }
.blog-featured-title { margin: 0; }
.blog-featured-title a { font-family: 'Afacad Flux', sans-serif; font-size: 24px; font-weight: 500; line-height: 1.3; color: #2A2A2A; text-decoration: none; text-transform: capitalize; display: block; transition: color 0.3s ease; }
.blog-featured-title a:hover { color: #5A4F42; }
.blog-featured-excerpt { font-family: 'Afacad Flux', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.5; color: #2A2A2A; margin: 0; }

.blog-posts-section { background: #FFFFFF; padding: 60px 120px 80px; width: 100%; }
.blog-posts-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { display: flex; flex-direction: column; gap: 20px; }
.blog-card-image-link { display: block; width: 100%; }
.blog-card-image { width: 100%; height: 250px; overflow: hidden; background: #EFEDEB; }
.blog-card-image img, .blog-card-thumbnail { width: 100%; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-thumbnail { transform: scale(1.04); }
.blog-card-content { display: flex; flex-direction: column; gap: 20px; }

.blog-card-meta { display: flex; align-items: center; gap: 8px; }
.blog-card-author, .blog-card-date { font-family: 'Afacad Flux', sans-serif; font-size: 16px; font-weight: 400; color: #666666; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: #666666; flex-shrink: 0; }

.blog-card-title-section { display: flex; flex-direction: column; gap: 10px; }
.blog-card-title { margin: 0; }
.blog-card-title a { font-family: 'Afacad Flux', sans-serif; font-size: 20px; font-weight: 500; line-height: 1.3; color: #2A2A2A; text-decoration: none; text-transform: capitalize; display: block; transition: color 0.3s ease; }
.blog-card-title a:hover { color: #5A4F42; }
.blog-card-excerpt { font-family: 'Afacad Flux', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; color: #2A2A2A; margin: 0; }

.blog-card-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.blog-card-tag { font-family: 'Afacad Flux', sans-serif; font-size: 14px; font-weight: 400; color: #2A2A2A; text-transform: capitalize; padding: 5px 10px; border: 0.5px solid #2A2A2A; border-radius: 50px; background: transparent; line-height: 1; white-space: nowrap; }

.blog-pagination { display: flex; justify-content: center; margin-top: 40px; }
.blog-pagination-wrap { display: flex; align-items: center; gap: 20px; }
.blog-pagination-wrap .page-numbers { display: flex; align-items: center; gap: 10px; }
.page-circle { display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; border-radius: 50%; background: #FFFFFF; color: #2A2A2A; font-family: 'Afacad Flux', sans-serif; font-size: 16px; font-weight: 400; text-decoration: none; border: none; transition: all 0.3s ease; cursor: pointer; line-height: 1; }
.page-circle:hover { background: #5A4F42; color: #FFFFFF; }
.page-circle.current { background: #5A4F42; color: #FFFFFF; font-weight: 500; cursor: default; }
.page-dots { display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; color: #2A2A2A; font-size: 14px; letter-spacing: 1px; }

.page-arrow { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #FFFFFF; color: #5A4F42; text-decoration: none; transition: all 0.3s ease; cursor: pointer; flex-shrink: 0; }
.page-arrow svg { display: block; width: 7.4px; height: 12px; color: #5A4F42; transition: color 0.3s ease; }
.page-arrow:hover { background: #5A4F42; }
.page-arrow:hover svg { color: #FFFFFF; }
.page-arrow.disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.no-blog-posts { text-align: center; padding: 80px 20px; }
.no-blog-posts p { font-family: 'Afacad Flux', sans-serif; font-size: 18px; color: #666666; }

@media (max-width: 1279px) {
    .blog-hero-section, .blog-featured-section, .blog-posts-section { padding-left: 60px; padding-right: 60px; }
    .blog-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .blog-posts-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .blog-featured-image { height: 280px; }
    .blog-card-image { height: 220px; }
}
@media (max-width: 1023px) {
    .blog-hero-section, .blog-featured-section, .blog-posts-section { padding-left: 40px; padding-right: 40px; }
    .blog-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .blog-featured-image { height: 260px; }
    .blog-card-image { height: 200px; }
    .blog-hero-title { font-size: 32px; }
}
@media (max-width: 767px) {
    .blog-hero-section, .blog-featured-section, .blog-posts-section { padding-left: 20px; padding-right: 20px; }
    .blog-hero-section { padding-top: 50px; padding-bottom: 50px; }
    .blog-featured-section, .blog-posts-section { padding-top: 40px; padding-bottom: 40px; }
    .blog-hero-title { font-size: 28px; }
    .blog-hero-subtitle { font-size: 16px; }
    .blog-section-title { font-size: 24px; }
    .blog-featured-grid, .blog-posts-grid { grid-template-columns: 1fr; gap: 40px; }
    .blog-featured-image { height: 220px; }
    .blog-card-image { height: 220px; }
    .blog-featured-title a { font-size: 22px; }
    .blog-card-title a { font-size: 18px; }
    .blog-featured-excerpt, .blog-card-excerpt { font-size: 15px; }
    .blog-pagination-wrap { gap: 12px; }
    .blog-pagination-wrap .page-numbers { gap: 6px; }
    .page-circle { width: 32px; height: 32px; font-size: 14px; }
    .page-dots { width: 32px; height: 32px; }
}
@media (max-width: 480px) {
    .blog-hero-title { font-size: 24px; }
    .blog-section-title { font-size: 22px; }
    .blog-featured-title a { font-size: 20px; }
    .blog-card-title a { font-size: 16px; }
    .blog-card-author, .blog-card-date { font-size: 14px; }
    .blog-card-tag { font-size: 12px; padding: 4px 8px; }
    .page-circle { width: 30px; height: 30px; font-size: 13px; }
}



/* ====================================================================
   v5.3 — AJAX pagination smooth transition (walang page reload/jump)
   ==================================================================== */
.alb5-posts { transition: opacity 0.28s ease; }
.alb5-posts.is-loading { opacity: 0; pointer-events: none; }