/* ==========================================================================
   home.css — homepage-only styles
   Mobile-first. Bootstrap supplies the grid/offcanvas; everything visual
   lives here. Adjust --* tokens to re-skin the whole page.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
    --ink: #24222D;
    --ink-2: #2D2A3A;
    --paper: #F7F5FC;
    --paper-2: #EEEAF7;
    --surface: #FFFFFF;
    --text: #24222D;
    --text-dark: #F0EEFF;
    --muted: #6F6B7A;
    --muted-dark: #9A96C8;
    --line: #E5E0F0;
    --line-dark: #3A3550;

    /* Purple/Pink accent system */
    --accent: #6C5BB8;
    /* Royal Purple — primary decorative / large text */
    --accent-deep: #5B4B9A;
    /* Deep Purple — text & fills on light bg (AA) */
    --accent-bright: #D96BB3;
    /* Soft Pink — on dark backgrounds */

    --radius-s: 10px;
    --radius: 14px;
    --radius-l: 22px;

    --font-d: "Fraunces", "Iowan Old Style", Georgia, serif;
    --font-b: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(.22, .75, .25, 1);
    --header-h: 68px;
    --shadow-1: 0 6px 18px -10px rgba(91, 75, 154, .12);
    --shadow-2: 0 18px 40px -22px rgba(91, 75, 154, .22);
}

/* Roomier Bootstrap gutters so the layout breathes on small screens */
.dnw-container,
.container-xxl,
.row {
    --bs-gutter-x: clamp(2.5rem, 5vw, 3.5rem);
}

/* ---------- 2. Base ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    overflow-x: hidden;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-b);
    color: var(--text);
    background: linear-gradient(135deg, #F7F5FC 0%, #FDFBFF 50%, #F3EFFA 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

::selection {
    background: var(--accent);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

img {
    max-width: 100%;
    height: auto;
}

.dnw-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--ink);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-s) 0;
    font-weight: 600;
}

.dnw-skip-link:focus {
    left: 0;
}

/* ---------- 3. Shared pieces ---------- */
.dnw-sec {
    padding: 40px 0;
}

@media (min-width: 992px) {
    .dnw-sec {
        padding: 64px 0;
    }
}

.dnw-kicker {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin: 0 0 12px;
}

.dnw-kicker--dark {
    color: var(--accent-bright);
}

.dnw-sec h2,
.dnw-featured-intro h2,
.dnw-how-sticky h2,
.dnw-faq-intro h2,
.dnw-cta-panel h2 {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: clamp(1.75rem, 2.4vw + 1rem, 2.7rem);
    line-height: 1.08;
    letter-spacing: -.015em;
    margin: 0 0 16px;
    color: inherit;
}

.dnw-sec-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .dnw-sec-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.dnw-sec-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
}

.dnw-sec-link svg {
    transition: transform .3s var(--ease);
}

.dnw-sec-link:hover {
    color: var(--accent-deep);
}

.dnw-sec-link:hover svg {
    transform: translateX(4px);
}

/* Buttons — fully custom, no Bootstrap skin */
.dnw-btn-cta,
.dnw-btn-outline,
.dnw-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: .98rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}

.dnw-btn-cta {
    background: linear-gradient(135deg, #5B4B9A 0%, #6C5BB8 50%, #D96BB3 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(108, 91, 184, .28);
}

.dnw-btn-cta:hover,
.dnw-btn-cta:focus-visible {
    background: linear-gradient(135deg, #4D3E86 0%, #5B4B9A 50%, #C95CA5 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(108, 91, 184, .38);
}

.dnw-btn-outline {
    background: transparent;
    color: var(--accent-deep);
    border-color: var(--accent-deep);
}

.dnw-btn-outline:hover,
.dnw-btn-outline:focus-visible {
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(91, 75, 154, .22);
}

.dnw-btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(240, 238, 255, .35);
}

.dnw-btn-ghost:hover,
.dnw-btn-ghost:focus-visible {
    background: rgba(240, 238, 255, .12);
    color: #fff;
    border-color: rgba(240, 238, 255, .7);
    transform: translateY(-2px);
}

/* Chips */
.dnw-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 18px;
    border: 1.5px solid rgba(108, 91, 184, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #3b2e5a;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(91, 75, 154, .06);
    transition: border-color .25s, background .25s, color .25s, transform .2s, box-shadow .25s;
}

.dnw-chip:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, #5B4B9A 0%, #6C5BB8 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 91, 184, .25);
}

