/* =========================================================
   PENGUMUMAN PAGE VARIABLES
========================================================= */
:root {
    --color1: #1F3B5D;
    --color2: #FBD405;

    --announcement-white: #ffffff;
    --announcement-blue-dark: #06124D;
    --announcement-blue-mid: #082475;
    --announcement-blue-bright: #0862F4;
    --announcement-text-soft: rgba(255, 255, 255, 0.86);
    --announcement-border: rgba(255, 255, 255, 0.24);
}

/* =========================================================
   ANNOUNCEMENT HERO SECTION
========================================================= */
.announcement-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(120deg, #06124D 0%, #082579 38%, #0755E6 76%, #06124D 100%);
    color: var(--announcement-white);
}

.announcement-hero-inner {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 92px 0 0;
}

.announcement-hero-row {
    position: relative;
    z-index: 2;
    min-height: 668px;
}

.announcement-hero-content {
    position: relative;
    z-index: 6;
    height: 100%;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 76px 92px;
}

.announcement-hero-badge {
    width: fit-content;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 26px;
    margin-bottom: 48px;
    border: 2px solid var(--announcement-border);
    border-radius: 999px;
    background: rgba(8, 98, 244, 0.18);
    color: var(--color2);
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    animation: announcementBadgeFloat 3.8s ease-in-out infinite;
}

.announcement-hero-badge i {
    color: var(--announcement-white);
    font-size: 23px;
}

.announcement-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--announcement-white);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -2px;
}

.announcement-hero h1 span {
    color: var(--color2);
}

.announcement-hero-line {
    width: 106px;
    height: 6px;
    margin: 34px 0 34px;
    border-radius: 999px;
    background: var(--color2);
}

.announcement-hero p {
    max-width: 690px;
    margin: 0;
    color: var(--announcement-text-soft);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.announcement-hero-visual {
    position: relative;
    z-index: 4;
    height: 100%;
    min-height: 668px;
}

.announcement-hero-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    max-width: 900px;
    width: auto;
    object-fit: contain;
    transform-origin: bottom right;
    filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.28));
    transition: transform 0.45s ease;
}

.announcement-hero-visual:hover .announcement-hero-img {
    transform: translateY(-7px) scale(1.018);
}

/* =========================================================
   ANNOUNCEMENT HERO ANIMATION
========================================================= */
.announcement-hero .fade-up {
    opacity: 0;
    animation: announcementFadeUp 0.85s ease forwards;
}

.announcement-hero .delay-1 {
    animation-delay: 0.18s;
}

@keyframes announcementFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes announcementBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* =========================================================
   ANNOUNCEMENT HERO RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .announcement-hero-inner {
        min-height: 710px;
        padding-top: 82px;
    }

    .announcement-hero-row {
        min-height: 628px;
    }

    .announcement-hero-content {
        padding-left: 72px;
        padding-bottom: 66px;
    }

    .announcement-hero h1 {
        font-size: 62px;
    }

    .announcement-hero p {
        font-size: 23px;
    }

    .announcement-hero-img {
        max-width: 800px;
    }
}

@media (max-width: 1199.98px) {
    .announcement-hero-inner {
        min-height: 660px;
        padding-top: 74px;
    }

    .announcement-hero-row {
        min-height: 586px;
    }

    .announcement-hero-content {
        padding-left: 52px;
        padding-bottom: 56px;
    }

    .announcement-hero-badge {
        min-height: 48px;
        margin-bottom: 34px;
        font-size: 17px;
    }

    .announcement-hero h1 {
        font-size: 52px;
    }

    .announcement-hero p {
        font-size: 20px;
    }

    .announcement-hero-img {
        max-width: 690px;
    }
}

