.ann-page-hero {
    position: relative;
    padding: 100px 0 70px;
    background:
        linear-gradient(135deg, rgba(9, 90, 75, 0.93), rgba(0, 25, 97, 0.90)),
        url("../img/announcements-banner.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.ann-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%);
    pointer-events: none;
}

.ann-page-hero .container {
    position: relative;
    z-index: 2;
}

.ann-page-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.ann-page-hero__content h1 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.08;
    margin-bottom: 14px;
}

.ann-page-hero__content p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 650px;
    margin-bottom: 0;
    font-size: 1rem;
}

.ann-page-hero__meta {
    display: flex;
    justify-content: flex-end;
}

.ann-count-box {
    min-width: 220px;
    padding: 22px 22px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.ann-count-box__label {
    display: block;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-weight: 700;
}

.ann-count-box__value {
    display: block;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
    font-family: "Exo", sans-serif;
}

.ann-list-section {
    background: #f7f9fc;
    padding-top: 52px;
    padding-bottom: 70px;
}

.ann-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ann-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ann-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 44, 88, 0.08);
    border-color: #d9e4ee;
}

.ann-row--priority {
    border-left: 4px solid #f59e0b;
}

.ann-row__main {
    flex: 1 1 auto;
    min-width: 0;
}

.ann-row__top {
    margin-bottom: 10px;
}

.ann-row__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    background: #fff3e0;
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ann-row__label--normal {
    background: #ecfdf3;
    color: #067647;
}

.ann-row__text {
    color: #183247;
    font-size: 1.08rem;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 0;
}

.ann-row__subtext {
    margin-top: 10px;
    color: #667085;
    font-size: 0.96rem;
    line-height: 1.65;
}

.ann-row__action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.ann-empty-state {
    background: #fff;
    border: 1px solid #e8eef5;
    box-shadow: 0 10px 24px rgba(20, 44, 88, 0.05);
    padding: 56px 24px;
    text-align: center;
}

.ann-empty-state i {
    font-size: 2.4rem;
    color: #095a4b;
    display: inline-block;
    margin-bottom: 14px;
}

.ann-empty-state h3 {
    color: #095a4b;
    margin-bottom: 10px;
}

.ann-empty-state p {
    margin-bottom: 0;
    color: #667085;
}

body.theme-dark .ann-list-section {
    background: #121212;
}

body.theme-dark .ann-row,
body.theme-dark .ann-empty-state {
    background: #171717 !important;
    color: #d6deea !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 5px #55555559;
}

body.theme-dark .ann-row__text,
body.theme-dark .ann-empty-state h3 {
    color: #ededf3 !important;
}

body.theme-dark .ann-row__subtext,
body.theme-dark .ann-empty-state p {
    color: #c9d4e1 !important;
}

@media (max-width: 991.98px) {
    .ann-page-hero {
        padding: 86px 0 60px;
    }

    .ann-page-hero__content h1 {
        font-size: 2.4rem;
    }

    .ann-page-hero__meta {
        justify-content: flex-start;
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .ann-page-hero {
        padding: 74px 0 54px;
    }

    .ann-page-hero__content h1 {
        font-size: 2rem;
    }

    .ann-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ann-row__action {
        width: 100%;
    }

    .ann-row__action .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .ann-page-hero__content h1 {
        font-size: 1.8rem;
    }

    .ann-count-box {
        width: 100%;
    }

    .ann-row__text {
        font-size: 1rem;
    }
}