/* ---------- 4. Header / navigation ---------- */
.dnw-site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.dnw-site-header.is-scrolled {
    background: rgba(247, 245, 252, .92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    box-shadow: 0 1px 16px rgba(91, 75, 154, .07);
}

.dnw-site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-h);
}

.dnw-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}

.dnw-brand-mark {
    color: var(--accent);
    flex-shrink: 0;
}

.dnw-brand-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -.01em;
}

.dnw-site-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.dnw-site-link {
    position: relative;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    padding: 6px 0;
}

.dnw-site-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.dnw-site-link:hover::after,
.dnw-site-link:focus-visible::after {
    transform: scaleX(1);
}

.dnw-menu-btn,
.dnw-menu-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-s);
    background: var(--surface);
    color: var(--ink);
    transition: background .25s, color .25s;
}

.dnw-menu-btn:hover,
.dnw-menu-close:hover {
    background: var(--accent-deep);
    color: #fff;
    border-color: var(--accent-deep);
}

/* Offcanvas skin */
.dnw-mobile-nav {
    --bs-offcanvas-width: min(88vw, 380px);
    background: var(--paper);
    border-left: 1px solid var(--line);
}

.dnw-mobile-nav .offcanvas-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
}

.dnw-mobile-nav .offcanvas-body {
    padding: 8px 24px 32px;
}

.dnw-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dnw-mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-d);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color .25s, padding-left .25s var(--ease);
}

.dnw-mobile-links a:hover {
    color: var(--accent-deep);
    padding-left: 6px;
}

.dnw-mobile-links svg {
    color: var(--muted);
}

.dnw-mobile-note {
    margin-top: 20px;
    font-size: .82rem;
    color: var(--muted);
}

/* ---------- 5. Hero ---------- */
.dnw-hero {
    position: relative;
    padding: 40px 0 20px;
    overflow: hidden;
}

.dnw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 480px at 88% -12%, rgba(108, 91, 184, .10), transparent 62%),
        radial-gradient(700px 420px at -8% 34%, rgba(217, 107, 179, .07), transparent 62%);
}

.dnw-hero .container-xxl {
    position: relative;
}

.dnw-hero-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 992px) {
    .dnw-hero {
        padding: 56px 0 28px;
    }

    .dnw-hero-grid {
        grid-template-columns: 1.08fr .92fr;
        gap: clamp(40px, 5vw, 80px);
        align-items: center;
    }
}

.dnw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 20px;
}

.dnw-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.dnw-hero-title {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: -.025em;
    margin: 0 0 20px;
    color: var(--ink);
    text-wrap: balance;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 992px) {
    .dnw-hero-title {
        font-size: 56px;
    }
}

.dnw-hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}

.dnw-hero-sub {
    max-width: 56ch;
    font-size: clamp(1rem, .35vw + .92rem, 1.15rem);
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 16px;
}

.dnw-hero-trust-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 24px;
    font-size: .86rem;
}

.dnw-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #4a3d75;
    font-weight: 600;
}

.dnw-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.dnw-trust-sep {
    color: var(--line);
    font-weight: 700;
}

/* Search module */
.dnw-search {
    display: flex;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    max-width: 620px;
    transition: box-shadow .25s, border-color .25s;
}

.dnw-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(108, 91, 184, .14);
}

.dnw-search-icon {
    align-self: center;
    color: var(--muted);
    flex-shrink: 0;
}

