/* Ad Sidebar Styles */
.ad-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.ad-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Artikel Terbaru Section Layout */
.artikel-terbaru-container {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr; /* Main portal ratio */
    gap: 30px;
}

.artikel-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Base Card Styles */
.article-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-cat {
    color: #27ae60;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.article-card:hover .article-title {
    color: #27ae60;
}

.article-date {
    font-size: 13px;
    color: #888;
}

/* Large Card Specific */
.card-large .article-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f0f0f0;
}

.card-large .article-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-large:hover img {
    transform: scale(1.05);
}

/* Side Card Specific (Text Left, Image Right) */
.card-side .article-card-link {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.card-side .article-text-side {
    flex: 1;
}

.card-side .article-img-side {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}

.card-side .article-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-side .article-title {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;

    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Full Height Sidebar Slider */
.full-sidebar-slider {
    height: 100%;
    min-height: 580px; /* Match the 3 rows of grid articles */
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.full-sidebar-slider .ad-slider-wrapper {
    position: relative;
    height: 100%;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.ad-slide.active {
    opacity: 1;
    visibility: visible;
}

.ad-slide .ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    pointer-events: none;
}

.ad-slide-badge {
    align-self: flex-start;
    background: #27ae60;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ad-slide-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ad-slide-dots {
    display: flex;
    gap: 6px;
}

.ad-slide-dots .dot {
    width: 25px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.ad-slide-dots .dot.active {
    background: #27ae60;
}

.full-sidebar-slider .ad-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.full-sidebar-slider .ad-nav-btn:hover {
    background: #27ae60;
    border-color: #27ae60;
}

@media (max-width: 991px) {
    .artikel-terbaru-container {
        grid-template-columns: 1fr;
    }
    .full-sidebar-slider {
        min-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .artikel-cards-grid {
        grid-template-columns: 1fr;
    }
}

.section-title-line {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #1e6b3b;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid #eee;
    background: #fff;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #1e6b3b;
    color: #fff;
    border-color: #1e6b3b;
}

.filter-btn:hover:not(.active) {
    background: #f8f9fa;
    border-color: #ddd;
}

.video-grid-styled {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.video-thumbnail-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-video-card:hover .video-thumbnail-wrap img {
    transform: scale(1.1);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #1e6b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.gallery-video-card:hover .play-button-overlay {
    background: #27ae60;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Youtube Lightbox Styles */
.youtube-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.youtube-lightbox.active {
    display: flex;
}

.youtube-lightbox-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    position: relative;
}

.youtube-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.gallery-video-info {
    padding: 20px;
}

.gallery-video-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-video-date {
    font-size: 13px;
    color: #999;
}

.gallery-video-date i {
    margin-right: 5px;
}

@media (max-width: 991px) {
    .video-grid-styled {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .video-grid-styled {
        grid-template-columns: 1fr;
    }
}

.no-videos {
    text-align: center;
    width: 100%;
    padding: 50px;
    color: #999;
    font-style: italic;
}

.ad-placeholder {
    padding: 40px 20px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    color: #999;
}
.quote-section {
    margin-top: 50px;
    padding: 40px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Quote Slider Styles */
.quote-slider-wrapper {
    position: relative;
    margin-top: 30px;
    padding: 0 50px;
}

.quote-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.quote-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

.quote-slide {
    flex: 0 0 calc((100% - (5 * 15px)) / 6);
    min-width: 0;
}

.quote-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color, #0b5486);
    color: var(--primary-color, #0b5486);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quote-slider-btn:hover {
    background: var(--primary-color, #0b5486);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(11, 84, 134, 0.4);
}

.quote-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.quote-slider-prev {
    left: 0;
}

.quote-slider-next {
    right: 0;
}

.quote-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.quote-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.quote-slider-dot:hover {
    background: var(--primary-color, #0b5486);
    transform: scale(1.2);
}

.quote-slider-dot.active {
    background: var(--primary-color, #0b5486);
    width: 30px;
    border-radius: 5px;
}

.quote-item {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.quote-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.quote-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quote-item:hover .quote-image-wrapper img {
    transform: scale(1.05);
}

.quote-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.quote-image-wrapper:hover .quote-overlay-icon {
    opacity: 1;
}

.quote-overlay-icon i {
    font-size: 20px;
}

.quote-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* Responsive Quote Slider */
@media (max-width: 1400px) {
    .quote-slide {
        flex: 0 0 calc((100% - (3 * 15px)) / 4);
    }
}

@media (max-width: 1200px) {
    .quote-slide {
        flex: 0 0 calc((100% - (2 * 15px)) / 3);
    }
}

@media (max-width: 992px) {
    .quote-slide {
        flex: 0 0 calc((100% - (1 * 15px)) / 2);
    }
    .quote-slider-wrapper {
        padding: 0 40px;
    }
    .quote-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .quote-slide {
        flex: 0 0 calc((100% - (1 * 15px)) / 2);
    }
    .quote-slider-wrapper {
        padding: 0 35px;
    }
    .quote-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .quote-section {
        padding: 30px 0;
    }

    .quote-item {
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .quote-slide {
        flex: 0 0 100%;
    }
    .quote-slider-wrapper {
        padding: 0 30px;
    }
    .quote-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .quote-item {
        border-radius: 10px;
    }
}

/* Pamphlet Section Styles */
.pamphlet-section {
    margin-top: 30px;
    padding: 20px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.pamphlet-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.pamphlet-item {
    position: relative;
}

.pamphlet-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pamphlet-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.pamphlet-item:hover .pamphlet-card {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pamphlet-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    cursor: pointer;
}

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

.pamphlet-item:hover .pamphlet-image img {
    transform: scale(1.05);
}

.pamphlet-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.pamphlet-image:hover .pamphlet-overlay-icon {
    opacity: 1;
}

.pamphlet-overlay-icon i {
    font-size: 20px;
}

.pamphlet-link-wrapper {
    padding: 10px;
    text-align: center;
    background: #fff;
}

.pamphlet-link-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color, #0b5486);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.pamphlet-link-btn:hover {
    background: var(--accent-color, #f39c12);
    color: #fff;
    text-decoration: none;
}

.pamphlet-link-btn i {
    margin-right: 5px;
}

/* Lightbox Styles */
.pamphlet-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.pamphlet-lightbox.active {
    opacity: 1;
}

.pamphlet-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.pamphlet-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.pamphlet-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.pamphlet-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .pamphlet-lightbox-content {
        max-width: 95%;
    }

    .pamphlet-lightbox-close {
        top: -50px;
        right: 10px;
    }
}

/* Responsive Pamphlet Grid */
@media (max-width: 1400px) {
    .pamphlet-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .pamphlet-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .pamphlet-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .pamphlet-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .pamphlet-section {
        padding: 30px 0;
    }

    .pamphlet-title {
        font-size: 16px;
    }

    .pamphlet-subtitle {
        font-size: 11px;
    }

    .pamphlet-description {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .pamphlet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Quote Lightbox Styles */
.quote-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.quote-lightbox.active {
    opacity: 1;
}

.quote-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.quote-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.quote-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.quote-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .quote-lightbox-content {
        max-width: 95%;
    }

    .quote-lightbox-close {
        top: -50px;
        right: 10px;
    }
}

/* SPMB Flowchart Modal Styles */

/* News Section - Grid Layout */
.news-section {
    background: #ffffff;
    padding: 30px 0;
}

/* Artikel Terbaru Section */
.artikel-terbaru-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.artikel-terbaru-container {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Diperlebar rasio konten utama */
    gap: 30px;
    margin-top: 30px;
}

/* Kolom Kiri: Artikel Utama */
.artikel-utama-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.artikel-utama-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artikel-utama-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.artikel-utama-link {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    padding: 0;
}

.artikel-utama-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.artikel-utama-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artikel-utama-item:hover .artikel-utama-image img {
    transform: scale(1.05);
}

.artikel-utama-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artikel-utama-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artikel-utama-date {
    font-size: 14px;
    color: #666;
    margin-top: auto;
}

.artikel-utama-link:hover .artikel-utama-title {
    color: var(--primary-color, #0b5486);
}

/* Kolom Kanan: Artikel Kontributor */
.artikel-kontributor-column {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 800px;
    overflow-y: auto;
    position: sticky;
    top: 20px;
}

.artikel-kontributor-column::-webkit-scrollbar {
    width: 6px;
}

.artikel-kontributor-column::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.artikel-kontributor-column::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.artikel-kontributor-column::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.kontributor-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #0b5486);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artikel-kontributor-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.artikel-kontributor-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.artikel-kontributor-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.artikel-kontributor-link:hover {
    transform: translateX(5px);
}

.kontributor-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.kontributor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kontributor-content {
    flex: 1;
}

.kontributor-article-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kontributor-date {
    font-size: 12px;
    color: #666;
}

.artikel-kontributor-link:hover .kontributor-article-title {
    color: var(--primary-color, #0b5486);
}

/* Responsive Artikel Terbaru */
@media (max-width: 992px) {
    .artikel-terbaru-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artikel-utama-image {
        width: 150px;
        height: 120px;
    }

    .artikel-utama-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .artikel-utama-link {
        flex-direction: column;
        gap: 0;
    }

    .artikel-utama-image {
        width: 100%;
        height: 200px;
    }

    .artikel-utama-content {
        padding: 15px;
    }

    .kontributor-avatar {
        width: 50px;
        height: 50px;
    }

    .kontributor-article-title {
        font-size: 13px;
    }
}

.news-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Diubah menjadi 3 kolom sesuai permintaan */
    gap: 30px; /* Diperlebar gap untuk estetika 3 kolom */
    margin-bottom: 30px;
}

.news-item-new {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    padding: 0;
    align-items: flex-start;
}

.news-item-image {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 4px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item-new:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    padding: 0;
}

.news-item-cat {
    color: #27ae60;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.news-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;

    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-date {
    font-size: 14px;
    color: #666666;
    margin-top: auto;
}

.news-item-link:hover .news-item-title {
    color: var(--primary-color, #0b5486);
}

/* Responsive News Grid */
@media (max-width: 992px) {
    .news-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .news-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-item-image {
        flex: 0 0 100px;
        width: 100px;
        height: 100px;
    }

    .news-item-content {
        min-height: 100px;
    }

    .news-item-title {
        font-size: 15px;
        -webkit-line-clamp: 3;
    line-clamp: 3;
    }

    .news-item-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-item-link {
        gap: 12px;
    }

    .news-item-image {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }

    .news-item-content {
        min-height: 80px;
    }

    .news-item-title {
        font-size: 14px;
    }
}
