/* ── Hero Subscribe Banner ── */
.nh-hero {
    background-color: #2563eb;
    padding: 2.5rem 1.5rem;
}
.nh-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.nh-hero-text {
    flex: 1 1 0;
}
.nh-hero-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    border: none;
}
.nh-hero-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.6;
}
.nh-hero-form {
    flex: 0 0 380px;
}
.nh-hero-form form {
    display: block;
    margin: 0;
    padding: 0;
}
.nh-hero-form input[type="email"] {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    background: #fff;
    box-sizing: border-box;
    margin: 0;
}
.nh-hero-form input[type="email"]:focus {
    outline: none;
    border-color: #93c5fd;
}
.nh-hero-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 0 0 4px 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0;
}
.nh-hero-form button[type="submit"]:hover {
    background: #374151;
}
.nh-hero-terms {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.6rem;
    line-height: 1.4;
}
.nh-hero-terms a {
    color: #fff;
    text-decoration: underline;
}
.nh-hero-form .beehiiv-success { color: #bfdbfe; margin: 4px 0; font-size: 0.85rem; }
.nh-hero-form .beehiiv-error   { color: #fca5a5; margin: 4px 0; font-size: 0.85rem; }

/* ── Stories Section ── */
.nh-stories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.nh-featured {
    flex: 0 0 55%;
}
.nh-featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.nh-featured-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    border: 1px solid #e5e7eb;
}
.nh-featured-body {
    padding: 1rem 0 0;
}
.nh-cat-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 0.5rem;
}
.nh-featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 0.75rem 0;
}
.nh-featured-excerpt {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}
.nh-author {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #374151;
}

/* ── Latest Stories List ── */
.nh-latest {
    flex: 1 1 0;
}
.nh-latest-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #111827;
}
.nh-latest-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    border: none;
}
.nh-all-stories {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111827;
    text-decoration: none;
    white-space: nowrap;
}
.nh-all-stories:hover { text-decoration: underline; }
.nh-story-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.nh-story-item:first-child { padding-top: 0; }
.nh-story-item:last-child { border-bottom: none; }
.nh-story-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    text-decoration: none;
    display: block;
    margin-bottom: 0.35rem;
    transition: color 0.15s;
}
.nh-story-title:hover { color: #2563eb; }
.nh-story-meta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}
.nh-story-meta .nh-story-sep { margin: 0 0.4rem; }

/* ── Editor's Picks ── */
.nh-picks {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 0;
}
.nh-picks-header {
    margin-bottom: 1rem;
}
.nh-picks-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
    border: none;
}
.nh-picks-rule {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0;
}
.nh-picks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}
.nh-pick-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.nh-pick-card:hover .nh-pick-title {
    color: #01a173;
}
.nh-pick-thumb {
    width: 100%;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: 2px;
}
.nh-pick-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.nh-pick-body {
    padding: 0.6rem 0 0;
}
.nh-pick-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #01a173;
    margin-bottom: 0.3rem;
}
.nh-pick-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin: 0 0 0.3rem 0;
    transition: color 0.15s;
}
.nh-pick-author {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #6b7280;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nh-hero { padding: 1.5rem 1rem; }
    .nh-hero-inner { flex-direction: column; gap: 1.25rem; }
    .nh-hero-text h2 { font-size: 1.5rem; }
    .nh-hero-text p { font-size: 0.875rem; }
    .nh-hero-form { flex: none; width: 100%; }
    .nh-picks-grid { grid-template-columns: 1fr; max-width: 100%; }
    .nh-pick-thumb { height: auto; }
    .nh-stories { flex-direction: column; padding: 2rem 1rem; }
    .nh-featured { flex: none; width: 100%; }
    .nh-featured-img { aspect-ratio: 16/9; }
    .nh-featured-title { font-size: 1.375rem; }
}