.dnw-search-input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    font: inherit;
    color: var(--text);
}

.dnw-search-input:focus {
    outline: none;
}

.dnw-search-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 22px;
}

.dnw-hero-popular {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.dnw-hero-popular-label {
    font-size: .84rem;
    font-weight: 700;
    color: var(--ink);
    margin-right: 2px;
}


.dnw-board {
    background: linear-gradient(145deg, #2A2440 0%, #24222D 60%, #2D2040 100%);
    color: var(--text-dark);
    border-radius: var(--radius-l);
    padding: 24px 24px 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 91, 184, .25);
    box-shadow: 0 12px 40px rgba(91, 75, 154, .20);
    max-width: 100%;
}

.dnw-board::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(420px 260px at 110% 115%, rgba(217, 107, 179, .20), transparent 65%);
}

.dnw-board-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.dnw-board-title {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.15rem;
}

.dnw-board-note {
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-dark);
}

.dnw-board-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.dnw-board-list a {
    display: grid;
    grid-template-columns: 2rem 1fr auto 15px;
    align-items: center;
    gap: 12px;
    padding: 14px 6px;
    border-top: 1px solid var(--line-dark);
    color: var(--text-dark);
    text-decoration: none;
    transition: background .25s, padding-left .25s var(--ease);
    min-width: 0;
}

.dnw-board-list a:hover {
    background: rgba(255, 255, 255, .05);
    padding-left: 12px;
}

.dnw-board-rank {
    font-family: var(--font-d);
    font-size: .85rem;
    color: var(--accent-bright);
}

.dnw-board-city {
    font-weight: 600;
    font-size: 1.02rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    display: block;
}

.dnw-board-count {
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent-bright);
    background: rgba(217, 107, 179, .14);
    padding: 2px 8px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
    border: 1px solid rgba(217, 107, 179, .22);
    white-space: nowrap;
}

.dnw-board-arrow {
    color: var(--muted-dark);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .25s, transform .25s var(--ease);
}

.dnw-board-list a:hover .dnw-board-arrow,
.dnw-board-list a:focus-visible .dnw-board-arrow {
    opacity: 1;
    transform: none;
}

.dnw-board-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px;
    border-top: 1px solid var(--line-dark);
    position: relative;
    z-index: 2;
}

.dnw-board-view-all {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: color .2s;
}

.dnw-board-view-all:hover {
    color: var(--accent-bright);
}

#cityBoardIndicator,
#stateBoardIndicator {
    font-size: .78rem;
    color: var(--muted-dark);
    font-weight: 500;
    letter-spacing: .02em;
}

/* Fade transition for board list items */
.dnw-board-list li {
    animation: boardFadeIn .28s ease both;
}
.dnw-board-list li:nth-child(1) { animation-delay: 0ms; }
.dnw-board-list li:nth-child(2) { animation-delay: 40ms; }
.dnw-board-list li:nth-child(3) { animation-delay: 80ms; }
.dnw-board-list li:nth-child(4) { animation-delay: 120ms; }
.dnw-board-list li:nth-child(5) { animation-delay: 160ms; }
@keyframes boardFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: none; }
}


.dnw-board-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 6px;
    margin-top: 2px;
    border-top: 1px solid var(--line-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    position: relative;
}

.dnw-board-foot:hover {
    color: var(--accent-bright);
}


.dnw-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 44px;
    margin: 40px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.dnw-hero-stat {
    display: flex;
    flex-direction: column-reverse;
    gap: 2px;
    margin: 0;
}

.dnw-hero-stat dt {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 500;
}

.dnw-hero-stat dd {
    margin: 0;
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}


.dnw-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 576px) {
    .dnw-cat-grid {
        gap: 14px;
    }

    .dnw-cat-card--lead {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .dnw-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .dnw-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dnw-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 148px;
    padding: 18px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.dnw-cat-card:hover,
.dnw-cat-card:focus-visible {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(91, 75, 154, .14);
}

.dnw-cat-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--line);
    transition: -webkit-text-stroke-color .3s;
}