@media (max-width: 991.98px) {
    .announcement-hero-inner {
        min-height: auto;
        padding: 64px 0 0;
    }

    .announcement-hero-row {
        min-height: auto;
    }

    .announcement-hero-content {
        max-width: 760px;
        height: auto;
        margin: 0 auto;
        padding: 0 24px 34px;
        text-align: center;
        align-items: center;
    }

    .announcement-hero-badge,
    .announcement-hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .announcement-hero h1 {
        font-size: 48px;
    }

    .announcement-hero p {
        max-width: 650px;
        font-size: 18px;
    }

    .announcement-hero-visual {
        min-height: 520px;
        height: 520px;
    }

    .announcement-hero-img {
        left: 50%;
        right: auto;
        bottom: 0;
        max-height: 100%;
        max-width: 620px;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .announcement-hero-visual:hover .announcement-hero-img {
        transform: translateX(-50%) translateY(-6px) scale(1.018);
    }
}

@media (max-width: 767.98px) {
    .announcement-hero-inner {
        padding-top: 48px;
    }

    .announcement-hero-badge {
        min-height: 42px;
        gap: 10px;
        padding: 8px 18px;
        margin-bottom: 26px;
        font-size: 14px;
    }

    .announcement-hero-badge i {
        font-size: 18px;
    }

    .announcement-hero h1 {
        font-size: 38px;
        line-height: 1.16;
        letter-spacing: -0.8px;
    }

    .announcement-hero-line {
        width: 78px;
        height: 5px;
        margin: 24px auto;
    }

    .announcement-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .announcement-hero-visual {
        min-height: 420px;
        height: 420px;
    }

    .announcement-hero-img {
        max-width: 510px;
    }
}

@media (max-width: 575.98px) {
    .announcement-hero-inner {
        padding-top: 40px;
    }

    .announcement-hero h1 {
        font-size: 32px;
    }

    .announcement-hero p {
        font-size: 14.5px;
    }

    .announcement-hero-visual {
        min-height: 340px;
        height: 340px;
    }

    .announcement-hero-img {
        max-width: 415px;
    }
}

/* =========================================================
   ANNOUNCEMENT MAIN SECTION
========================================================= */
.announcement-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 34px 28px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.announcement-main-wrap {
    display: grid;
    grid-template-columns: 315px 1fr;
    gap: 34px;
    width: 100%;
}

.announcement-sidebar {
    position: relative;
    min-height: 840px;
    padding: 32px 24px;
    border: 1px solid rgba(8, 98, 244, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.announcement-search-box h3,
.announcement-category-box h3 {
    margin: 0 0 18px;
    color: var(--announcement-blue-dark);
    font-size: 18px;
    font-weight: 900;
}

.announcement-search-input {
    height: 52px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(31, 59, 93, 0.12);
    border-radius: 10px;
    background: var(--announcement-white);
    transition: all 0.35s ease;
}

.announcement-search-input:hover,
.announcement-search-input:focus-within {
    border-color: var(--announcement-blue-bright);
    box-shadow: 0 12px 28px rgba(8, 98, 244, 0.10);
}

.announcement-search-input i {
    color: #7a86a4;
    font-size: 16px;
}

.announcement-search-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--announcement-blue-dark);
    font-size: 14px;
    font-weight: 600;
}

.announcement-search-input input::placeholder {
    color: #9aa5bf;
}

.announcement-category-box {
    margin-top: 42px;
}

.announcement-category {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(31, 59, 93, 0.08);
    border-radius: 9px;
    background: var(--announcement-white);
    color: #536180;
    text-decoration: none;
    transition: all 0.35s ease;
}

.announcement-category span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
}

.announcement-category i {
    color: var(--announcement-blue-bright);
    font-size: 16px;
}

.announcement-category strong {
    min-width: 28px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf5ff;
    color: var(--announcement-blue-bright);
    font-size: 12px;
    font-weight: 900;
}

.announcement-category.active,
.announcement-category:hover {
    background: #eaf3ff;
    color: var(--announcement-blue-bright);
    transform: translateX(5px);
    text-decoration: none;
}

