/* Berita Index — Hero */
.berita-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.berita-hero-content {
    padding-top: 2rem;
}
.batik-overlay {
    background-image: url('../../images/batik-pattern.png');
    background-size: 500px 500px;
    background-repeat: repeat;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

/* Berita Index — Section Pattern */
.berita-index-section {
    position: relative;
}
.berita-index-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 20v20M20 30h20' stroke='%23003995' stroke-width='0.8' fill='none'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
}

/* Custom Pagination Buttons */
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    cursor: pointer;
}
.pagination-btn:hover:not(.disabled):not(.active) {
    color: #003995;
    border-color: #003995;
    background-color: #f0f5ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 57, 149, 0.08);
}
.pagination-btn.active {
    color: #ffffff;
    background-color: #003995;
    border-color: #003995;
    box-shadow: 0 4px 12px rgba(0, 57, 149, 0.25);
    cursor: default;
}
.pagination-btn.disabled {
    color: #cbd5e1;
    background-color: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    box-shadow: none;
}
.pagination-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 639px) {
    .berita-hero {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .berita-hero h1 {
        font-size: 1.75rem !important;
    }
    .berita-hero p {
        font-size: 0.9375rem;
    }
    .pagination-btn {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.8125rem;
    }
    .pagination-btn svg {
        width: 1rem;
        height: 1rem;
    }
}

/* News Detail Page Styling */
.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.detail-main {
    transition: all 0.3s ease;
}
.detail-cover-container {
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.detail-body {
    font-family: 'Outfit', sans-serif;
    color: #334155;
    line-height: 1.8;
}
.detail-body p {
    margin-bottom: 1.5rem;
}
.detail-body p:last-child {
    margin-bottom: 0;
}
.detail-sidebar {
    position: sticky;
    top: 7rem;
    transition: all 0.3s ease;
}

/* Sidebar Hover Transitions */
.shrink-0 img {
    transition: transform 0.3s ease;
}
.group:hover .shrink-0 img {
    transform: scale(1.05);
}

/* Media Queries for Detail Page */
@media (max-width: 1023px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .detail-sidebar {
        position: static;
    }
}
@media (max-width: 639px) {
    .detail-main {
        padding: 1.5rem !important;
        border-radius: 1.5rem !important;
    }
    .detail-body {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