.dnw-cat-card:hover .dnw-cat-num {
    -webkit-text-stroke-color: var(--accent);
}

@supports not (-webkit-text-stroke: 1px black) {
    .dnw-cat-num {
        color: var(--paper-2);
    }
}

.dnw-cat-arrow {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--muted);
    transition: color .3s, transform .3s var(--ease);
}

.dnw-cat-card:hover .dnw-cat-arrow {
    color: var(--accent-deep);
    transform: translate(2px, -2px);
}

.dnw-cat-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.12rem;
    letter-spacing: -.01em;
}

.dnw-cat-meta {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 5px;
}

.dnw-cat-card--lead {
    background: linear-gradient(135deg, #5B4B9A 0%, #7A5FA8 55%, #D96BB3 100%);
    border-color: transparent;
    color: #fff;
    min-height: 176px;
}

.dnw-cat-card--lead .dnw-cat-num {
    -webkit-text-stroke-color: var(--line-dark);
}

.dnw-cat-card--lead:hover .dnw-cat-num {
    -webkit-text-stroke-color: var(--accent-bright);
}

.dnw-cat-card--lead .dnw-cat-meta {
    color: var(--muted-dark);
}

@media (min-width: 992px) {
    .dnw-cat-card--lead {
        min-height: 220px;
    }
}


.dnw-sec-featured {
    background: linear-gradient(160deg, #1E1A2E 0%, #24222D 55%, #271C30 100%);
    color: var(--text-dark);
}

.dnw-sec-featured h2 {
    color: var(--text-dark);
}

.dnw-featured-grid {
    display: grid;
    gap: 36px;
    align-items: start;
}

@media (min-width: 992px) {
    .dnw-featured-grid {
        grid-template-columns: 320px 1fr;
        gap: 56px;
    }

    .dnw-featured-intro {
        position: sticky;
        top: calc(var(--header-h) + 32px);
    }
}

.dnw-featured-sub {
    color: var(--muted-dark);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0 0 22px;
}

.dnw-featured-foot {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.dnw-rail-controls {
    display: flex;
    gap: 8px;
}

.dnw-rail-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(108, 91, 184, .40);
    background: transparent;
    color: var(--text-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .25s, color .25s, opacity .25s, border-color .25s, transform .2s;
}

.dnw-rail-btn:hover:not(:disabled) {
    background: rgba(240, 238, 255, .14);
    border-color: rgba(240, 238, 255, .65);
    color: #fff;
    transform: scale(1.06);
}

.dnw-rail-btn:active:not(:disabled) {
    transform: scale(0.94);
}

.dnw-rail-btn:disabled {
    opacity: .28;
    cursor: default;
}

.dnw-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(76%, 300px);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 18px;
    margin: 0;
    list-style: none;
    scrollbar-width: none;
}

.dnw-rail::-webkit-scrollbar {
    display: none;
}

.dnw-rail>li {
    scroll-snap-align: start;
}

.dnw-rail:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 4px;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .dnw-rail {
        grid-auto-columns: 300px;
    }
}

.dnw-listing-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s;
}

.dnw-listing-card:hover,
.dnw-listing-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(108, 91, 184, .45);
    box-shadow: 0 12px 32px rgba(91, 75, 154, .18);
}

.dnw-cover {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
    background: var(--line-dark);
}

.dnw-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s var(--ease);
}

.dnw-listing-card:hover .dnw-cover img {
    transform: scale(1.045);
}

.dnw-cover--mono {
    display: grid;
    place-items: center;
}

.dnw-cover-initials {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 2.4rem;
    color: rgba(247, 243, 235, .92);
    letter-spacing: .04em;
}


