/* ============================================================
   ClickUpLocal Home V3
   Location-aware homepage. All styles scoped under .cul-home-v3.
   Tokens:
     Brand navy:      #1B3A5C
     Orange accent:   #E87722
     Light blue bg:   #EEF4FB
     Off-white:       #f5f4f0
     Border gray:     #d0dce8
     Score navy:      #3d5a99
   ============================================================ */

.cul-home-v3 { font-family: 'DM Sans', system-ui, sans-serif; color: #1B3A5C; max-width: 100%; overflow-x: hidden; }
.cul-home-v3 *, .cul-home-v3 *::before, .cul-home-v3 *::after { box-sizing: border-box; }
body.home, body.page-template-front-page { overflow-x: hidden; }

.cul-home-v3 .cul-v3-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    width: 100%;
}

/* ── Hero ─────────────────────────────────────────────────── */
.cul-home-v3 .cul-v3-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #1B3A5C;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(232,119,34,0.42), transparent 58%),
        radial-gradient(circle at 82% 82%, rgba(61,90,153,0.7), transparent 62%),
        linear-gradient(135deg, #1B3A5C 0%, #0f2740 100%);
    color: #fff;
    padding: 120px 0 96px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cul-home-v3 .cul-v3-hero .cul-v3-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Legacy single-image hero + featured-business credit are not used. */
.cul-home-v3 .cul-hero-kb,
.cul-home-v3 .cul-hero-overlay,
.cul-home-v3 .cul-hero-featured-credit {
    display: none;
}

/* ── Ken Burns slideshow (3 city images cycling) ──────────────── */
.cul-home-v3 .cul-hero-kb-stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.cul-home-v3 .cul-hero-kb-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    will-change: opacity, transform;
    animation: cul-hero-kb 27s linear infinite;
}
.cul-home-v3 .cul-hero-kb-slide--1 { animation-delay:   0s; }
.cul-home-v3 .cul-hero-kb-slide--2 { animation-delay:  -9s; }
.cul-home-v3 .cul-hero-kb-slide--3 { animation-delay: -18s; }

@keyframes cul-hero-kb {
    0%   { opacity: 0; transform: scale(1.05) translate(0, 0); }
    4%   { opacity: 1; }
    30%  { opacity: 1; transform: scale(1.16) translate(-2%, -1.2%); }
    34%  { opacity: 0; transform: scale(1.16) translate(-2%, -1.2%); }
    100% { opacity: 0; transform: scale(1.05) translate(0, 0); }
}

/* Navy overlay keeps the white headline + subhead readable on top of
   any of the three photos. Sits above the slideshow but below content. */
.cul-home-v3 .cul-hero-kb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 22%, rgba(232,119,34,0.28), transparent 58%),
        linear-gradient(180deg, rgba(15, 39, 64, 0.65) 0%, rgba(27, 58, 92, 0.78) 100%);
    pointer-events: none;
}

/* When the slideshow is rendering, drop the gradient backdrop on the
   hero shell so the photos read as the actual background. */
.cul-home-v3 .cul-v3-hero--has-slides {
    background-image: none;
}

@media (prefers-reduced-motion: reduce) {
    .cul-home-v3 .cul-hero-kb-slide {
        animation: cul-hero-kb-fade 27s steps(3, end) infinite;
        transform: none;
    }
    @keyframes cul-hero-kb-fade {
        0%, 32%   { opacity: 1; }
        33%, 100% { opacity: 0; }
    }
}

.cul-home-v3 .cul-v3-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4.2vw, 51px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 20px 0 12px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.cul-home-v3 .cul-v3-hero__sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 28px;
    width: 100%;
}

.cul-home-v3 .cul-v3-hero__trust {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
    width: 100%;
}

/* ── Hero category pills ─────────────────────────────────── */
.cul-home-v3 .cul-v3-hero__pills {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.cul-home-v3 .cul-v3-hero__viewall {
    display: inline-block;
    color: #E87722;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(232, 119, 34, 0.45);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cul-home-v3 .cul-v3-hero__viewall:hover {
    background: #E87722;
    border-color: #E87722;
    color: #fff;
}
.cul-home-v3 .cul-v3-hero__pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    border-radius: 999px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.cul-home-v3 .cul-v3-hero__pill:hover {
    background: #E87722;
    border-color: #E87722;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Location pill + picker ───────────────────────────────── */
.cul-home-v3 .cul-v3-locpill-wrap {
    position: relative;
    display: inline-block;
}

.cul-home-v3 .cul-v3-locpill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 119, 34, 0.14);
    border: 0.5px solid rgba(232, 119, 34, 0.45);
    color: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cul-home-v3 .cul-v3-locpill:hover {
    background: rgba(232, 119, 34, 0.22);
}

.cul-home-v3 .cul-v3-locpill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E87722;
    box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.25);
    flex-shrink: 0;
}

