/* =========================================================
   daybreak.featurelist.css
   Styles for the modern Feature List detail page (/feature2).
   Builds on the Daybreak tokens defined in daybreak.home.css.
   Scoped under .daybreak.featurelist so this file never bleeds
   into other daybreak pages.
   ========================================================= */

/* ---------- Page wrapper ---------- */
.daybreak.featurelist {
    background: var(--bg);
    color: var(--ink);
    padding-bottom: 0;
}

/* Reveal animation (uses .fl-reveal so it doesn't clash with Foundation's .reveal modal) */
.daybreak.featurelist .fl-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.daybreak.featurelist .fl-reveal.in {
    opacity: 1;
    transform: none;
}

/* Section block default spacing (matches NewHome convention) */
.daybreak.featurelist .block {
    padding: 56px 0;
}
.daybreak.featurelist .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}
.daybreak.featurelist .section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--ink-mute);
    margin-bottom: 10px;
}
.daybreak.featurelist .section-title {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.08;
    margin: 0 0 10px;
}
.daybreak.featurelist .section-sub {
    color: var(--ink-soft);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.5;
}
.daybreak.featurelist .title-highlight {
    background: linear-gradient(180deg, transparent 60%, var(--gold-tint) 60%);
    padding: 0 4px;
    border-radius: 4px;
}

/* ---------- Hero ---------- */
.daybreak.featurelist .fl-hero {
    position: relative;
    padding: 42px 0 56px;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 88% -10%, rgba(255, 91, 133, .16), transparent 60%),
        radial-gradient(700px 400px at -5% 35%, rgba(74, 144, 226, .14), transparent 60%),
        radial-gradient(500px 300px at 50% 100%, rgba(245, 184, 58, .10), transparent 60%);
}
.daybreak.featurelist .fl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 22, 42, .04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.daybreak.featurelist .fl-hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}
.daybreak.featurelist .fl-hero-text {
    max-width: 640px;
}
.daybreak.featurelist .fl-hero-crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
    text-decoration: none;
}
.daybreak.featurelist .fl-hero-crumb i {
    font-size: .9em;
}
.daybreak.featurelist .fl-hero-crumb:hover {
    color: var(--link-blue);
}
.daybreak.featurelist .fl-hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.03;
    margin: 8px 0 16px;
    letter-spacing: -.01em;
}
.daybreak.featurelist .fl-hero-intro {
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.55;
    color: var(--ink-soft);
}
.daybreak.featurelist .fl-hero-intro br {
    display: block;
    margin-bottom: 8px;
    content: "";
}
.daybreak.featurelist .fl-hero-art {
    position: relative;
    display: flex;
    justify-content: center;
}
.daybreak.featurelist .fl-hero-image {
    display: block;
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--bg);
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.daybreak.featurelist .fl-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(17, 22, 42, .26));
    z-index: 1;
}
.daybreak.featurelist .fl-hero-tape {
    position: absolute;
    top: -10px;
    right: 16%;
    width: 90px;
    height: 22px;
    background: var(--tape-yellow, rgba(255, 212, 94, .78));
    transform: rotate(8deg);
    box-shadow: 0 4px 10px rgba(17, 22, 42, .08);
    z-index: 2;
    pointer-events: none;
}
.daybreak.featurelist .fl-hero-caption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    transform: none;
    background: rgba(17, 22, 42, .78);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(17, 22, 42, .24);
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 24px);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .02em;
    line-height: 1.3;
    z-index: 2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.daybreak.featurelist .fl-hero-caption-plus {
    display: inline-block;
    color: #fff;
    flex: 0 0 auto;
}
.daybreak.featurelist .fl-hero-caption-plus i {
    font-size: 12px;
    line-height: 1;
    margin-right: 1px;
    opacity: .9;
}

@media (max-width: 960px) {
    .daybreak.featurelist .fl-hero-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .daybreak.featurelist .fl-hero {
        padding: 32px 0 56px;
    }
    .daybreak.featurelist .fl-hero-image {
        max-width: 380px;
        transform: rotate(-1.5deg);
    }
}

/* ---------- List body ---------- */
.daybreak.featurelist .fl-list-section {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.daybreak.featurelist .fl-list-wrap {
    max-width: 980px;
    margin: 0 auto;
}
.daybreak.featurelist .fl-list-inner {
    /* Cached StaticListHtml lands here. Keep the legacy markup readable. */
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
}
.daybreak.featurelist .fl-list-inner a {
    color: var(--link-blue);
}
.daybreak.featurelist .fl-list-inner a:hover {
    color: var(--link-blue-hover);
}
/* Pull legacy edge-to-edge wrappers in a bit so they live inside the daybreak shell */
.daybreak.featurelist .fl-list-inner .header-shadow-blue {
    display: none;
}
.daybreak.featurelist .fl-list-inner .grid-x {
    margin: 0;
}
.daybreak.featurelist .fl-list-inner #features-listcontainer {
    margin-top: 0 !important;
}

/* ---------- Conclusion ---------- */
.daybreak.featurelist .fl-conclusion-section {
    background: var(--bg);
}
.daybreak.featurelist .fl-conclusion-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.daybreak.featurelist .fl-conclusion-body {
    margin-top: 12px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
}

/* ---------- Other Feature Lists ---------- */
.daybreak.featurelist .fl-other-section {
    background: #fff;
    border-top: 1px solid var(--line);
}
.daybreak.featurelist .fl-other-inner {
    /* Cached StaticOthersHtml lands here. */
    margin-top: 8px;
}
.daybreak.featurelist .fl-other-inner a {
    color: var(--link-blue);
}
.daybreak.featurelist .fl-other-inner a:hover {
    color: var(--link-blue-hover);
}
.daybreak.featurelist .fl-other-cta {
    text-align: center;
    margin-top: 32px;
}

/* ---------- Buttons ---------- */
.daybreak.featurelist .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.daybreak.featurelist .btn i {
    font-size: .92em;
    line-height: 1;
}
.daybreak.featurelist .btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 2px 0 #D83F69, 0 6px 20px rgba(255, 91, 133, .28);
}
.daybreak.featurelist .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #D83F69, 0 10px 24px rgba(255, 91, 133, .34);
    color: #fff;
}
.daybreak.featurelist .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #D83F69, 0 2px 8px rgba(255, 91, 133, .24);
}
.daybreak.featurelist .whitelink,
.daybreak.featurelist .whitelink:hover,
.daybreak.featurelist .whitelink:visited {
    color: #fff;
}
