/* ============================================================
   PORTFOLIO.CSS  —  Meni World  |  Option C: Minimal List
   Design: editorial list table + slide-in detail drawer
   Fonts: Syne (display) + DM Sans (body) from common.css
   ============================================================ */

/* ── page wrap ──────────────────────────────────────── */
.pf {
    overflow-x: hidden;
}

/* ── reveal base ────────────────────────────────────── */
[data-pf-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s cubic-bezier(.22, .68, 0, 1.1),
        transform .6s cubic-bezier(.22, .68, 0, 1.1);
    animation: pfFallback 0s .9s forwards;
}

.pf-visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

@keyframes pfFallback {
    to {
        opacity: 1;
        transform: none;
    }
}


/* ============================================================
   1. HERO — compact, editorial
   ============================================================ */
.pf-hero {
    position: relative;
    padding: calc(70px + 64px) 28px 56px;
    overflow: hidden;
    isolation: isolate;
}

.pf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 217, 87, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 217, 87, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 70% 85% at 15% 50%,
            rgba(0, 0, 0, .55) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 85% at 15% 50%,
            rgba(0, 0, 0, .55) 0%, transparent 100%);
    pointer-events: none;
}

.pf-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    top: -180px;
    left: -80px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(126, 217, 87, .11) 0%, transparent 65%);
    animation: pfGlow 14s ease-in-out infinite alternate;
}

@keyframes pfGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(24px, -16px) scale(1.05);
    }
}

.pf-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--color-primary);
    width: fit-content;
}

.pf-hero__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-primary);
    opacity: .5;
}

.pf-hero__h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.06;
    margin: 0;
}

.pf-hero__h1 em {
    font-style: normal;
    background: linear-gradient(110deg, #7ed957 0%, #aaf57b 40%, #5fcf30 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pfShimmer 5s linear infinite;
}

@keyframes pfShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.pf-hero__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .44);
    line-height: 1.78;
    max-width: 520px;
    margin: 0;
}

/* hero stat pills */
.pf-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .55);
}

.pf-hero__pill i {
    font-size: 12px;
    color: var(--color-primary);
}


/* ============================================================
   2. FILTER BAR
   ============================================================ */
.pf-filter {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.pf-filter__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-top: 12px;
    padding-bottom: 12px;
}

.pf-filter__inner::-webkit-scrollbar {
    display: none;
}

.pf-filter__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s, background .2s;
}

.pf-filter__btn:hover {
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .04);
}

.pf-filter__btn.is-active {
    color: var(--color-primary);
    background: rgba(126, 217, 87, .09);
    border: 1px solid rgba(126, 217, 87, .2);
}

.pf-filter__count {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .3);
    transition: background .2s, color .2s;
}

.pf-filter__btn.is-active .pf-filter__count {
    background: rgba(126, 217, 87, .18);
    color: var(--color-primary);
}


/* ============================================================
   3. PROJECT LIST TABLE
   ============================================================ */
.pf-list-section {
    padding: 0 28px 96px;
}

.pf-list-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* list header row */
.pf-list-head {
    display: grid;
    grid-template-columns: 1fr 160px 150px 70px 44px;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 2px;
}

.pf-list-head span {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .22);
}

/* project row */
.pf-row {
    display: grid;
    grid-template-columns: 1fr 160px 150px 70px 44px;
    gap: 12px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background .22s;
    border: 1px solid transparent;
    margin-bottom: 3px;
}

.pf-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0%;
    border-radius: 0 3px 3px 0;
    background: var(--pc, var(--color-primary));
    transition: height .3s cubic-bezier(.22, .68, 0, 1.2);
}

.pf-row:hover {
    background: rgba(255, 255, 255, .035);
    border-color: rgba(255, 255, 255, .06);
}

.pf-row:hover::before {
    height: 60%;
}

.pf-row.pf-row--hidden {
    display: none !important;
}

/* project name cell */
.pf-row__name {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.pf-row__title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.2;
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pf-row:hover .pf-row__title {
    color: #fff;
}

.pf-row__badges {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.pf-row__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    background: rgba(126, 217, 87, .08);
    border: 1px solid rgba(126, 217, 87, .2);
    color: var(--color-primary);
}

.pf-row__live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.pf-row__desc-preview {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .28);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 380px;
}

/* category cell */
.pf-row__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    white-space: nowrap;
}

.pf-row__cat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pc, var(--color-primary));
    flex-shrink: 0;
}

/* country cell */
.pf-row__country {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, .38);
    white-space: nowrap;
}