.dnw-cover--h0 { background: #3B2E6E; }
.dnw-cover--h1 { background: #4A3B7A; }
.dnw-cover--h2 { background: #6B3A6A; }
.dnw-cover--h3 { background: #5A3082; }
.dnw-cover--h4 { background: #3D2F7A; }
.dnw-cover--h5 { background: #7A3568; }
.dnw-cover--h6 { background: #4E3A85; }
.dnw-cover--h7 { background: #623572; }

.dnw-lc-body {
    display: block;
    padding: 15px 16px 17px;
}

.dnw-lc-name {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.08rem;
    margin: 0 0 5px;
    color: var(--text-dark);
}

.dnw-lc-meta {
    display: block;
    font-size: .82rem;
    color: var(--muted-dark);
}


.dnw-how-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 992px) {
    .dnw-how-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 72px;
    }
}

.dnw-how-sticky {
    align-self: start;
}

@media (min-width: 992px) {
    .dnw-how-sticky {
        position: sticky;
        top: calc(var(--header-h) + 40px);
    }
}

.dnw-how-sub {
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 44ch;
}

.dnw-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dnw-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.dnw-step:first-child {
    border-top: 0;
    padding-top: 6px;
}

.dnw-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: linear-gradient(135deg, rgba(108, 91, 184, .06), rgba(217, 107, 179, .04));
    display: grid;
    place-items: center;
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--accent-deep);
    position: relative;
    z-index: 1;
}

.dnw-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 92px;
    bottom: -6px;
    border-left: 1px dashed var(--line);
}

.dnw-step-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 8px 0 8px;
    letter-spacing: -.01em;
}

.dnw-step-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    max-width: 52ch;
}

/* ---------- 9. Why + guides ---------- */
.dnw-benefits {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.dnw-benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.dnw-benefit:first-child {
    border-top: 0;
}

.dnw-benefit-icon {
    color: var(--accent-deep);
    margin-top: 3px;
    flex-shrink: 0;
}

.dnw-benefit h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.dnw-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.6;
}

.dnw-guides {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-h) + 32px);
}

@media (max-width: 991px) {
    .dnw-guides {
        position: static;
    }
}

.dnw-panel-title {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0 0 6px;
}

.dnw-panel-sub {
    font-size: .88rem;
    color: var(--muted);
    margin: 0 0 10px;
}

.dnw-guides-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.dnw-guides-list a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 2px;
    border-top: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    transition: color .25s;
}

.dnw-guides-list strong {
    font-weight: 600;
    font-size: .97rem;
}

.dnw-guides-list span {
    font-size: .76rem;
    color: var(--muted);
    white-space: nowrap;
}

.dnw-guides-list a:hover strong,
.dnw-guides-list a:focus-visible strong {
    color: var(--accent-deep);
}

.dnw-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
    text-decoration: none;
}

.dnw-panel-link:hover {
    color: var(--accent-deep);
}


.dnw-loc-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dnw-loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease);
}

.dnw-loc-chip:hover {
    border-color: var(--accent-deep);
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-2px);
}

.dnw-loc-count {
    font-size: .74rem;
    color: var(--muted);
    background: #EAE4F7;
    padding: 2px 9px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
}

.dnw-loc-chip:hover .dnw-loc-count {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.dnw-loc-chip--lg {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.08rem;
    padding: 12px 24px;
    min-height: 52px;
}


.dnw-faq-grid {
    display: grid;
    gap: 36px;
}

@media (min-width: 992px) {
    .dnw-faq-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 64px;
    }
}

.dnw-faq-intro p {
    color: var(--muted);
    line-height: 1.65;
}

.dnw-faq-intro a {
    color: var(--accent-deep);
    font-weight: 600;
}

.dnw-faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.dnw-faq-item+.dnw-faq-item {
    margin-top: 10px;
}

.dnw-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    transition: background .25s;
}

.dnw-faq-item summary::-webkit-details-marker {
    display: none;
}

.dnw-faq-item summary:hover {
    background: var(--paper);
}

.dnw-faq-q {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -.005em;
}

