:root {
    --pengumuman-navy: #18213a;
    --pengumuman-yellow: #efb12c;
    --pengumuman-ink: #26324b;
    --pengumuman-muted: #6d7688;
    --pengumuman-line: #e8ebf0;
}

body.page-pengumuman,
body.page-pengumuman #wrapper {
    background: #f8f9fb;
}

.page-pengumuman #content {
    padding-top: 0;
    background: #f8f9fb;
}

.page-pengumuman .orasi-page-banner {
    position: relative;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0f1322;
}

.page-pengumuman .orasi-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--orasi-page-banner-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
}

.page-pengumuman .orasi-page-banner-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0f1322;
    pointer-events: none;
}

.page-pengumuman .orasi-page-banner-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100%;
    border: 0;
    opacity: .72;
    filter: brightness(.58) saturate(.95) contrast(1.03);
    transform: translate(-50%, -50%) scale(1.08);
}

.page-pengumuman .orasi-page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15, 19, 34, .84) 0%, rgba(15, 19, 34, .7) 45%, rgba(15, 19, 34, .9) 100%),
        radial-gradient(circle at top left, rgba(246, 178, 52, .12), transparent 28%);
}

.page-pengumuman .orasi-page-banner-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: calc(var(--orasi-header-height, 78px) + 78px) 0 78px;
}

.page-pengumuman .orasi-page-banner-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.page-pengumuman .orasi-page-banner-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.6rem, 4.4vw, 4.2rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.page-pengumuman .orasi-page-banner-copy {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.05rem;
    line-height: 1.75;
}

.pengumuman-heading {
    padding: 86px 0 70px;
    background:
        radial-gradient(circle at 86% 14%, rgba(239, 177, 44, .22), transparent 30%),
        linear-gradient(135deg, #121a30 0%, #1d2947 100%);
    color: #fff;
}

.pengumuman-heading h1,
.pengumuman-detail-hero h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.pengumuman-heading p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 1.08rem;
}

.pengumuman-search {
    display: flex;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.pengumuman-search input {
    min-width: 0;
    flex: 1;
    padding: 12px 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
}

.pengumuman-search input::placeholder { color: rgba(255, 255, 255, .58); }

.pengumuman-search button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: var(--pengumuman-yellow);
    color: var(--pengumuman-navy);
}

.pengumuman-filter-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(239, 177, 44, .3);
    background: rgba(239, 177, 44, .1);
    color: var(--pengumuman-ink);
}

.pengumuman-filter-active a { color: #8a5b06; text-decoration: underline; }

.pengumuman-list-section { padding: 76px 0 90px !important; }

.orasi-home-pengumuman-section {
    background: #f8f9fb;
}

.pengumuman-list-section .container {
    position: relative;
    margin-top: 0;
}

.pengumuman-card {
    overflow: hidden;
    border: 1px solid var(--pengumuman-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(24, 33, 58, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.pengumuman-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(24, 33, 58, .14);
}

.pengumuman-card-media,
.pengumuman-detail-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9edf4;
}

.pengumuman-card-media img,
.pengumuman-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.pengumuman-card:hover .pengumuman-card-media img { transform: scale(1.04); }

.pengumuman-cover-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .25), transparent 30%),
        linear-gradient(135deg, #efb12c, #d9901c);
    color: rgba(24, 33, 58, .82);
    font-size: 3rem;
}

.pengumuman-pin {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--pengumuman-yellow);
    color: var(--pengumuman-navy);
    font-size: .75rem;
    font-weight: 800;
}

.pengumuman-card-body { padding: 25px 26px 28px; }

.pengumuman-date,
.pengumuman-detail-meta {
    color: var(--pengumuman-muted);
    font-size: .84rem;
    font-weight: 600;
}

.pengumuman-card h2,
.pengumuman-card h3 {
    margin: 10px 0 12px;
    font-size: 1.3rem;
    line-height: 1.32;
}

.pengumuman-card h2 a,
.pengumuman-card h3 a { color: var(--pengumuman-navy); }
.pengumuman-card h2 a:hover,
.pengumuman-card h3 a:hover { color: #c77f08; }

.pengumuman-card--featured .pengumuman-card-body {
    padding: 32px 36px 36px;
}

.pengumuman-card--featured h2 {
    max-width: 720px;
    margin-top: 12px;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.pengumuman-card--featured .pengumuman-read-more {
    margin-top: 10px;
}

.pengumuman-card p {
    margin-bottom: 17px;
    color: var(--pengumuman-muted);
    line-height: 1.7;
}

.pengumuman-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.pengumuman-tags a {
    padding: 5px 10px;
    border: 1px solid rgba(239, 177, 44, .35);
    border-radius: 999px;
    background: rgba(239, 177, 44, .1);
    color: #8a5b06;
    font-size: .76rem;
    font-weight: 700;
}

.pengumuman-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--pengumuman-navy);
    font-weight: 800;
}

