/* ============================================
   BroadwayWorld Media Kit - Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bww-red: #C8102E;
    --bww-dark: #1a1a1a;
    --bww-gray: #333333;
    --bww-light-gray: #f5f5f5;
    --bww-white: #ffffff;
    --bww-text: #2c2c2c;
    --bww-border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--bww-text);
    line-height: 1.6;
    background-color: var(--bww-white);
}

/* ============================================
   Header Styles
   ============================================ */

.header {
    background-color: var(--bww-white);
    border-bottom: 1px solid var(--bww-border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-media-kit-label {
    display: none;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 300px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--bww-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--bww-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bww-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bww-text);
}

/* ============================================
   Main Content
   ============================================ */

.main-content {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--bww-dark) 0%, var(--bww-gray) 100%);
    color: var(--bww-white);
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--bww-red);
    color: var(--bww-white);
}

.btn-primary:hover {
    background-color: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bww-white);
    border-color: var(--bww-white);
}

.btn-secondary:hover {
    background-color: var(--bww-white);
    color: var(--bww-dark);
}

/* ============================================
   Section Styles
   ============================================ */

.section {
    padding: 4rem 0;
}

.contact-form-section {
    padding-top: 1.25rem;
}

.section-alt {
    background-color: var(--bww-light-gray);
}

/* Audience Section - Reduced padding, white background */
.audience-section {
    padding: 2.5rem 0;
    background-color: var(--bww-white);
}

.audience-section .section-header {
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bww-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--bww-gray);
}

/* ============================================
   Testimonials (includes/testimonials.cfm)
   ============================================ */
.testimonials-section {
    padding: 2rem 0;
}

.testimonials-section .section-header {
    margin-bottom: 1.25rem;
}