.dnw-faq-icon {
    color: var(--accent-deep);
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}

.dnw-faq-item[open] .dnw-faq-icon {
    transform: rotate(45deg);
}

.dnw-faq-a {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.65;
}


.dnw-cta-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #1E1A2E 0%, #2D2050 45%, #3A1E40 100%);
    color: var(--text-dark);
    border-radius: calc(var(--radius-l) + 4px);
    padding: clamp(44px, 6vw, 80px) clamp(24px, 5vw, 80px);
    box-shadow: 0 20px 60px rgba(91, 75, 154, .30);
}

.dnw-cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(640px 340px at 12% 118%, rgba(217, 107, 179, .22), transparent 65%);
}

.dnw-cta-word {
    position: absolute;
    right: -1%;
    bottom: -.26em;
    font-family: var(--font-d);
    font-weight: 600;
    line-height: 1;
    font-size: clamp(7rem, 20vw, 17rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 240, 230, .13);
    pointer-events: none;
    user-select: none;
}

@supports not (-webkit-text-stroke: 1px black) {
    .dnw-cta-word {
        color: rgba(245, 240, 230, .05);
    }
}

.dnw-cta-panel>* {
    position: relative;
}

.dnw-cta-sub {
    max-width: 48ch;
    color: var(--muted-dark);
    line-height: 1.65;
    margin: 0 0 30px;
}

.dnw-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.dnw-site-footer {
    border-top: 1px solid var(--line);
    background: var(--paper-2);
    padding: 40px 0;
}

.dnw-site-footer-in {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dnw-brand--footer .dnw-brand-name {
    font-size: 1.1rem;
}

.dnw-footer-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0;
    padding: 0;
}

.dnw-footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
}

.dnw-footer-nav a:hover {
    color: var(--accent-deep);
}

.dnw-footer-note {
    margin: 0;
    font-size: .82rem;
    color: var(--muted);
}


html.js [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

html.js [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}


html.js .dnw-cat-grid>[data-reveal]:nth-child(2),
html.js .dnw-benefit:nth-child(2) {
    transition-delay: .07s;
}

html.js .dnw-cat-grid>[data-reveal]:nth-child(3),
html.js .dnw-benefit:nth-child(3) {
    transition-delay: .14s;
}

html.js .dnw-cat-grid>[data-reveal]:nth-child(4) {
    transition-delay: .21s;
}

/* ---------- 15. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   RECENTLY POSTED PROFILES
========================================================= */

/* =========================================================
   RECENT PROFILES – HANGING CARDS DESIGN
========================================================= */

/* ─── SECTION ─────────────────────────────────────────── */

.dnw-recent-hanging-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 200px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 100%,
            rgba(142, 68, 173, 0.10) 0%,
            transparent 60%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8f7fb 60%,
            #f3eef8 100%);
}

/* Ambient blobs */
.dnw-recent-hanging-section::before,
.dnw-recent-hanging-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dnw-recent-hanging-section::before {
    top: -120px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.07), transparent 70%);
}

.dnw-recent-hanging-section::after {
    bottom: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.08), transparent 70%);
}


/* ─── HEADER ──────────────────────────────────────────── */

.dnw-recent-hanging-container {
    position: relative;
    z-index: 5;
}

.dnw-recent-hanging-heading {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.dnw-recent-hanging-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(142, 68, 173, 0.22);
    border-radius: 999px;
    background: rgba(142, 68, 173, 0.07);
    color: #8e44ad;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dnw-recent-hanging-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 76px);
    line-height: 0.93;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #100d14;
}

.dnw-recent-hanging-heading h2 span {
    color: #8e44ad;
    -webkit-text-stroke: 0;
}

.dnw-recent-hanging-heading p {
    margin: 22px auto 32px;
    max-width: 560px;
    font-size: 17px;
    color: #6b6470;
    line-height: 1.75;
}


/* ─── CTA BUTTON ──────────────────────────────────────── */