.pengumuman-pagination .pagination { justify-content: center; gap: 6px; }
.pengumuman-pagination .page-link { border-radius: 10px !important; color: var(--pengumuman-navy); }
.pengumuman-pagination .active > .page-link { border-color: var(--pengumuman-yellow); background: var(--pengumuman-yellow); color: var(--pengumuman-navy); }

.pengumuman-empty {
    padding: 80px 24px;
    border: 1px solid var(--pengumuman-line);
    border-radius: 24px;
    background: #fff;
    text-align: center;
}

.pengumuman-empty > i { margin-bottom: 18px; color: var(--pengumuman-yellow); font-size: 3rem; }
.pengumuman-empty h2 { color: var(--pengumuman-navy); }

.pengumuman-detail-hero {
    padding: 82px 0 100px;
    background:
        radial-gradient(circle at 12% 30%, rgba(239, 177, 44, .18), transparent 28%),
        linear-gradient(135deg, #121a30 0%, #1d2947 100%);
}

.pengumuman-detail-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }

.pengumuman-detail-meta { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255, 255, 255, .7); }

.pengumuman-detail-cover {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
}

.pengumuman-detail-title {
    max-width: 1180px;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(2rem, 3.6vw, 3.6rem) !important;
    line-height: 1.12 !important;
}

.pengumuman-detail-content { padding: 76px 0 75px; }

.pengumuman-article {
    position: relative;
    margin-top: 0;
    padding: clamp(25px, 5vw, 58px);
    border: 1px solid var(--pengumuman-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(24, 33, 58, .09);
}

.pengumuman-lead {
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--pengumuman-line);
    color: var(--pengumuman-ink);
    font-size: 1.24rem;
    font-weight: 600;
    line-height: 1.75;
}

.pengumuman-rich-content { color: #414b5e; font-size: 1.04rem; line-height: 1.85; }
.pengumuman-rich-content h1,
.pengumuman-rich-content h2,
.pengumuman-rich-content h3,
.pengumuman-rich-content h4 { margin-top: 1.5em; margin-bottom: .65em; color: var(--pengumuman-navy); }
.pengumuman-rich-content p { margin-bottom: 1.25em; }
.pengumuman-rich-content img { display: block; max-width: 100% !important; height: auto !important; margin: 28px auto; border-radius: 16px; }
.pengumuman-rich-content table { width: 100%; margin: 24px 0; border-collapse: collapse; }
.pengumuman-rich-content th,
.pengumuman-rich-content td { padding: 10px 12px; border: 1px solid #dfe3ea; }
.pengumuman-rich-content blockquote { margin: 24px 0; padding: 10px 0 10px 22px; border-left: 4px solid var(--pengumuman-yellow); color: #5d6677; }

.pengumuman-back { padding: 26px 8px 0; }
.pengumuman-back a { color: var(--pengumuman-navy); font-weight: 800; }

.pengumuman-related { padding-bottom: 95px; }
.pengumuman-section-title { margin-bottom: 30px; }
.pengumuman-section-title h2 { color: var(--pengumuman-navy); }

@media (max-width: 991.98px) {
    .page-pengumuman #content { padding-top: 0; }
    .pengumuman-heading { padding: 62px 0 64px; }
    .pengumuman-detail-hero { padding: 60px 0 88px; }
}

@media (max-width: 575.98px) {
    .page-pengumuman #content { padding-top: 0; }
    .page-pengumuman .orasi-page-banner { min-height: 300px; }
    .page-pengumuman .orasi-page-banner-shell { padding: calc(var(--orasi-header-height, 58px) + 48px) 0 48px; }
    .page-pengumuman .orasi-page-banner-title { font-size: clamp(2rem, 10vw, 2.7rem); }
    .page-pengumuman .orasi-page-banner-copy { font-size: .95rem; line-height: 1.65; }
    .pengumuman-heading h1 { font-size: 2.5rem; }
    .pengumuman-card-body { padding: 22px 21px 25px; }
    .pengumuman-card--featured .pengumuman-card-body { padding: 24px 22px 28px; }
    .pengumuman-detail-content { padding-top: 48px; }
    .pengumuman-article { margin-top: 0; border-radius: 19px; }
}