.testimonials-slider-wrap {
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonials-track .testimonial-item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.testimonial-item {
    position: relative;
    background: var(--bww-white);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-item::before,
.testimonial-item::after {
    position: absolute;
    font-size: 3rem;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--bww-dark);
    opacity: 0.08;
    pointer-events: none;
}

.testimonial-item::before {
    content: '\201C';
    top: 0.5rem;
    left: 0.75rem;
}

.testimonial-item::after {
    content: '\201D';
    bottom: 0.5rem;
}

.testimonial-item-video::before,
.testimonial-item-video::after {
    display: none !important;
}

.testimonial-item-video {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.testimonial-video-embed {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-content {
    position: relative;
    max-width: 32rem;
    margin: 0 auto 0.75rem;
}

.testimonial-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--bww-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.85rem;
    max-width: 32rem;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--bww-dark);
}

.testimonial-author-position {
    color: var(--bww-gray);
    font-size: 0.8rem;
}

.testimonials-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--bww-white);
    color: var(--bww-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-slider-btn:hover {
    background-color: var(--bww-red);
    color: var(--bww-white);
    box-shadow: 0 4px 20px rgba(160, 13, 37, 0.35);
}

.testimonials-slider-prev {
    left: -1.5rem;
}

.testimonials-slider-next {
    right: -1.5rem;
}

@media (max-width: 768px) {
    .testimonials-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .testimonials-slider-prev {
        left: -0.5rem;
    }
    .testimonials-slider-next {
        right: -0.5rem;
    }
}

/* ============================================
   Features Grid
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bww-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bww-dark);
}

.feature-card p {
    color: var(--bww-gray);
    line-height: 1.6;
}

/* Advertising Opportunities – ad-ops placeholders (#advertising) */
.ad-ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.ad-ops-card {
    align-self: start;
    background-color: var(--bww-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-ops-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.ad-ops-img {
    aspect-ratio: 16 / 10;
    background: var(--bww-light-gray, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bww-gray, #888);
    font-size: 0.9rem;
    overflow: hidden;
}

.ad-ops-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.ad-ops-card h3 {
    font-size: 1.25rem;
    margin: 1rem 1.25rem 0;
    color: var(--bww-dark);
}

.ad-ops-card p {
    margin: 0.5rem 1.25rem 1.25rem;
    color: var(--bww-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   Stats Grid with Images
   ============================================ */

.stats-grid-with-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.audience-section .stats-grid-with-images:last-child {
    margin-bottom: 0;
}

.stat-card-image {
    background-color: var(--bww-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stat-image-wrapper {
    width: 100%;
    height: 188px;
    overflow: hidden;
    background-color: var(--bww-light-gray);
}

.stat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* 300+ card: stories slider (desktop only) - matches other stat cards (188px) */
.stat-card-300 .stat-image-wrapper .audience-stories-slider-wrap {
    position: relative;
    width: 100%;
    height: 188px;
    overflow: hidden;
}

.audience-stories-slider-wrap {
    overflow: hidden;
}

.audience-stories-slider {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.audience-stories-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
    height: 100%;
}

.audience-stories-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    height: 100%;
}

.audience-stories-link {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.audience-stories-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audience-stories-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.6rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.audience-stories-link:hover .audience-stories-title {
    color: #fff;
}

.audience-stories-placeholder {
    align-items: center;
    justify-content: center;
    background: var(--bww-light-gray);
}

.audience-stories-placeholder .audience-stories-title {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.audience-stories-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--bww-border);
    background: var(--bww-white);
    font-size: 1.25rem;
    color: var(--bww-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.audience-stories-btn:hover:not(:disabled) {
    background: var(--bww-red);
    border-color: var(--bww-red);
    color: var(--bww-white);
}

.audience-stories-prev { left: 4px; }
.audience-stories-next { right: 4px; }

.stat-content {
    padding: 1.25rem;
    text-align: center;
}

.stat-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bww-red);
    margin-bottom: 0.75rem;
}

.stat-content p {
    color: var(--bww-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bww-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bww-dark);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--bww-gray);
}

.contact-info a {
    color: var(--bww-red);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer Styles
   ============================================ */

.footer {
    background-color: var(--bww-dark);
    color: var(--bww-white);
    margin-top: 4rem;
    border-top: 3px solid var(--bww-red);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--bww-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--bww-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section .btn {
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bww-white);
    text-decoration: underline;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-wrapper h4 {
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-social a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
    border: none;
    outline: none;
    text-decoration: none;
    color: transparent;
    background: transparent;
}

.footer-social a:link,
.footer-social a:visited,
.footer-social a:active,
.footer-social a:focus {
    border: none;
    outline: none;
    color: transparent;
    background: transparent;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-1px);
    opacity: 1;
    border: none;
    outline: none;
}

.footer-social img {
    height: 30px;
    width: 30px;
    display: block;
    border: none;
    outline: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Specs Pages (specs.cfm + /specs/*)
   ============================================ */

.specs-hero {
    background: linear-gradient(135deg, var(--bww-dark) 0%, var(--bww-gray) 100%);
    color: var(--bww-white);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.specs-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.specs-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.specs-hero a {
    color: var(--bww-white);
    text-decoration: underline;
}

.specs-hero a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.specs-column h2 {
    font-size: 1.75rem;
    color: var(--bww-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.specs-column h2:first-child {
    margin-top: 0;
}

.specs-note {
    color: var(--bww-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.specs-links {
    list-style: none;
    margin-bottom: 2rem;
}

.specs-links li {
    margin-bottom: 0.75rem;
}

.specs-links a {
    color: var(--bww-red);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.specs-links a:hover {
    color: #a00d25;
    text-decoration: underline;
}

/* Specs content pages (eblast, skinning-wallpaper, etc.) */
.specs-content {
    max-width: 900px;
    margin: 0 auto;
}

.specs-alert {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
}

.specs-alert p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.specs-section {
    margin-bottom: 2.5rem;
}

.specs-section h2 {
    font-size: 1.5rem;
    color: var(--bww-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bww-border);
}

.specs-section h3 {
    font-size: 1.25rem;
    color: var(--bww-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.specs-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--bww-gray);
}

.specs-section p:last-child {
    margin-bottom: 0;
}

.specs-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.specs-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
    color: var(--bww-gray);
}

.specs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bww-red);
    font-weight: bold;
}

.specs-list a {
    color: var(--bww-red);
    text-decoration: none;
}

.specs-list a:hover {
    text-decoration: underline;
}

.specs-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
    align-items: start;
}

.specs-example {
    border: 1px solid var(--bww-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bww-light-gray);
}

.specs-example img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.specs-example .specs-caption {
    font-size: 14px;
    margin: 0;
    padding: 10px 12px;
    background: #f5f5f5;
    border-top: 1px solid var(--bww-border);
    color: var(--bww-dark, #111827);
}

/* Banner Ads: sample banners at native resolution with size label above */
.specs-banner-samples .specs-banner-sample {
    margin-bottom: 2rem;
}
.specs-banner-samples .specs-banner-size {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.specs-banner-samples .specs-example {
    width: max-content;
}
.specs-banner-samples .specs-example img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.specs-example iframe {
    display: block;
    width: 100%;
    border: none;
}

/* E-Blast iframes: isolate from site styles, white background so preview renders correctly */
.specs-example--eblast,
.specs-example:has(iframe[src*="blast.broadwayworld.com"]) {
    background: #fff !important;
    color: initial;
}
.specs-example--eblast iframe,
.specs-example iframe[src*="blast.broadwayworld.com"] {
    width: 100%;
    height: 800px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    display: block;
}

.specs-text-example {
    background: var(--bww-light-gray);
    border: 1px solid var(--bww-border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bww-gray);
    max-height: 500px;
    overflow: auto;
}

.specs-text-example p {
    margin-bottom: 0.75rem;
}

.specs-text-example p:last-child {
    margin-bottom: 0;
}

.specs-new {
    display: inline-block;
    background: var(--bww-red);
    color: var(--bww-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.25rem;
}

.specs-download {
    margin-top: 1rem;
}

.specs-download .btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .specs-hero {
        padding: 3rem 1rem;
    }

    .specs-hero-content h1 {
        font-size: 2rem;
    }

    .specs-hero-subtitle {
        font-size: 1rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .specs-column h2 {
        font-size: 1.5rem;
    }

    .specs-content {
        padding: 0;
    }

    .specs-section h2 {
        font-size: 1.35rem;
    }

    .specs-section h3 {
        font-size: 1.15rem;
    }

    .specs-examples {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Rates Page (rates.cfm)
   ============================================ */

.rates-step {
    margin-bottom: 0;
}

.rates-step-broadway {
    margin-bottom: 3rem;
}

.rates-broadway-hero {
    margin-bottom: 2rem;
}

.rates-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.rates-choice-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    background-color: var(--bww-red);
    color: var(--bww-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rates-choice-btn:hover {
    background-color: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(200, 16, 46, 0.3);
}

.rates-choice-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    background-color: var(--bww-red);
    color: var(--bww-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rates-choice-link:hover {
    background-color: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(200, 16, 46, 0.3);
    color: var(--bww-white);
    text-decoration: none;
}

.specs-hero .rates-choice-link,
.specs-hero .rates-choice-link:hover {
    text-decoration: none;
}

.rates-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--bww-border);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.rates-table thead {
    background: var(--bww-dark);
    color: var(--bww-white);
}

.rates-table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
}

.rates-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--bww-border);
    color: var(--bww-gray);
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rates-table tbody tr:hover {
    background: var(--bww-light-gray);
}

.rates-table td:last-child {
    font-weight: 600;
    color: var(--bww-dark);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .rates-choices {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.5rem;
    }

    .rates-choice-btn,
    .rates-choice-link {
        text-align: center;
    }

    .rates-table {
        font-size: 0.875rem;
    }

    .rates-table th,
    .rates-table td {
        padding: 0.6rem 0.75rem;
    }
}

/* ============================================
   Content Page (content.cfm)
   Uses: .container, .specs-hero, .section, .section-header,
   .rates-table*, .specs-example, .specs-list, .nos-video-embed
   from other sections. Rules below are content-specific.
   ============================================ */

.content-blocks {
    padding: 3rem 0;
}

.content-blocks--tight-top {
    padding-top: 1rem;
}

.content-see-also {
    max-width: 900px;
    margin: 0 auto 1rem;
    text-align: right;
}

.content-see-also p {
    margin: 0;
}

.content-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.content-block-card {
    background: var(--bww-white);
    border: 1px solid var(--bww-border);
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.content-block-card h2 {
    font-size: 1.35rem;
    color: var(--bww-dark);
    margin: 0 0 1rem 0;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bww-border);
}

.content-block-card p,
.content-block-card .specs-list {
    margin-bottom: 1rem;
    line-height: 1.65;
    color: var(--bww-gray);
    font-size: 0.95rem;
}

.content-block-card p:last-of-type {
    margin-bottom: 0;
}

.content-block-card .specs-list {
    margin-top: 0.5rem;
}

.content-block-media {
    margin-top: 1.25rem;
    flex: 0 0 auto;
}

.content-block-media .nos-video-embed,
.content-block-media .specs-example {
    border-radius: 8px;
    overflow: hidden;
}

.content-block-media .specs-note {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Social Media page – taller embeds so Instagram/Facebook aren't cut off */
.content-block-media .nos-video-embed.social-embed {
    padding-bottom: 150%;
}

/* Social Media page – two images side-by-side in one card */
.content-block-media .social-media-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.content-block-media .social-media-images img {
    width: 100%;
    height: auto;
    display: block;
}

.content-block-card.press-authoritative {
    grid-column: 1 / -1;
}

/* Press page – An Authoritative Voice newsfeed */
.press-newsfeed {
    margin-top: 1.25rem;
}

.press-newsfeed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.press-newsfeed-item {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bww-white);
    border: 1px solid var(--bww-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.press-newsfeed-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.press-newsfeed-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.content-block-card .specs-examples {
    margin-top: 0.5rem;
}

@media (max-width: 968px) {
    .press-newsfeed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Audience section: force 2 columns on tablet sizes */
    .audience-section .stats-grid-with-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-blocks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-block-card {
        padding: 1.25rem;
    }

    .content-block-media .social-media-images {
        grid-template-columns: 1fr;
    }

    .press-newsfeed-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   Hero Video Section (Homepage)
   ============================================ */

.hero-video-wrapper {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.hero-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 560px;
    background: var(--bww-dark);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-video-overlay > * {
    pointer-events: auto;
}

.hero-video-overlay.sound-on {
    background: transparent;
    transition: background 0.4s ease;
}

.hero-video-overlay.sound-on .hero-video-content,
.hero-video-overlay.sound-on .hero-video-unmute {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-video-content {
    text-align: center;
    color: var(--bww-white);
    padding: 2rem;
}

.hero-video-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-video-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-video-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-video-unmute {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bww-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-video-unmute:hover {
    background: rgba(0,0,0,0.8);
    border-color: var(--bww-white);
}

.hero-video-unmute-icon.unmuted {
    display: none;
}

.hero-video-unmute.is-unmuted .hero-video-unmute-icon.muted {
    display: none;
}

.hero-video-unmute.is-unmuted .hero-video-unmute-icon.unmuted {
    display: inline;
}

/* ============================================
   Client Slider (Homepage & NOS Sponsors)
   ============================================ */

.client-slider-wrapper {
    margin: 3rem 0;
}

.client-slider-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 3rem;
}

.client-slider-row {
    position: relative;
}

.client-slider {
    overflow: hidden;
    background: transparent;
}

.client-slider-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
    will-change: transform;
    padding: 0;
}

.client-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bww-white);
    border: 1px solid var(--bww-border);
    border-radius: 8px;
    padding: 1rem;
    min-width: 140px;
    min-height: 140px;
}

.client-slide img {
    width: 100%;
    height: 100%;
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-slide:hover img {
    filter: grayscale(0);
}

.client-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bww-white);
    border: 2px solid var(--bww-border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
    color: var(--bww-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.client-slider-btn:hover:not(:disabled) {
    background-color: var(--bww-red);
    border-color: var(--bww-red);
    color: var(--bww-white);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.client-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.client-slider-prev {
    left: -1.5rem;
}

.client-slider-next {
    right: -1.5rem;
}

/* ============================================
   Next On Stage Page – Intro & Subsections
   ============================================ */

.nos-intro-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nos-intro-content h2 {
    font-size: 1.75rem;
    color: var(--bww-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.nos-intro-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--bww-gray);
    margin-bottom: 2rem;
}

.nos-subsection {
    margin-bottom: 2rem;
}

.nos-subsection:last-child {
    margin-bottom: 0;
}

.nos-subsection h3 {
    font-size: 1.35rem;
    color: var(--bww-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.nos-alumni .nos-alumni-content {
    max-width: 800px;
}

.nos-alumni .nos-alumni-figure {
    margin: 2rem 0 1rem;
    text-align: center;
}

.nos-alumni .nos-alumni-figure:first-of-type {
    margin-top: 0;
}

.nos-alumni .nos-alumni-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nos-alumni .nos-alumni-figure figcaption {
    font-size: 0.9rem;
    color: var(--bww-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.nos-alumni .nos-alumni-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--bww-dark);
}

.nos-alumni .nos-alumni-content p:last-child {
    margin-bottom: 0;
}

.nos-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    background: var(--bww-dark);
}

.nos-video-embed iframe,
.nos-video-embed video,
.nos-video-embed img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.nos-video-embed video,
.nos-video-embed img {
    object-fit: cover;
    object-position: top;
}

/* Sponsorship Opportunities & Elements */
.nos-sponsorship-block {
    background: var(--bww-light-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--bww-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nos-sponsorship-heading {
    font-size: 1.4rem;
    color: var(--bww-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.nos-sponsorship-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--bww-red), rgba(200, 16, 46, 0.5));
    border-radius: 2px;
}

.nos-elements-heading {
    margin-top: 2.25rem;
}

.nos-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.nos-opp-card {
    background: var(--bww-white);
    border-radius: 10px;
    padding: 1.35rem;
    border-left: 4px solid var(--bww-red);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nos-opp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.12);
}

.nos-opp-card-wide {
    grid-column: 1 / -1;
}

.nos-opp-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bww-red);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.nos-opp-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bww-gray);
    margin: 0;
}

.nos-elements-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.nos-elements-list li {
    position: relative;
    padding: 0.65rem 1rem 0.65rem 2rem;
    font-size: 0.98rem;
    color: var(--bww-gray);
    background: var(--bww-white);
    border-radius: 6px;
    border: 1px solid var(--bww-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nos-elements-list li::before {
    content: '';
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--bww-red);
    border-radius: 50%;
}

/* ============================================
   NOS S6 Photo Gallery Slider
   ============================================ */

.nos-gallery-wrapper {
    margin: 3rem 0;
    padding: 2rem 0;
}

.nos-subsection .nos-gallery-wrapper {
    margin-top: 0;
    padding-top: 0;
}

.nos-subsection .nos-gallery-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.nos-gallery-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 3rem;
}

.nos-gallery-row {
    position: relative;
}

.nos-gallery {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    background: var(--bww-dark);
}

.nos-gallery-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.nos-gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: var(--bww-dark);
}

.nos-gallery-slide img {
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 16 / 10.5;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: top;
}

.nos-gallery-caption {
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--bww-white);
    background: var(--bww-dark);
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 2.5rem;
}

.nos-gallery-caption a {
    color: #f5a0a8;
    text-decoration: none;
}

.nos-gallery-caption a:hover {
    color: var(--bww-white);
    text-decoration: underline;
}

.nos-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bww-white);
    border: 2px solid var(--bww-border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
    color: var(--bww-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nos-gallery-btn:hover:not(:disabled) {
    background-color: var(--bww-red);
    border-color: var(--bww-red);
    color: var(--bww-white);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.nos-gallery-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nos-gallery-prev {
    left: -1.5rem;
}

.nos-gallery-next {
    right: -1.5rem;
}

.nos-gallery-credit {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: var(--bww-gray);
    text-align: center;
}

.nos-gallery-credit a {
    color: var(--bww-red);
    text-decoration: none;
}

.nos-gallery-credit a:hover {
    text-decoration: underline;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 1rem;
    }
    
    .logo {
        height: 40px;
    }

    .header-media-kit-label {
        display: inline-block;
        margin-left: 0.85rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bww-text);
        letter-spacing: 0.02em;
        line-height: 40px;
        vertical-align: middle;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bww-white);
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.6rem 2rem;
        border-top: 1px solid var(--bww-border);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.25rem 0;
        font-size: 1.05rem;
    }
    
    /* Hero */
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 0;
    }
    
    .audience-section {
        padding: 2rem 0;
    }
    
    .audience-section .section-header {
        margin-bottom: 1.5rem;
    }
    
    .stats-grid-with-images {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .features-grid,
    .stats-grid-with-images,
    .ad-ops-grid {
        grid-template-columns: 1fr;
    }
    
    /* Audience section: keep two columns when layout drops down (tablet/small mobile) */
    .audience-section .stats-grid-with-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-content h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-container {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-social-wrapper h4 {
        margin-bottom: 0;
    }
    
    .footer-social {
        gap: 0.4rem;
    }

    /* Hero Video – no text/CTA on mobile, keep volume button */
    .hero-video-content {
        display: none;
    }

    /* Client Slider */
    .client-slider-container {
        padding: 0 2.5rem;
    }
    .client-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .client-slider-prev {
        left: -0.5rem;
    }
    .client-slider-next {
        right: -0.5rem;
    }
    .client-slide {
        min-width: 120px;
        min-height: 120px;
        padding: 0.75rem;
    }
    .client-slide img {
        max-width: 120px;
        max-height: 120px;
    }

    /* Next On Stage */
    .nos-intro-content h2 {
        font-size: 1.5rem;
    }
    .nos-intro-content p {
        font-size: 1rem;
    }
    .nos-subsection h3 {
        font-size: 1.2rem;
    }
    .nos-sponsorship-block {
        padding: 1.5rem;
    }
    .nos-opportunities-grid {
        grid-template-columns: 1fr;
    }
    .nos-opp-card-wide {
        grid-column: 1;
    }
    .nos-elements-list {
        grid-template-columns: 1fr;
    }

    /* NOS Gallery */
    .nos-gallery-container {
        padding: 0 2.5rem;
    }
    .nos-gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .nos-gallery-prev {
        left: -0.5rem;
    }
    .nos-gallery-next {
        right: -0.5rem;
    }
    .nos-gallery-caption {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
        flex: 0 0 auto;
        min-height: 0;
    }
    .nos-gallery-track {
        align-items: flex-start;
    }
}