.dnw-recent-hanging-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    background: #8e44ad;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #7b3897;
    box-shadow:
        0 5px 0 #6b2d88,
        0 14px 32px rgba(142, 68, 173, 0.25);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.dnw-recent-hanging-btn:hover {
    transform: translateY(3px);
    box-shadow:
        0 2px 0 #6b2d88,
        0 6px 18px rgba(142, 68, 173, 0.2);
}

.dnw-recent-hanging-btn svg {
    width: 18px;
    height: 18px;
}


/* ─── BACKGROUND CURVED LINE ──────────────────────────── */

.dnw-recent-hanging-line {
    position: absolute;
    top: 52%;
    left: -8%;
    width: 116%;
    height: 380px;
    border-top: 1.5px solid rgba(142, 68, 173, 0.15);
    border-radius: 50% 50% 0 0;
    transform: scaleY(-1);
    pointer-events: none;
    z-index: 1;
}


/* ─── GALLERY TRACK ───────────────────────────────────── */

.dnw-recent-hanging-gallery {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 80px auto 0;
    padding: 50px 40px 120px;
}


/* ─── CARD BASE ───────────────────────────────────────── */

.dnw-recent-hanging-card {
    position: relative;
    width: 235px;
    flex: 0 0 235px;
    padding: 7px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.055);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 12px 40px rgba(20, 8, 32, 0.11);
    transform-origin: top center;
    transition:
        transform 0.38s cubic-bezier(0.22, 0.9, 0.22, 1),
        box-shadow 0.38s ease;
    z-index: 3;
}

.dnw-recent-hanging-card:hover {
    transform:
        translateY(-28px)
        rotate(0deg)
        scale(1.04) !important;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 32px 70px rgba(20, 8, 32, 0.20);
    z-index: 20;
}


/* ─── HANGING POSITIONS ───────────────────────────────── */

.dnw-recent-card-1 {
    transform: rotate(-8deg) translateY(4px);
}

.dnw-recent-card-2 {
    transform: rotate(-3.5deg) translateY(50px);
}

.dnw-recent-card-3 {
    transform: rotate(0deg) translateY(78px);
    z-index: 5;
}

.dnw-recent-card-4 {
    transform: rotate(3.5deg) translateY(50px);
}

.dnw-recent-card-5 {
    transform: rotate(8deg) translateY(4px);
}


/* ─── PIN ─────────────────────────────────────────────── */

.dnw-recent-card-pin {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 18px;
    height: 34px;
    border-radius: 50% 50% 4px 4px;
    background: linear-gradient(160deg, #b358d8 0%, #7b2fa0 100%);
    box-shadow:
        0 4px 12px rgba(100, 30, 140, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Pin head circle */
.dnw-recent-card-pin::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

/* Pin needle tip */
.dnw-recent-card-pin::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #7b2fa0;
}


/* ─── IMAGE ───────────────────────────────────────────── */

.dnw-recent-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(145deg, #ede5f4, #f5f0f8);
}

.dnw-recent-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.22, 1);
}

.dnw-recent-hanging-card:hover .dnw-recent-card-image img {
    transform: scale(1.08);
}

.dnw-recent-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #8e44ad, #c27ddd);
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}


/* ─── CARD CONTENT ────────────────────────────────────── */

.dnw-recent-card-content {
    padding: 14px 10px 12px;
}

.dnw-recent-card-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0;
}

.dnw-recent-card-name-row h3 {
    margin: 0;
    min-width: 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dnw-recent-card-name-row h3 a {
    color: #18141c;
    text-decoration: none;
}

.dnw-recent-card-name-row h3 a:hover {
    color: #8e44ad;
}

.dnw-recent-card-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 32px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f1e7f7;
    color: #8e44ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.dnw-recent-card-title {
    display: -webkit-box;
    margin: 8px 0 10px;
    overflow: hidden;
    color: #7a7080;
    font-size: 12.5px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dnw-recent-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid #ede9f0;
    color: #5a5260;
    font-size: 12px;
    font-weight: 600;
}

