@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

.hero.announcements-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #E8B923, #F0C850);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2B4B9F;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #E8B923, #F0C850);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 2"><path d="M0 1c10-1.5 20 1.5 30 0s20-1.5 30 0 20 1.5 30 0 20-1.5 30 0" stroke="%23E8B923" stroke-width="2" fill="none"/></svg>');
    background-size: cover;
}

.announcements {
    padding: 100px 20px;
    background: linear-gradient(180deg, #F9FAFB 0%, #E9EFFE 100%);
}

.announcements-placeholder {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(232, 185, 35, 0.2);
    transition: all 0.4s ease;
}

.announcements-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(232, 185, 35, 0.4);
}

.announcements-placeholder i {
    font-size: 2.8rem;
    color: #E8B923;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.announcements-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2B4B9F;
    margin-bottom: 15px;
}

.announcements-placeholder p {
    font-size: 1.3rem;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
}

.announcements-placeholder .btn {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero.announcements-hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::before {
        width: 60px;
    }

    .section-title::after {
        width: 100px;
    }

    .announcements {
        padding: 60px 15px;
    }

    .announcements-placeholder {
        padding: 30px;
    }

    .announcements-placeholder h3 {
        font-size: 1.6rem;
    }

    .announcements-placeholder p {
        font-size: 1.1rem;
    }

    .announcements-placeholder i {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .announcements-placeholder h3 {
        font-size: 1.4rem;
    }

    .announcements-placeholder p {
        font-size: 1rem;
    }

    .announcements-placeholder i {
        font-size: 2rem;
    }
}