.cul-home-v3 .cul-v3-locpill__text strong { font-weight: 700; }

.cul-home-v3 .cul-v3-locpill__change {
    color: rgba(255, 255, 255, 0.75);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 10px;
    margin-left: 4px;
}

.cul-home-v3 .cul-v3-locpill__chev { opacity: 0.75; }

.cul-home-v3 .cul-v3-locpicker {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: #fff;
    border: 0.5px solid #d0dce8;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.15);
    z-index: 20;
    overflow: hidden;
}

.cul-home-v3 .cul-v3-locpicker__list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.cul-home-v3 .cul-v3-locpicker__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 16px;
    color: #1B3A5C;
    text-decoration: none;
    font-weight: 500;
}

.cul-home-v3 a.cul-v3-locpicker__item:hover { background: #EEF4FB; }

.cul-home-v3 .cul-v3-locpicker__item.is-current {
    background: #EEF4FB;
    color: #1B3A5C;
    font-weight: 700;
}

.cul-home-v3 .cul-v3-locpicker__item--soon {
    color: #96a6b7;
    font-weight: 500;
    cursor: not-allowed;
}

.cul-home-v3 .cul-v3-locpicker__soon {
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #96a6b7;
    background: #EEF4FB;
    padding: 2px 8px;
    border-radius: 999px;
}

/* ── Hero search ──────────────────────────────────────────── */
.cul-home-v3 .cul-v3-hero__search {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 999px;
    padding: 6px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.cul-home-v3 .cul-v3-hero__search input[type="search"],
.cul-home-v3 .cul-v3-hero__search input[type="text"] {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    color: #1B3A5C;
    outline: none;
}

.cul-home-v3 .cul-v3-hero__search input::placeholder { color: #7a9ab8; }

.cul-home-v3 .cul-v3-hero__search-divider {
    width: 1px;
    height: 28px;
    background: #d0dce8;
}

.cul-home-v3 .cul-v3-hero__search-location {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
    color: #7a9ab8;
    flex: 0 0 180px;
}

.cul-home-v3 .cul-v3-hero__search-location input {
    padding: 12px 8px;
    flex: 1;
}

.cul-home-v3 .cul-v3-hero__search-btn {
    background: #E87722;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.cul-home-v3 .cul-v3-hero__search-btn:hover { background: #d06a18; transform: translateY(-1px); }

/* ── Section shell ────────────────────────────────────────── */
.cul-home-v3 .cul-v3-section {
    background: #fff;
    padding: 48px 0;
}

.cul-home-v3 .cul-v3-section--tint { background: #EEF4FB; }
.cul-home-v3 .cul-v3-section--center .cul-v3-inner { text-align: center; }

.cul-home-v3 .cul-v3-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cul-home-v3 .cul-v3-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #1B3A5C;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.cul-home-v3 .cul-v3-section__sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    color: #5F5E5A;
    margin: 0;
}

.cul-home-v3 .cul-v3-section__link {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1B3A5C;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.cul-home-v3 .cul-v3-section__link:hover { color: #E87722; }

/* ── Grids ────────────────────────────────────────────────── */
.cul-home-v3 .cul-v3-grid {
    display: grid;
    gap: 20px;
}

.cul-home-v3 .cul-v3-grid--1 { grid-template-columns: 1fr; }
.cul-home-v3 .cul-v3-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cul-home-v3 .cul-v3-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cul-home-v3 .cul-v3-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── Trends (3-col home block) ────────────────────────────── */
.cul-home-v3 .cul-v3-trends {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.cul-home-v3 .cul-v3-trends__col {
    background: #fff;
    border: 0.5px solid #d0dce8;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}
.cul-home-v3 .cul-v3-trends__col-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 0.5px solid #e0e8f0;
}
.cul-home-v3 .cul-v3-trends__col-head h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1B3A5C;
    margin: 0;
    line-height: 1.2;
}
.cul-home-v3 .cul-v3-trends__col-head a {
    font-size: 13px;
    font-weight: 600;
    color: #E87722;
    text-decoration: none;
    white-space: nowrap;
}
.cul-home-v3 .cul-v3-trends__col-head a:hover {
    color: #c96318;
}
.cul-home-v3 .cul-v3-trends__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cul-home-v3 .cul-v3-trends__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #1B3A5C;
    transition: background 0.15s;
}
.cul-home-v3 .cul-v3-trends__row:hover {
    background: #EEF4FB;
}
.cul-home-v3 .cul-v3-trends__rank {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EEF4FB;
    color: #7a9ab8;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
}
.cul-home-v3 .cul-v3-trends__row--top1 .cul-v3-trends__rank { background: #E87722; color: #fff; }
.cul-home-v3 .cul-v3-trends__row--top2 .cul-v3-trends__rank,
.cul-home-v3 .cul-v3-trends__row--top3 .cul-v3-trends__rank { background: #1B3A5C; color: #fff; }
.cul-home-v3 .cul-v3-trends__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.cul-home-v3 .cul-v3-trends__name {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cul-home-v3 .cul-v3-trends__meta {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cul-home-v3 .cul-v3-trends__hits { display: none; }
.cul-home-v3 .cul-trending__trend { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; }
.cul-home-v3 .cul-trending__trend svg { width: 12px; height: 12px; }
.cul-home-v3 .cul-trending__trend--up { background: rgba(46,160,67,0.14); color: #1e7a31; }
.cul-home-v3 .cul-trending__trend--down { background: rgba(220,38,38,0.14); color: #b91c1c; }
.cul-home-v3 .cul-trending__trend--flat { background: #EEF4FB; color: #7a9ab8; }
.cul-home-v3 .cul-trending__trend--new { width: auto; padding: 0 8px; height: 22px; background: #E87722; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 6px; }
.cul-home-v3 .cul-v3-trends__empty {
    padding: 20px 12px;
    text-align: center;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}
.cul-home-v3 .cul-v3-trends__empty a {
    color: #1B3A5C;
    font-weight: 600;
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .cul-home-v3 .cul-v3-trends { grid-template-columns: minmax(0, 1fr); }
}

/* ── Guide cards ──────────────────────────────────────────── */
.cul-home-v3 .cul-v3-guide {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #1B3A5C;
    border: 0.5px solid #1B3A5C;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cul-home-v3 .cul-v3-guide:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 58, 92, 0.25);
}

.cul-home-v3 .cul-v3-guide__label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #E87722;
    text-transform: uppercase;
}

.cul-home-v3 .cul-v3-guide__title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.cul-home-v3 .cul-v3-guide__read {
    font-size: 16px;
    color: #a8c4de;
    margin-top: auto;
}

/* ── Category pills ───────────────────────────────────────── */
.cul-home-v3 .cul-v3-eyebrow {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #5F5E5A;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.cul-home-v3 .cul-v3-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cul-home-v3 .cul-v3-pill {
    display: inline-flex;
    align-items: center;
    background: #EEF4FB;
    border: 0.5px solid #d0dce8;
    color: #1B3A5C;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cul-home-v3 .cul-v3-pill:hover {
    background: #1B3A5C;
    border-color: #1B3A5C;
    color: #fff;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
    .cul-home-v3 .cul-v3-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cul-home-v3 .cul-v3-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .cul-home-v3 .cul-v3-inner { padding: 0 20px; }
    .cul-home-v3 .cul-v3-hero { padding: 60px 0; min-height: auto; }
    .cul-home-v3 .cul-v3-hero__title {
        font-size: 32px;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .cul-home-v3 .cul-v3-hero__sub {
        font-size: 16px;
        text-align: center;
    }
    /* Horizontal swipe scroll on mobile — one tidy row that pans. */
    .cul-home-v3 .cul-v3-hero__pills {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 8px;
        padding: 4px 20px;
        margin: 0 -20px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 24px), transparent 100%);
    }
    .cul-home-v3 .cul-v3-hero__pills::-webkit-scrollbar { display: none; }
    .cul-home-v3 .cul-v3-hero__pills li { scroll-snap-align: start; flex-shrink: 0; }
    .cul-home-v3 .cul-v3-hero__pill {
        padding: 8px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .cul-home-v3 .cul-v3-hero__search {
        flex-wrap: wrap;
        border-radius: 16px;
        padding: 10px;
    }
    .cul-home-v3 .cul-v3-hero__search-divider { display: none; }
    .cul-home-v3 .cul-v3-hero__search-location {
        flex: 1 0 100%;
        padding: 0 8px;
        border-top: 0.5px solid #d0dce8;
        margin-top: 6px;
        padding-top: 6px;
    }
    .cul-home-v3 .cul-v3-hero__search-btn {
        flex: 1 0 100%;
        margin-top: 8px;
        border-radius: 8px;
    }

    .cul-home-v3 .cul-v3-section { padding: 36px 0; }
    .cul-home-v3 .cul-v3-section__title { font-size: 23px; }

    .cul-home-v3 .cul-v3-grid--2,
    .cul-home-v3 .cul-v3-grid--3,
    .cul-home-v3 .cul-v3-grid--4 { grid-template-columns: 1fr; }

    .cul-home-v3 .cul-v3-locpill { font-size: 16px; padding: 6px 12px; flex-wrap: wrap; }
    .cul-home-v3 .cul-v3-locpill__change { padding-left: 8px; }

    .cul-home-v3 .cul-spotlight-content { padding: 24px 20px !important; max-width: 100% !important; }
    .cul-home-v3 .cul-spotlight-content > div { max-width: 100% !important; }
    .cul-home-v3 .cul-spotlight-overlay { background: linear-gradient(180deg, rgba(27, 58, 92, 0.9) 0%, rgba(27, 58, 92, 0.92) 100%) !important; }
}

/* ============================================================
   Business Spotlight  (mobile overrides only; desktop uses
   inline styles from the shortcode markup)
   ============================================================ */
@media (max-width: 768px) {
    .cul-home-v3 .cul-spotlight { min-height: 520px; }
    .cul-home-v3 .cul-spotlight-overlay {
        background: linear-gradient(180deg, rgba(27, 58, 92, 0.3) 0%, rgba(27, 58, 92, 0.92) 60%, rgba(27, 58, 92, 0.95) 100%) !important;
    }
    .cul-home-v3 .cul-spotlight-content {
        padding: 24px !important;
        align-items: flex-end !important;
    }
    .cul-home-v3 .cul-spotlight-content > div {
        max-width: 100% !important;
    }
    .cul-home-v3 .cul-spotlight-content h2 {
        font-size: 26px !important;
    }
    /* Score badge shrinks so it doesn't crowd the title. */
    .cul-home-v3 .cul-spotlight-score {
        top: 16px !important;
        right: 16px !important;
        width: 58px !important;
        height: 58px !important;
        border-radius: 10px !important;
    }
    .cul-home-v3 .cul-spotlight-score > span:first-child {
        font-size: 20px !important;
    }
    .cul-home-v3 .cul-spotlight-score > span + span {
        font-size: 11px !important;
        margin-top: 2px !important;
        letter-spacing: 0.04em !important;
    }
    /* Eyebrow pill: compact on narrow screens. */
    .cul-home-v3 .cul-spotlight-content > div > span:first-child {
        font-size: 13px !important;
        padding: 5px 11px !important;
        letter-spacing: 0.4px !important;
    }
    /* Description: tighten lead so it doesn't dominate the small card. */
    .cul-home-v3 .cul-spotlight-content p {
        font-size: 16px !important;
        margin-bottom: 18px !important;
    }
}

/* ============================================================
   Pagination + empty state (used on tag-best-of-guides.php)
   ============================================================ */
.cul-home-v3 .cul-v3-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cul-home-v3 .cul-v3-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 0.5px solid #d0dce8;
    border-radius: 8px;
    background: #fff;
    color: #1B3A5C;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cul-home-v3 .cul-v3-pagination .page-numbers:hover {
    background: #EEF4FB;
    border-color: #1B3A5C;
}

.cul-home-v3 .cul-v3-pagination .page-numbers.current {
    background: #1B3A5C;
    border-color: #1B3A5C;
    color: #fff;
}

.cul-home-v3 .cul-v3-pagination .page-numbers.dots {
    border: 0;
    background: transparent;
    color: #7a9ab8;
}

.cul-home-v3 .cul-v3-empty {
    text-align: center;
    padding: 48px 24px;
    color: #5F5E5A;
    font-size: 16px;
    background: #f5f4f0;
    border: 0.5px solid #d0dce8;
    border-radius: 8px;
}

/* ============================================================
   SECTION 5.5: The Lincoln Local newsletter
   ============================================================ */
.cul-home-v3 .cul-v3-newsletter {
    background: #fff;
    padding: 64px 0;
}
.cul-home-v3 .cul-v3-newsletter__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: stretch;
    background:
        radial-gradient(900px 400px at 15% 20%, rgba(232,119,34,0.18), transparent 65%),
        linear-gradient(135deg, #1B3A5C 0%, #0f2740 100%);
    border-radius: 16px;
    padding: 48px;
    color: #fff;
}
.cul-home-v3 .cul-v3-newsletter__pitch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.cul-home-v3 .cul-v3-newsletter__eyebrow {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FFB37A;
}
.cul-home-v3 .cul-v3-newsletter__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}
.cul-home-v3 .cul-v3-newsletter__sub {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    margin: 0;
    max-width: 420px;
}
.cul-home-v3 .cul-v3-newsletter__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E87722;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
    margin-top: 8px;
}
.cul-home-v3 .cul-v3-newsletter__cta:hover { background: #d06a18; transform: translateY(-1px); color: #fff; }

.cul-home-v3 .cul-v3-newsletter__issues {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cul-home-v3 .cul-v3-newsletter__issue {
    display: grid;
    grid-template-columns: 96px 1fr 24px;
    gap: 18px;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.cul-home-v3 .cul-v3-newsletter__issue:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(232,119,34,0.6);
    transform: translateY(-1px);
    color: #fff;
}
.cul-home-v3 .cul-v3-newsletter__issue-image {
    display: block;
    width: 96px;
    height: 72px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.cul-home-v3 .cul-v3-newsletter__issue-image--ph {
    background:
        radial-gradient(circle at 30% 20%, rgba(232,119,34,0.45), transparent 60%),
        linear-gradient(135deg, #1B3A5C 0%, #3d5a99 100%);
}
.cul-home-v3 .cul-v3-newsletter__issue-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.cul-home-v3 .cul-v3-newsletter__issue-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB37A;
}
.cul-home-v3 .cul-v3-newsletter__issue-dot { color: rgba(255,255,255,0.4); }
.cul-home-v3 .cul-v3-newsletter__issue-date { color: rgba(255,255,255,0.75); letter-spacing: 0.04em; font-weight: 500; }
.cul-home-v3 .cul-v3-newsletter__issue-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cul-home-v3 .cul-v3-newsletter__issue-arrow {
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s ease, transform 0.15s ease;
}
.cul-home-v3 .cul-v3-newsletter__issue:hover .cul-v3-newsletter__issue-arrow {
    color: #FFB37A;
    transform: translateX(3px);
}

@media (max-width: 960px) {
    .cul-home-v3 .cul-v3-newsletter__grid { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
    .cul-home-v3 .cul-v3-newsletter__title { font-size: 36px; }
}
@media (max-width: 640px) {
    .cul-home-v3 .cul-v3-newsletter { padding: 40px 0; }
    .cul-home-v3 .cul-v3-newsletter__grid { padding: 28px 22px; border-radius: 14px; }
    .cul-home-v3 .cul-v3-newsletter__title { font-size: 30px; }
    .cul-home-v3 .cul-v3-newsletter__issue { grid-template-columns: 72px 1fr 20px; gap: 14px; }
    .cul-home-v3 .cul-v3-newsletter__issue-image { width: 72px; height: 56px; }
}

/* ============================================================
   SECTION 6: Final CTA Split  (residents + businesses)
   ============================================================ */
.cul-home-v3 .cul-cta-split { background: #1B3A5C; padding: 72px 0; width: 100%; }
.cul-home-v3 .cul-cta-split__inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cul-home-v3 .cul-cta-split__card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 40px 36px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cul-home-v3 .cul-cta-split__card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(232,119,34,0.6);
    transform: translateY(-2px);
}
.cul-home-v3 .cul-cta-split__eyebrow {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #E87722;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cul-home-v3 .cul-cta-split__title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}
.cul-home-v3 .cul-cta-split__copy {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: #a8c4de;
    margin: 0 0 28px;
    flex: 1;
}
.cul-home-v3 .cul-cta-split__btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E87722;
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.cul-home-v3 .cul-cta-split__card:hover .cul-cta-split__btn { background: #C96318; }
@media (max-width: 768px) {
    .cul-home-v3 .cul-cta-split { padding: 48px 0; }
    .cul-home-v3 .cul-cta-split__inner { padding: 0 20px; grid-template-columns: 1fr; gap: 16px; }
    .cul-home-v3 .cul-cta-split__card { padding: 32px 24px; }
    .cul-home-v3 .cul-cta-split__title { font-size: 23px; }
}

