/* Featured Story Full Bleed Styles */

.featured-story-full-bleed {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.full-bleed-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.full-bleed-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.full-bleed-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.full-bleed-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: max(6vw, 80px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

.story-text {
    max-width: 600px;
    text-align: center;
}

.story-text a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.story-text a:hover {
    transform: translateY(-2px);
}

.story-text a:hover h2,
.story-text a:hover h3,
.story-text a:hover p {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.story-text h2 {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.story-text h3 {
    font-family: var(--serif-font);
    color: white;
    font-size: calc(20px * 1.23); /* 20px * 1.23 = 24.6px - scaled for serif font */
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.story-text .story-meta {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.story-text .story-meta i {
    color: white;
}

/* Full-bleed footer elements */
.full-bleed-footer {
    position: absolute;
    bottom: 2vw;
    left: 2vw;
    right: 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.full-bleed-footer .footer-logo {
    width: 40px;
    height: 40px;
}

.full-bleed-footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.full-bleed-footer .copyright {
    font-size: 12px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Header overlay styles for full-bleed section */
.site-header.over-full-bleed {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    transition: all 0.3s ease !important;
}

.site-header.over-full-bleed .site-title {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

.site-header.over-full-bleed .site-title .subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.site-header.over-full-bleed .main-nav a {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

.site-header.over-full-bleed .main-nav a:hover,
.site-header.over-full-bleed .main-nav a.active {
    color: #39e58f !important;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .full-bleed-content {
        padding: 2rem;
        padding-bottom: 4vw;
    }
    
    .story-text {
        max-width: 100%;
    }
    
    .story-text h2 {
        margin-bottom: 1rem;
    }
    
    .story-text h3 {
        margin-bottom: 1.5rem;
    }

    .full-bleed-footer .footer-logo {
        width: 35px;
        height: 35px;
    }

    .full-bleed-footer .copyright {
        display: none;
    }
}

@media (max-width: 480px) {
    .full-bleed-content {
        padding: 1.5rem;
        padding-bottom: 4vw;
    }
    
    .story-text h2 {
        margin-bottom: 0.75rem;
    }
    
    .story-text h3 {
        margin-bottom: 1rem;
    }
}
