        :root {
            --primary-accent: #C07A3E;
            --primary-accent-hover: #A4632E;
            --bg-cream: #FCF8F5;
            --text-dark: #2C2623;
            --text-muted: #7E716A;
            --border-tan: #EBDCD2;
            --card-shadow: 0 10px 30px rgba(192, 122, 62, 0.06);
            --card-shadow-hover: 0 15px 40px rgba(192, 122, 62, 0.12);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .announcements-wrapper {
            width: 90%;
            max-width: 1600px;
            margin: 40px auto 80px;
        }

        /* -------------------------------------------------------------
           TOP SECTIONS (MAIN HIGHLIGHT & SIDEBAR LATEST)
           ------------------------------------------------------------- */
        .top-row-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 30px;
            margin-bottom: 40px;
        }

        @media (max-width: 1024px) {
            .top-row-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Highlight Card */
        .highlight-card {
            background: #FFFFFF;
            border: 1px solid var(--border-tan);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--card-shadow);
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 30px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .highlight-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--card-shadow-hover);
        }

        @media (max-width: 640px) {
            .highlight-card {
                grid-template-columns: 1fr;
                padding: 24px;
                gap: 20px;
            }
        }

        .highlight-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .highlight-header-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .badge-icon-wrap {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #FFF5EE;
            border: 1px solid var(--border-tan);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-accent);
            font-size: 16px;
        }

        .badge-pill-text {
            background: var(--primary-accent);
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .highlight-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.35;
            margin: 0 0 12px 0;
            color: var(--text-dark);
        }

        .highlight-summary {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--text-muted);
            margin: 0 0 20px 0;
        }

        .highlight-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .highlight-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-highlight-action {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-accent);
            color: #FFFFFF;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 13.5px;
            font-weight: 600;
            text-decoration: none;
            width: fit-content;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .btn-highlight-action:hover {
            background: var(--primary-accent-hover);
            transform: translateX(3px);
        }

        .highlight-right {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            min-height: 200px;
        }

        .highlight-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .highlight-img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0) 100%);
        }

        @media (max-width: 640px) {
            .highlight-img-overlay {
                background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 100%);
            }
            .highlight-right {
                min-height: 180px;
            }
        }

        /* Sidebar Widget: Terbaru */
        .sidebar-widget-ann {
            background: #FFFFFF;
            border: 1px solid var(--border-tan);
            border-radius: 20px;
            padding: 24px;
            box-shadow: var(--card-shadow);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .widget-ann-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid #F7EFE9;
            padding-bottom: 14px;
        }

        .widget-ann-header-icon {
            color: var(--primary-accent);
            font-size: 18px;
        }

        .widget-ann-header-title {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            color: var(--text-dark);
        }

        .widget-ann-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .widget-ann-item {
            display: flex;
            gap: 12px;
            text-decoration: none;
            align-items: center;
        }

        .widget-ann-thumb-wrap {
            width: 54px;
            height: 54px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--border-tan);
        }

        .widget-ann-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .widget-ann-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .widget-ann-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }

        .widget-ann-item:hover .widget-ann-title {
            color: var(--primary-accent);
        }

        .widget-ann-date {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .widget-ann-footer {
            margin-top: 20px;
            border-top: 1px solid #F7EFE9;
            padding-top: 14px;
        }

        .widget-ann-more-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-accent);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease;
        }

        .widget-ann-more-link:hover {
            gap: 10px;
        }

        /* -------------------------------------------------------------
           MIDDLE FILTER BAR (TABS + SEARCH)
           ------------------------------------------------------------- */
        .filter-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-tab-btn {
            border: 1px solid var(--border-tan);
            background: #FFFFFF;
            color: var(--text-dark);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .filter-tab-btn:hover {
            background: #FDF9F6;
            border-color: var(--primary-accent);
            color: var(--primary-accent);
        }

        .filter-tab-btn.active {
            background: var(--primary-accent);
            border-color: var(--primary-accent);
            color: #FFFFFF;
        }

        .search-container {
            position: relative;
            width: 280px;
        }

        @media (max-width: 640px) {
            .search-container {
                width: 100%;
            }
        }

        .search-input {
            width: 100%;
            border: 1px solid var(--border-tan);
            background: #FFFFFF;
            border-radius: 30px;
            padding: 10px 40px 10px 18px;
            font-size: 13.5px;
            color: var(--text-dark);
            outline: none;
            box-sizing: border-box;
            font-family: inherit;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .search-input:focus {
            border-color: var(--primary-accent);
            box-shadow: 0 0 0 3px rgba(192, 122, 62, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            pointer-events: none;
        }

        /* -------------------------------------------------------------
           BOTTOM MAIN CONTENT (GRID + SIDEBAR WIDGETS)
           ------------------------------------------------------------- */
        .bottom-main-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 30px;
        }

        @media (max-width: 1024px) {
            .bottom-main-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Grid */
        .ann-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            align-content: start;
        }

        @media (max-width: 1240px) {
            .ann-grid {
                grid-template-columns: 1fr;
            }
        }

        .ann-card {
            background: #FFFFFF;
            border: 1px solid var(--border-tan);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            height: 180px;
            box-shadow: var(--card-shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .ann-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--card-shadow-hover);
        }

        @media (max-width: 576px) {
            .ann-card {
                flex-direction: column;
                height: auto;
            }
        }

        .ann-card-img-wrap {
            width: 40%;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            min-height: 120px;
        }

        @media (max-width: 576px) {
            .ann-card-img-wrap {
                width: 100%;
                height: 160px;
            }
        }

        .ann-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .ann-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary-accent);
            color: #FFFFFF;
            font-size: 9px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .ann-card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .ann-card-text-block {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .ann-card-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-dark);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }

        .ann-card:hover .ann-card-title {
            color: var(--primary-accent);
        }

        .ann-card-summary {
            font-size: 13px;
            line-height: 1.5;
            color: var(--text-muted);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .ann-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }

        .ann-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .ann-card-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .ann-card-arrow-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border-tan);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-accent);
            font-size: 11px;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
            text-decoration: none;
        }

        .ann-card:hover .ann-card-arrow-btn {
            background: var(--primary-accent);
            border-color: var(--primary-accent);
            color: #FFFFFF;
        }

        /* Sidebar Bottom Widgets */
        .bottom-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-self: start;
        }

        .tags-widget {
            background: #FFFFFF;
            border: 1px solid var(--border-tan);
            border-radius: 20px;
            padding: 24px;
            box-shadow: var(--card-shadow);
        }

        .tags-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            border-bottom: 1px solid #F7EFE9;
            padding-bottom: 12px;
        }

        .tags-header-icon {
            color: var(--primary-accent);
            font-size: 16px;
        }

        .tags-header-title {
            font-size: 15px;
            font-weight: 700;
            margin: 0;
            color: var(--text-dark);
        }

        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-pill {
            background: #FFF5EE;
            border: 1px solid var(--border-tan);
            color: var(--text-muted);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .tag-pill:hover, .tag-pill.active {
            background: var(--primary-accent);
            border-color: var(--primary-accent);
            color: #FFFFFF;
        }

        /* Empty State */
        .empty-state-wrap {
            background: #FFFFFF;
            border: 1px solid var(--border-tan);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--card-shadow);
            display: none;
        }

        .empty-state-icon {
            font-size: 40px;
            color: var(--text-muted);
            margin-bottom: 16px;
            opacity: 0.6;
        }

        .empty-state-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 8px 0;
        }

        .empty-state-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            margin: 0 0 20px 0;
        }

        .btn-clear-filter {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--primary-accent);
            color: var(--primary-accent);
            background: transparent;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 12.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-clear-filter:hover {
            background: var(--primary-accent);
            color: #FFFFFF;
        }

        /* Premium Pagination Styles */
        .ann-pagination-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
            width: 100%;
        }
        .ann-pag-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-tan, #EBDCD2);
            background: #fff;
            border-radius: 50%;
            color: var(--text-dark, #2C2623);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(192, 122, 62, 0.04);
            outline: none;
        }
        .ann-pag-btn:hover:not(:disabled) {
            background: #FFF5EE;
            border-color: var(--primary-accent);
            color: var(--primary-accent);
        }
        .ann-pag-btn.active {
            background: var(--primary-accent);
            color: #fff;
            border-color: var(--primary-accent);
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(192, 122, 62, 0.2);
        }
        .ann-pag-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            box-shadow: none;
        }
