/* Day 1 homepage hero — Planche + Radar */

.home-day1 {
    --we-teal: #007C91;
    --we-yellow: #FFD500;
    --we-cream: #FAF8F5;
    --we-ink: #1E1E1E;
    --we-mute: #5E6B73;
    --we-paper: #FFFFFF;
    --we-rule: #E5E0D8;
    background: var(--we-cream);
    color: var(--we-ink);
    padding: 2.25rem 0 2.75rem;
    border-bottom: 1px solid var(--we-rule);
    overflow-x: hidden;
}

.home-day1-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(15.5rem, 0.72fr);
    gap: 1.75rem;
    align-items: stretch;
    min-width: 0;
}

.home-planche,
.home-radar {
    min-width: 0;
    background: var(--we-paper);
    border: 1px solid var(--we-rule);
}

.home-planche {
    display: flex;
    flex-direction: column;
}

.home-planche-visual {
    display: block;
    background: #F1F5F4;
    text-decoration: none;
    min-height: 16rem;
}

.home-planche-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.home-planche-visual--empty {
    min-height: 18rem;
    border-bottom: 1px solid var(--we-rule);
}

.home-planche-copy {
    padding: 1.5rem 1.6rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.home-territory-label {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--we-teal);
}

.home-planche-title {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--we-ink);
}

.home-planche-title a {
    color: inherit;
    text-decoration: none;
}

.home-planche-title a:hover {
    color: var(--we-teal);
}

.home-planche-excerpt {
    margin: 0;
    max-width: 46ch;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--we-mute);
}

.home-planche-cta,
.home-radar-cta {
    align-self: flex-start;
    margin-top: 0.35rem;
    font-family: Inter, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--we-teal);
    text-decoration: none;
    border-bottom: 2px solid var(--we-yellow);
    padding-bottom: 2px;
}

.home-planche-cta:hover,
.home-radar-cta:hover {
    color: var(--we-ink);
}

.home-radar {
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.25rem 1.4rem;
}

.home-radar-head {
    display: block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--we-rule);
}

.home-radar-title {
    margin: 0.35rem 0 0.4rem;
    font-family: Poppins, sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--we-ink);
}

.home-radar-standfirst {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--we-mute);
}

.home-radar-list {
    list-style: none;
    margin: 0;
    padding: 0.65rem 0 0.85rem;
}

.home-radar-item {
    border-bottom: 1px solid var(--we-rule);
}

.home-radar-item:last-child {
    border-bottom: none;
}

.home-radar-item a {
    display: block;
    padding: 0.7rem 0;
    text-decoration: none;
    color: inherit;
}

.home-radar-item a:hover .home-radar-item-title {
    color: var(--we-teal);
}

.home-radar-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-bottom: 0.25rem;
    font-family: Inter, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--we-mute);
}

.home-radar-item-title {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--we-ink);
}

.home-radar-empty {
    margin: 1rem 0 0.85rem;
    font-family: Inter, sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--we-mute);
}

.home-radar-cta {
    margin-top: auto;
}

@media (max-width: 900px) {
    .home-day1 {
        padding: 1.5rem 0 2rem;
    }

    .home-day1-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
    }

    .home-planche-visual--empty {
        min-height: 12rem;
    }

    .home-planche-copy {
        padding: 1.25rem 1.15rem 1.4rem;
    }
}
