/* ====================================
   NEWS HERO BLOCK - Home Page Only
   ==================================== */

.news-hero-block {
    width: 100%;
    background: linear-gradient(90deg, #2DD4BF 0%, #5EEAD4 100%);
    position: relative;
    overflow: hidden;
}

.news-hero-block.hidden {
    display: none;
}

.news-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.news-hero-content {
    display: flex;
    flex-direction: column;
}

.news-hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0A1F3D;
    background: rgba(10, 31, 61, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 16px;
}

.news-hero-label.active {
    color: #0A1F3D;
    background: #2DD4BF;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
    animation: news-label-pulse 2.4s ease-in-out infinite;
}

@keyframes news-label-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25); }
    50%      { box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.15); }
}

.news-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #0A1F3D;
    line-height: 1.2;
    margin-bottom: 16px;
}

.news-hero-description {
    font-size: 17px;
    color: #1A2332;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 16px;
}

.news-hero-end-date {
    font-size: 14px;
    color: #0A1F3D;
    opacity: 0.7;
    margin-bottom: 32px;
}

.news-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #0A1F3D;
    color: #FBFBFB;
    text-decoration: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
}

.news-hero-button:hover {
    background: #1A2332;
}

.news-hero-button:hover .arrow {
    transform: translateX(2px);
}

.news-hero-button .arrow {
    transition: transform 0.3s ease;
}

.news-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-hero-image-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
}

.news-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(10, 31, 61, 0.15);
    display: block;
}

/* Fallback: Single Column when no image */
.news-hero-container.no-image {
    grid-template-columns: 1fr;
    text-align: center;
}

.news-hero-container.no-image .news-hero-content {
    align-items: center;
}

.news-hero-container.no-image .news-hero-description {
    max-width: 640px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .news-hero-container {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        gap: 24px;
    }
    
    .news-hero-image-wrapper {
        order: -1;
        width: 100%;
        height: 280px;
        min-height: 280px;
        max-height: 280px;
        margin-bottom: 8px;
    }
    
    .news-hero-title {
        font-size: 28px;
    }
    
    .news-hero-description {
        font-size: 16px;
    }
    
    .news-hero-button {
        width: 100%;
        justify-content: center;
    }
}