.announcement-notif-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 34px;
    padding: 24px 18px 20px;
    border: 1px solid rgba(8, 98, 244, 0.12);
    border-radius: 12px;
    background: linear-gradient(135deg, #edf5ff 0%, #ffffff 100%);
}

.announcement-notif-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff4c7;
    color: var(--color2);
    font-size: 30px;
    animation: announcementBellRing 2.6s ease-in-out infinite;
}

.announcement-notif-card h4 {
    margin: 0 0 8px;
    color: var(--announcement-blue-dark);
    font-size: 17px;
    font-weight: 900;
}

.announcement-notif-card p {
    margin: 0 0 20px;
    color: #536180;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.announcement-notif-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1.5px solid rgba(8, 98, 244, 0.45);
    border-radius: 7px;
    color: var(--announcement-blue-bright);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.announcement-notif-btn:hover {
    color: var(--announcement-white);
    background: var(--announcement-blue-bright);
    text-decoration: none;
    transform: translateY(-4px);
}

.announcement-content {
    min-width: 0;
}

.announcement-content-head {
    margin-bottom: 26px;
}

.announcement-content-head h2 {
    margin: 0 0 8px;
    color: var(--announcement-blue-dark);
    font-size: 24px;
    font-weight: 900;
}

.announcement-content-head p {
    margin: 0;
    color: #536180;
    font-size: 14px;
    font-weight: 600;
}

.announcement-featured {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(251, 212, 5, 0.38);
    border-radius: 13px;
    background: linear-gradient(135deg, #fff9df 0%, #fffef6 100%);
    transition: all 0.35s ease;
}

.announcement-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(31, 59, 93, 0.12);
}

.announcement-featured-visual {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-featured-visual::before {
    content: "";
    position: absolute;
    left: 34px;
    bottom: -54px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(251, 212, 5, 0.42);
}

.announcement-featured-visual img {
    position: relative;
    z-index: 2;
    width: 215px;
    max-width: 86%;
    filter: drop-shadow(0 18px 28px rgba(31, 59, 93, 0.18));
    transition: transform 0.45s ease;
}

.announcement-featured:hover .announcement-featured-visual img {
    transform: scale(1.06) rotate(-3deg);
}

.announcement-featured-content {
    padding: 26px 34px;
}

.announcement-label {
    width: fit-content;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--color2);
    color: var(--color1);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.announcement-featured-content h3,
.announcement-item-body h3 {
    margin: 0 0 12px;
    color: var(--announcement-blue-dark);
    font-weight: 900;
    line-height: 1.25;
}

.announcement-featured-content h3 {
    font-size: 26px;
}

.announcement-featured-content a,
.announcement-item-body a {
    text-decoration: none !important;
}

.announcement-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    color: #6f7b99;
    font-size: 13px;
    font-weight: 700;
}

.announcement-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.announcement-featured-content p,
.announcement-item-body p {
    margin: 0;
    color: #536180;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.55;
}

.announcement-featured-content p {
    max-width: 780px;
    margin-bottom: 18px;
}

.announcement-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    border-radius: 7px;
    background: var(--announcement-blue-bright);
    color: var(--announcement-white);
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.announcement-btn:hover {
    color: var(--announcement-white);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(8, 98, 244, 0.22);
    text-decoration: none;
}

.announcement-list {
    display: grid;
    gap: 14px;
}

.announcement-item {
    display: grid;
    grid-template-columns: 68px 1fr 150px;
    align-items: center;
    gap: 20px;
    min-height: 104px;
    padding: 18px 26px 18px 20px;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 12px;
    background: var(--announcement-white);
    box-shadow: 0 12px 30px rgba(31, 59, 93, 0.05);
    transition: all 0.35s ease;
}

.announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(31, 59, 93, 0.10);
}

.announcement-item-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 30px;
}

.announcement-item-icon.blue {
    background: #eaf3ff;
    color: var(--announcement-blue-bright);
}

.announcement-item-icon.green {
    background: #eaf8e4;
    color: #45aa36;
}

