/* Hollywood Rebound — Newsletter Signup Landing Page */

.nls-page {
    padding-bottom: 72px;
}

/* ── Hero ─────────────────────────────────────────── */

.nls-hero {
    padding: 56px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--text-color);
}

.nls-eyebrow {
    font-family: var(--font1);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
    margin: 0 0 20px;
}

.nls-headline {
    font-family: var(--font2);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 auto 10px;
    max-width: 20ch;
}

.nls-rotating {
    font-family: var(--font2);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: #0186ff;
    margin: 0 0 26px;
    min-height: 1.3em;
    transition: opacity 0.3s ease;
}

.nls-sub {
    font-family: var(--font1);
    font-size: 15px;
    opacity: 0.7;
    max-width: 44ch;
    margin: 0 auto 32px;
    line-height: 1.65;
}

/* ── Signup form ──────────────────────────────────── */

.nls-signup-row {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    border: 1px solid var(--text-color);
}

.nls-email-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-family: var(--font1);
    font-size: 14px;
    background: var(--background-color);
    color: var(--text-color);
    outline: none;
    min-width: 0;
}

.nls-email-input::placeholder {
    opacity: 0.4;
}

.nls-signup-btn {
    background: var(--text-color);
    color: var(--background-color);
    border: none;
    padding: 12px 22px;
    font-family: var(--font1);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s ease;
}

.nls-signup-btn:hover {
    opacity: 0.82;
}

.nls-fine-print {
    font-family: var(--font1);
    font-size: 11px;
    opacity: 0.4;
    margin-top: 12px;
}

/* ── Archive ──────────────────────────────────────── */

.nls-archive {
    padding-top: 44px;
}

.nls-archive-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 2px solid var(--text-color);
    padding-top: 14px;
    margin-bottom: 28px;
}

.nls-archive-label {
    font-family: var(--font1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nls-archive-link {
    font-family: var(--font1);
    font-size: 12px;
    color: #0186ff;
    text-decoration: none;
}

.nls-archive-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nls-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--text-color);
    gap: 0;
}

.nls-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-right: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.15s ease;
}

.nls-card:hover {
    background-color: rgba(1, 134, 255, 0.04);
}

.nls-card:hover .nls-card-title {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nls-card-date {
    font-family: var(--font1);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.nls-card-title {
    font-family: var(--font2);
    font-size: 18px;
    line-height: 1.25;
}

.nls-card-excerpt {
    font-family: var(--font1);
    font-size: 13px;
    opacity: 0.65;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Bottom CTA ───────────────────────────────────── */

.nls-bottom-cta {
    text-align: center;
    padding-top: 56px;
    margin-top: 56px;
    border-top: 1px solid var(--text-color);
}

.nls-bottom-headline {
    font-family: var(--font2);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 auto 28px;
    max-width: 24ch;
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 768px) {
    .nls-grid {
        grid-template-columns: 1fr;
    }

    .nls-hero {
        padding: 40px 0 36px;
    }

    .nls-signup-row {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .nls-headline,
    .nls-rotating {
        font-size: clamp(24px, 7vw, 32px);
    }

    .nls-archive-header {
        flex-direction: column;
        gap: 6px;
    }
}


/* Newsletter page refinements */
.hr-module-latest {
    border-top: none !important;
    padding-top: 32px;
    margin-top: 20px;
}

.hr-module-latest:before,
.hr-module-latest .hr-module-header:before {
    display:none !important;
}

.nls-signup-row {
    border-radius: 999px;
    overflow: hidden;
    max-width: 560px;
}

.nls-email-input {
    padding: 16px 24px;
}

.nls-signup-btn {
    padding: 16px 28px;
    border-radius: 999px;
}

.nls-fine-print {
    margin-top: 16px;
}