.dnw-recent-card-location svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    color: #8e44ad;
}


/* ─── MOBILE ACTION (hidden by default) ───────────────── */

.dnw-recent-hanging-mobile-action {
    display: none;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
}


/* ─── TABLET (769px – 1199px) ─────────────────────────── */

@media (max-width: 1199px) {

    .dnw-recent-hanging-section {
        padding: 80px 0 160px;
    }

    .dnw-recent-hanging-gallery {
        gap: 24px;
        padding: 50px 30px 110px;
    }

    .dnw-recent-hanging-card {
        width: 200px;
        flex: 0 0 200px;
    }

    /* All 5 cards remain visible on tablet — NO display:none */
    .dnw-recent-card-1 {
        transform: rotate(-7deg) translateY(4px);
    }

    .dnw-recent-card-5 {
        transform: rotate(7deg) translateY(4px);
    }

}


/* ─── MOBILE (≤ 768px) ────────────────────────────────── */

@media (max-width: 768px) {

    .dnw-recent-hanging-section {
        min-height: auto;
        padding: 70px 0 60px;
        overflow: visible;
    }

    /* No blobs on mobile */
    .dnw-recent-hanging-section::before,
    .dnw-recent-hanging-section::after {
        display: none;
    }

    .dnw-recent-hanging-container {
        padding: 0;
    }

    .dnw-recent-hanging-heading {
        padding: 0 22px;
    }

    .dnw-recent-hanging-heading h2 {
        font-size: clamp(26px, 7.5vw, 38px);
        letter-spacing: -1.5px;
        line-height: 1;
    }

    .dnw-recent-hanging-heading p {
        font-size: 15px;
        margin-bottom: 0;
    }

    /* Hide CTA button in heading on mobile (shown in mobile-action block instead) */
    .dnw-recent-hanging-heading .dnw-recent-hanging-btn {
        display: none;
    }

    /* Hide the curved line on mobile */
    .dnw-recent-hanging-line {
        display: none;
    }

    /* ── Horizontal swipe track ── */
    .dnw-recent-hanging-gallery {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 16px;
        margin-top: 36px;
        padding: 30px 22px 50px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .dnw-recent-hanging-gallery::-webkit-scrollbar {
        display: none;
    }

    /* Padding trick: peek effect — last card has trailing space */
    .dnw-recent-hanging-gallery::after {
        content: "";
        display: block;
        flex: 0 0 6px;
    }

    /* All cards: reset rotations, straight on mobile */
    .dnw-recent-hanging-card,
    .dnw-recent-card-1,
    .dnw-recent-card-2,
    .dnw-recent-card-3,
    .dnw-recent-card-4,
    .dnw-recent-card-5 {
        width: 72vw;
        max-width: 300px;
        flex: 0 0 72vw;
        transform: none !important;
        scroll-snap-align: start;
        border-radius: 20px;
    }

    /* Remove hover lift on mobile */
    .dnw-recent-hanging-card:hover {
        transform: none !important;
        box-shadow:
            0 2px 4px rgba(0, 0, 0, 0.04),
            0 12px 40px rgba(20, 8, 32, 0.11);
    }

    /* Image fills more space on mobile */
    .dnw-recent-card-image {
        aspect-ratio: 3 / 3.6;
        border-radius: 14px;
    }

    /* Slightly larger text on mobile cards */
    .dnw-recent-card-name-row h3 {
        font-size: 16px;
    }

    .dnw-recent-card-age {
        font-size: 12px;
        height: 28px;
    }

    .dnw-recent-card-title {
        font-size: 13px;
    }

    .dnw-recent-card-location {
        font-size: 13px;
    }

    /* Show the mobile CTA action block */
    .dnw-recent-hanging-mobile-action {
        display: block;
        margin-top: 28px;
    }

}