.announcement-item-icon.purple {
    background: #efe8ff;
    color: #7958e8;
}

.announcement-item-icon.orange {
    background: #fff0df;
    color: #ff8737;
}

.announcement-item-body h3 {
    font-size: 18px;
}

.announcement-item-body .announcement-meta {
    margin-bottom: 8px;
}

.announcement-item-action {
    display: grid;
    justify-items: end;
    gap: 28px;
}

.announcement-item-action span {
    color: #7d89a5;
    font-size: 14px;
    font-weight: 700;
}

.announcement-item-action a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--announcement-blue-bright);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.announcement-item-action a:hover {
    gap: 14px;
    text-decoration: none;
}

/* Animation */
.announcement-main .fade-up {
    opacity: 0;
    animation: announcementMainFadeUp 0.85s ease forwards;
}

.announcement-main .delay-1 {
    animation-delay: 0.16s;
}

@keyframes announcementMainFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes announcementBellRing {
    0%, 100% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(8deg);
    }

    30% {
        transform: rotate(-8deg);
    }

    45% {
        transform: rotate(5deg);
    }

    60% {
        transform: rotate(0);
    }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .announcement-main-wrap {
        grid-template-columns: 280px 1fr;
        gap: 24px;
    }

    .announcement-featured {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 991.98px) {
    .announcement-main {
        padding: 24px 18px;
    }

    .announcement-main-wrap {
        grid-template-columns: 1fr;
    }

    .announcement-content {
        order: 1;
    }

    .announcement-sidebar {
        order: 2;
        min-height: auto;
    }

    .announcement-notif-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 24px;
    }

    .announcement-featured {
        grid-template-columns: 1fr;
    }

    .announcement-featured-content {
        text-align: center;
    }

    .announcement-label,
    .announcement-meta {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .announcement-item {
        grid-template-columns: 64px 1fr;
    }

    .announcement-item-action {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        border-top: 1px solid rgba(8, 98, 244, 0.10);
        padding-top: 14px;
    }
}

@media (max-width: 767.98px) {
    .announcement-main {
        padding: 18px 12px;
    }

    .announcement-sidebar,
    .announcement-featured,
    .announcement-item {
        border-radius: 14px;
    }

    .announcement-content-head {
        text-align: center;
    }

    .announcement-featured-content {
        padding: 24px 18px;
    }

    .announcement-featured-content h3 {
        font-size: 22px;
    }

    .announcement-item {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 20px 16px;
    }

    .announcement-item-icon {
        margin: 0 auto;
    }

    .announcement-item-body .announcement-meta {
        justify-content: center;
    }
}

/* =========================================================
   ANNOUNCEMENT SHOW HERO
========================================================= */
.announcement-show-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(120deg, #06124D 0%, #082579 42%, #0755E6 78%, #086BFF 100%);
    color: var(--announcement-white);
}

.announcement-show-hero-inner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 110px 92px 92px;
}

.announcement-show-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

.announcement-show-badge {
    width: fit-content;
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 28px 10px 12px;
    margin-bottom: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--announcement-blue-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    animation: announcementBadgeFloat 3.8s ease-in-out infinite;
}

.announcement-show-badge i {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--announcement-blue-dark);
    font-size: 25px;
}

.announcement-show-content h1 {
    max-width: 1260px;
    margin: 0;
    color: var(--announcement-white);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -2px;
}

.announcement-show-content p {
    max-width: 1160px;
    margin: 32px 0 0;
    color: var(--announcement-text-soft);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1399.98px) {
    .announcement-show-hero-inner {
        min-height: 520px;
        padding: 96px 72px 82px;
    }

    .announcement-show-content h1 {
        font-size: 48px;
    }

    .announcement-show-content p {
        font-size: 18px;
    }
}

@media (max-width: 1199.98px) {
    .announcement-show-hero-inner {
        min-height: 480px;
        padding: 86px 52px 72px;
    }

    .announcement-show-content h1 {
        font-size: 48px;
    }

    .announcement-show-badge {
        min-height: 56px;
        margin-bottom: 34px;
        font-size: 20px;
    }

    .announcement-show-badge i {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }
}