.pf-row__flag {
    width: 18px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* year cell */
.pf-row__year {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
}

/* arrow cell */
.pf-row__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    margin-left: auto;
    transition: background .22s, border-color .22s, color .22s, transform .22s;
}

.pf-row:hover .pf-row__arrow {
    background: rgba(126, 217, 87, .12);
    border-color: rgba(126, 217, 87, .3);
    color: var(--color-primary);
    transform: rotate(-45deg);
}

/* no results */
.pf-no-results {
    display: none;
    text-align: center;
    padding: 72px 20px;
}

.pf-no-results.is-shown {
    display: block;
}

.pf-no-results i {
    font-size: 36px;
    color: rgba(255, 255, 255, .08);
    display: block;
    margin-bottom: 12px;
}

.pf-no-results p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .28);
}

.pf-no-results a {
    color: var(--color-primary);
}


/* ============================================================
   4. DETAIL DRAWER (slide-in from right)
   ============================================================ */
.pf-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.pf-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}

.pf-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 520px;
    max-width: 100%;
    z-index: 201;
    background: #0c0c0c;
    border-left: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22, .68, 0, 1.1);
    overflow: hidden;
}

.pf-drawer.is-open {
    transform: translateX(0);
}

/* drawer top accent line */
.pf-drawer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7ed957, #6c5ce7, #3498db, #ff7a19);
    z-index: 1;
}

/* drawer header */
.pf-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    flex-shrink: 0;
}

.pf-drawer__close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
    flex-shrink: 0;
}

.pf-drawer__close:hover {
    background: rgba(255, 87, 87, .12);
    border-color: rgba(255, 87, 87, .3);
    color: #ff5757;
    transform: rotate(90deg);
}

.pf-drawer__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    cursor: pointer;
    background: none;
    border: none;
    transition: color .2s;
}

.pf-drawer__back:hover {
    color: rgba(255, 255, 255, .65);
}

.pf-drawer__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-drawer__nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.pf-drawer__nav-btn:hover {
    background: rgba(126, 217, 87, .1);
    color: var(--color-primary);
    border-color: rgba(126, 217, 87, .25);
}

/* drawer scroll body */
.pf-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .1) transparent;
}

.pf-drawer__body::-webkit-scrollbar {
    width: 4px;
}

.pf-drawer__body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
}

/* project image in drawer */
.pf-drawer__thumb {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(126, 217, 87, .1) 0%, rgba(108, 92, 231, .1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, .1);
    overflow: hidden;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.pf-drawer__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* meta row: cat + country + year */
.pf-drawer__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.pf-drawer__cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: color-mix(in srgb, var(--dc) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--dc) 22%, transparent);
    color: var(--dc);
}

.pf-drawer__flag-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
}

.pf-drawer__flag {
    width: 18px;
    border-radius: 3px;
}

.pf-drawer__year {
    margin-left: auto;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .25);
}

/* project title */
.pf-drawer__title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    letter-spacing: -.3px;
    margin: 0 0 14px;
}

/* description */
.pf-drawer__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.78;
    margin: 0 0 22px;
}

/* key features */
.pf-drawer__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.pf-drawer__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

.pf-drawer__feature i {
    font-size: 10px;
    color: var(--color-primary);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(126, 217, 87, .12);
    border: 1px solid rgba(126, 217, 87, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* divider */
.pf-drawer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 18px 0;
}

/* CTA buttons */
.pf-drawer__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-drawer__btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    background: var(--color-primary);
    color: #000 !important;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(126, 217, 87, .28);
    transition: background .22s, box-shadow .22s, transform .22s;
}

.pf-drawer__btn-primary:hover {
    background: #6ed243;
    box-shadow: 0 9px 28px rgba(126, 217, 87, .42);
    transform: translateY(-2px);
}

.pf-drawer__btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6) !important;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    transition: background .22s, border-color .22s, color .22s;
}

.pf-drawer__btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .22);
    color: #fff !important;
}


/* ============================================================
   5. STATS STRIP
   ============================================================ */
.pf-stats {
    background: rgba(126, 217, 87, .016);
    border-top: 1px solid rgba(126, 217, 87, .07);
    border-bottom: 1px solid rgba(126, 217, 87, .07);
}

.pf-stats__row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
}

.pf-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 36px 16px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    cursor: default;
    transition: background .22s;
    position: relative;
}

.pf-stat:last-child {
    border-right: none;
}

.pf-stat:hover {
    background: rgba(126, 217, 87, .03);
}