@media (max-width: 991.98px) {
    .announcement-show-hero-inner {
        min-height: auto;
        padding: 76px 28px 70px;
        text-align: center;
        justify-content: center;
    }

    .announcement-show-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .announcement-show-content h1 {
        font-size: 46px;
    }

    .announcement-show-content p {
        margin-top: 24px;
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .announcement-show-hero-inner {
        padding: 60px 18px 56px;
    }

    .announcement-show-badge {
        min-height: 46px;
        gap: 10px;
        padding: 8px 18px 8px 8px;
        margin-bottom: 28px;
        font-size: 15px;
    }

    .announcement-show-badge i {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .announcement-show-content h1 {
        font-size: 35px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .announcement-show-content p {
        font-size: 15.5px;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    .announcement-show-content h1 {
        font-size: 29px;
    }

    .announcement-show-content p {
        font-size: 14.5px;
    }
}

/* =========================================================
   ANNOUNCEMENT SHOW CONTENT
========================================================= */
.announcement-show-main {
    width: 100%;
    padding: 34px 28px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.announcement-show-content-wrap {
    width: 100%;
}

.announcement-detail-card {
    overflow: hidden;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 14px;
    background: var(--announcement-white);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.announcement-detail-head {
    padding: 42px 48px 44px;
    border-bottom: 1px solid rgba(251, 212, 5, 0.26);
    background: linear-gradient(135deg, #fff9df 0%, #fffef6 100%);
}

.announcement-detail-head h2 {
    max-width: 1180px;
    margin: 22px 0 20px;
    color: var(--announcement-blue-dark);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.25;
}

.announcement-detail-body {
    padding: 34px 48px 28px;
}

.announcement-detail-body p,
.announcement-detail-body li {
    color: #536180;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.announcement-detail-body h3 {
    margin: 26px 0 8px;
    color: var(--announcement-blue-dark);
    font-size: 18px;
    font-weight: 900;
}

.announcement-detail-body ul {
    margin: 12px 0 24px;
    padding-left: 22px;
}

.announcement-detail-body li::marker {
    color: var(--color2);
}

.announcement-attachment {
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid rgba(8, 98, 244, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
}

.announcement-attachment h4 {
    margin: 0 0 16px;
    color: var(--announcement-blue-dark);
    font-size: 14px;
    font-weight: 900;
}

.announcement-attachment-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 16px;
}

.announcement-attachment-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffe8e8;
    color: #e73333;
    font-size: 22px;
}

.announcement-attachment-item h5 {
    margin: 0 0 4px;
    color: var(--announcement-blue-dark);
    font-size: 15px;
    font-weight: 800;
}

.announcement-attachment-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
}

.announcement-download-btn,
.announcement-back-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1.5px solid rgba(8, 98, 244, 0.34);
    border-radius: 7px;
    background: var(--announcement-white);
    color: var(--announcement-blue-bright);
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.announcement-download-btn:hover,
.announcement-back-btn:hover {
    color: var(--announcement-white);
    background: var(--announcement-blue-bright);
    border-color: var(--announcement-blue-bright);
    transform: translateY(-4px);
    text-decoration: none;
}

.announcement-back {
    padding-top: 18px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .announcement-show-main {
        padding: 24px 18px;
    }

    .announcement-detail-head,
    .announcement-detail-body {
        padding-left: 28px;
        padding-right: 28px;
    }

    .announcement-detail-head h2 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .announcement-show-main {
        padding: 18px 12px;
    }

    .announcement-detail-head,
    .announcement-detail-body {
        padding: 24px 18px;
    }

    .announcement-detail-head h2 {
        font-size: 24px;
    }

    .announcement-attachment-item {
        grid-template-columns: 42px 1fr;
    }

    .announcement-download-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .announcement-back-btn {
        width: 100%;
    }
}