.pf-stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity .25s, transform .35s cubic-bezier(.22, .68, 0, 1.2);
}

.pf-stat:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.pf-stat__n {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -2px;
}

.pf-stat__l {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}


/* ============================================================
   6. CTA
   ============================================================ */
.pf-cta {
    padding: 72px 28px 96px;
}

.pf-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 32px 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.pf-cta__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7ed957, #6c5ce7, #3498db, #ff7a19);
    border-radius: 18px 18px 0 0;
}

.pf-cta__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pf-cta__heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: #fff;
    letter-spacing: -.3px;
    margin: 0;
    line-height: 1.15;
}

.pf-cta__heading em {
    font-style: normal;
    color: var(--color-primary);
}

.pf-cta__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

.pf-cta__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.pf-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: var(--color-primary);
    color: #000 !important;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(126, 217, 87, .28);
    transition: background .22s, box-shadow .22s, transform .22s;
}

.pf-cta__btn-primary:hover {
    background: #6ed243;
    box-shadow: 0 9px 28px rgba(126, 217, 87, .42);
    transform: translateY(-2px);
}

.pf-cta__btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, .6) !important;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    transition: background .22s, border-color .22s, color .22s, gap .22s;
}

.pf-cta__btn-ghost:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .22);
    color: #fff !important;
    gap: 12px;
}


/* ============================================================
   7. RESPONSIVE
   ============================================================ */
@media (min-width: 901px) and (max-width: 1100px) {
    .pf-hero {
        padding: calc(70px + 48px) 32px 48px;
    }

    .pf-filter__inner {
        padding: 0 32px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .pf-list-section {
        padding: 0 32px 80px;
    }

    .pf-stats__row {
        padding: 0 32px;
    }

    .pf-cta {
        padding: 60px 32px 80px;
    }
}

@media (max-width: 900px) {
    .pf-hero {
        padding: calc(70px + 40px) 20px 44px;
    }

    .pf-filter {
        top: 64px;
    }

    .pf-filter__inner {
        padding: 0 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .pf-list-section {
        padding: 0 20px 72px;
    }

    .pf-list-head {
        display: none;
    }

    /* hide header row on tablet */
    .pf-row {
        grid-template-columns: 1fr 130px 36px;
        gap: 10px;
    }

    .pf-row__cat {
        display: none;
    }

    /* hide category on tablet */
    .pf-row__year {
        display: none;
    }

    /* hide year on tablet */
    .pf-stats__row {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .pf-stat {
        flex: 1 1 45%;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        padding: 28px 14px;
    }

    .pf-stat:nth-child(even) {
        border-right: none;
    }

    .pf-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .pf-cta {
        padding: 52px 20px 72px;
    }

    .pf-cta__inner {
        flex-direction: column;
        padding: 26px 22px;
    }

    .pf-cta__actions {
        width: 100%;
    }

    .pf-cta__btn-primary,
    .pf-cta__btn-ghost {
        flex: 1;
        justify-content: center;
    }

    /* drawer full-width on tablet */
    .pf-drawer {
        width: 100%;
        border-left: none;
    }
}

@media (max-width: 640px) {
    .pf-hero {
        padding: calc(70px + 26px) 14px 36px;
    }

    .pf-hero__h1 {
        letter-spacing: -1.5px;
    }

    .pf-filter__inner {
        padding: 0 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .pf-list-section {
        padding: 0 14px 60px;
    }

    .pf-row {
        grid-template-columns: 1fr 36px;
        gap: 8px;
        padding: 15px 14px;
        border-radius: 10px;
    }

    .pf-row__country {
        display: none;
    }

    /* hide country on mobile, shown in badges */
    .pf-row__desc-preview {
        display: none;
    }

    .pf-row__title {
        font-size: 15px;
    }

    .pf-row__badges {
        gap: 4px;
    }

    .pf-stat {
        flex: 1 1 100%;
        border-right: none;
        padding: 22px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .pf-stat:last-child {
        border-bottom: none;
    }

    .pf-stats__row {
        padding: 0 14px;
    }

    .pf-cta {
        padding: 44px 14px 60px;
    }

    .pf-cta__inner {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .pf-drawer__body {
        padding: 18px 16px;
    }

    .pf-drawer__thumb {
        height: 180px;
    }
}

@media (max-width: 400px) {
    .pf-row {
        padding: 13px 12px;
    }

    .pf-row__title {
        font-size: 14.5px;
    }

    .pf-filter__btn {
        padding: 6px 12px;
        font-size: 12.5px;
    }
}
