.main {
  width: calc(100% * 4/4);
  max-width: 1500px;
  margin: 0;
  padding: 20px 20px;
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border-radius: 0px;
}


/* (Sama dengan CSS di home.php untuk konsistensi) */
.main-section-video { width: 100%; padding: 20px 20px; background: linear-gradient(15deg, #e6f0fa 0%, #ffffff 15%); text-align: center; margin: 0 auto;}
.video-grid-home { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; max-width: 100%; margin: 0 auto; }
.video-item { text-decoration: none; color: #333; transition: transform 0.3s ease; }
.video-item:hover { transform: scale(1.05); }
.video-thumbnail { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 8px; }
.video-img-home { width: 100%; height: 100%; object-fit: cover; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.6); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; opacity: 0.8; transition: opacity 0.3s ease; }
.video-item:hover .play-icon { opacity: 1; }
.video-title { margin: 10px 0 0; font-size: 16px; font-weight: 500; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.no-videos { font-size: 16px; color: #666; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.page-link { padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px; text-decoration: none; color: #333; }
.page-link.active { background-color: #007bff; color: white; border-color: #007bff; }
.page-link.disabled { color: #999; cursor: not-allowed; border-color: #ddd; }
.page-ellipsis { padding: 8px 12px; color: #999; }
@media (max-width: 768px) { .video-grid-home { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
@media (max-width: 576px) { .video-grid-home { grid-template-columns: 1fr; } }

/* Hero Section */
        .hero-section-berita {
            position: relative;
            width: 100%;
            background: linear-gradient(rgba(0, 48, 135, 0.9), rgba(0, 48, 135, 0.9)), url('https://lpmpp.ubb.ac.id/templates/baru2/assets/image/pattern.png') no-repeat center center/cover;
            color: #fff;
            padding: 60px 0;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .hero-container-berita {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        .hero-content-berita {
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-title-berita {
            font-size: 2.8em;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        .hero-subtitle-berita {
            font-size: 1.2em;
            margin-bottom: 30px;
            line-height: 1.5;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: both;
        }
        
        .hero-meta {
            font-size: 1em;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: both;
        }

        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        
        .section-title-berita {
    position: relative;
    margin-top: 20px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    font-size: 1.9rem;
    font-weight: 900;
    color: white;
}



.section-title-berita::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background-color: var(--accent-red);
}


        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            max-width: 1400px;
            margin: 20px auto;
            font-size: 0.9em;
            padding: 0 15px;
        }
        .breadcrumb a {
            color: #005566;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }


/* Content Section */
        
.content-section-berita {
            background: linear-gradient(135deg, #e6f0fa 0%, #ffffff 70%);
            padding: 50px 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
 }

.content-section-berita::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://lpmpp.ubb.ac.id/templates/baru2/assets/image/pattern.svg') repeat;
            opacity: 0.15;
            content:'';
}
        
.container-berita {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 15px;
 }

.row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
}

.row-halaman{
            display: flex;
            flex-wrap: wrap;
            margin: 0 0px;
            padding:40px;
}

.row-video{
            display: flex;
            flex-wrap: wrap;
            margin: 0 0px;
            padding:20px;
}

.col {
            padding: 0 15px;
}

.col.left-sidebar {
            flex: 0 0 20%;
            max-width: 20%;
            z-index:1;
}

.col.main-content {
            flex: 0 0 60%;
            max-width: 60%;
            padding:10px;
}

.col.main-content-detail {
            flex: 0 0 60%;
            max-width: 60%;
            background-color: var(--white);
            padding:10px;

}

.col.right-sidebar {
            flex: 0 0 20%;
            max-width: 20%;
            z-index:1;

}
        

/* Article */

.article-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 10px;
            margin: 10px;

 }


.article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 5px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);

 }

        .article-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            text-align: center;
            padding:20px;
        }

        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            object-fit: content;
        }
        
        .article-image-pengumuman {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            text-align: center;
            padding:20px;
            
        }

        .article-image-pengumuman img {
            width:100%;
            max-width: 60%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            object-fit: content;
            height: auto;
        }


        .article-content p {
            margin-bottom: 5px;
            line-height: 1.8;
            color: #333;
            font-size: 1.1em;
            padding:10px;
        }

        .article-meta {
            font-size: 0.95em;
            color: #666;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

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

        /* Share Buttons */
        .share-buttons {
            margin: 30px 0;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .share-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #f1f1f1;
            color: #333;
            text-decoration: none;
            border-radius: 6px;
            font-size: 0.9em;
            transition: background 0.3s, transform 0.3s;
        }
        
        .share-buttons a {
            padding: 8px 12px;
            background: #005566;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.85em;
            transition: background 0.2s;
        }
        .share-buttons a:hover {
            background: #f28c38;
        }

        .share-button:hover {
            transform: translateY(-3px);
        }

        .share-button.whatsapp { background: #25D366; color: #fff; }
        .share-button.twitter { background: #1DA1F2; color: #fff; }
        .share-button.facebook { background: #4267B2; color: #fff; }
        .share-button.copy { background: #007bff; color: #fff; }

        .share-button:hover.whatsapp { background: #20b358; }
        .share-button:hover.twitter { background: #1991db; }
        .share-button:hover.facebook { background: #385898; }
        .share-button:hover.copy { background: #0056b3; }

        /* Related Articles */
        .related-articles {
            margin-top: 40px;
        }

        .related-title {
            font-size: 1.6em;
            color: #fff;
            margin-bottom: 20px;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
        }

        .related-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            transition: transform 0.3s;
        }

        .related-card:hover {
            transform: translateY(-5px);
        }

        .related-image img {
            width: 120px;
            height: 80px;
            object-fit: cover;
        }

        .related-content {
            padding: 15px;
            flex: 1;
        }

        .related-content h4 {
            font-size: 1.1em;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .related-content h4 a {
            color: #222;
            text-decoration: none;
        }

        .related-content h4 a:hover {
            color: #007bff;
        }


        /* Filter dan Pencarian */
        .filter-search {
            max-width: 1400px;
            margin: 0 auto 20px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            padding: 0 15px;
            z-index:1;
        }
        .filter-search form {
            display: flex;
            flex: 1;
            min-width: 200px;
            z-index:1;
        }
        .filter-search input {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 0.9em;
            flex: 1;
            z-index:1;
        }
        .filter-search button {
            padding: 12px;
            border: 1px solid #ddd;
            border-left: none;
            border-radius: 0 6px 6px 0;
            background: #005566;
            color: #fff;
            cursor: pointer;
            z-index:1;
        }
        .filter-search button:hover {
            background: #003d4a;
        }
        .filter-search select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.9em;
            min-width: 200px;
            z-index:1;
        }
        
                .search-input {
            width: calc(100% - 45px);
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 0.9em;
        }

        .search-button {
            width: 45px;
            padding: 12px;
            border: 1px solid #ddd;
            border-left: none;
            border-radius: 0 6px 6px 0;
            background: #007bff;
            color: #fff;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-button:hover {
            background: #0056b3;
        }

        /* Post card */
        .post-card {
            background: linear-gradient(15deg, #e6f0fa 0%, #ffffff 50%);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.7);
            overflow: hidden;
            margin: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
             /* Post card team*/
        .post-card-team {
            width:auto;
            align-items:center;
            background: linear-gradient(15deg, #e6f0fa 0%, #ffffff 50%);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-radius: 12px;
            overflow: auto;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index:10000;
            position:center;
            margin:10px;
        }
        
        .post-card-team::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://lpmpp.ubb.ac.id/templates/baru2/assets/image/pattern.svg') repeat;
            opacity: 0.15;
            
}


        
/* Gaya untuk section atau post-card-halaman */
.post-card-halaman {
    width: 100%;
    max-width: 100%;
    min-height: 30vh;
    background: linear-gradient(15deg, #e6f0fa 0%, #ffffff 15%);
    box-shadow: 0 8px 20px rgba(0.5, 0, 0, 0.7);
    border-radius: 12px;
    padding: 30px;
    margin: 0 ;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    box-sizing: border-box;
}

/* Pseudo-elemen untuk background transparan */
.post-card-halaman::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://lpmpp.ubb.ac.id/templates/baru2/assets/image/pattern.svg') repeat;
    opacity: 0.15; /* Atur tingkat transparansi */
    z-index: 0;
}

/* Pastikan konten berada di atas pseudo-elemen */
.post-card-halaman > * {
    position: relative;
    z-index: 1;
}

/* Gaya untuk judul */
.post-card-halaman .section-title {
    font-size: 1.2rem;
    color: #000080;
    font-weight: bold;
    margin: 1.5rem 0 1rem;
    text-align: left;
}

/* Gaya untuk teks umum */
.post-card-halaman p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    text-justify: auto;
    overflow-wrap: break-word;
    hyphens: auto;
    margin: 0 0 1rem;
}

/* Gaya untuk link */
.post-card-halaman a {
    display: inline;
    position: relative;
    z-index: 1;
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.2s ease;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

/* Gaya khusus untuk link unduhan */
.post-card-halaman a.download-link {
    word-break: break-all;
    overflow-wrap: anywhere;
}

.post-card-halaman a:hover {
    color: #003366;
}


/* Media query untuk layar kecil */
@media (max-width: 768px) {

    .post-card-halaman {
    min-height: 20vh;    
    width:100%;
    max-width:100%;
    padding: 10px;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0.5, 0, 0, 0.7);
    }
    
    .post-card-halaman img {
    width:100%;
    max-width:100%;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    }

    .post-card-halaman .section-title {
        font-size: 1.1rem;
    }

    .post-card-halaman p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }

    .post-card-halaman a.download-link {
        display: inline-block;
        margin: 0.5rem 0;
    }
}



/* Bungkus tabel */
.table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

/* Gaya untuk tabel */
.post-card-halaman table {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1rem;
}

/* Gaya untuk sel tabel */
.post-card-halaman th,
.post-card-halaman td {
    padding: 10px;
    text-align: justify; /* Teks rata kanan-kiri di sel tabel */
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    border-bottom: 1px solid #ddd;
}

/* Gaya untuk link */
.post-card-halaman a {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.2s ease;
}



/* Gaya untuk iframe */
.post-card-halaman iframe {
    width: 800px;
    height: 1180px; 
    max-width: 100%;
    border: 0;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

/* Media query untuk layar kecil */
@media (max-width: 768px) {
    .post-card-halaman {
        padding: 12px;
        border-radius: 8px;
    }

    .post-card-halaman p,
    .post-card-halaman span,
    .post-card-halaman div {
        font-size: 0.9rem;
        text-align: left; /* Beralih ke left untuk layar kecil agar spasi lebih rapi */
    }

    .post-card-halaman th,
    .post-card-halaman td {
        padding: 8px;
        font-size: 0.9rem;
        text-align: left; /* Beralih ke left untuk sel tabel di layar kecil */
    }

    .post-card-halaman iframe {
        height: 500px; /* Tinggi lebih kecil untuk layar kecil */
    }
}
        

        
        .post-card-halaman:hover {
            transform: translateY(-15px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .post-text-team {
            align-items:center;
            width: auto;
            height: auto;
            object-fit: content;
            display: block;
            margin-top:30px;
        }
        
        .post-image {
            margin-bottom: 20px;
            text-align: center;
            padding:20px;
        }

        .post-image img {
            max-width: 100%;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            object-fit: cover;
            max-height: 400px;
        }
        
       .post-image-team img {
            align-items:center;
            width: 250px;
            height: auto;
            object-fit: content;
            display: block;
            padding:10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin:20px;
        }
        .post-content {
            padding: 20px;
            
        }
        
        .post-content-team {
            display: flex; 
            align-items: flex-start; 
            gap: 20px;
        }
        
        .post-content-team:hover {
            transform: translateY(-5px);
        }
        
        .post-title {
            font-size: 1.6em;
            margin-bottom: 12px;
            color: #222;
        }
        .post-title a {
            color: #222;
            text-decoration: none;
        }
        .post-title a:hover {
            color: #005566;
        }
        .post-meta {
            font-size: 0.9em;
            color: #555;
            margin-bottom: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .post-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
         /* Navigation */
        .post-navigation {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .post-previous, .post-next {
            flex: 1;
            padding: 15px;
            background: #f9fafb;
            border-radius: 8px;
            text-align: center;
        }

        .post-previous a, .post-next a {
            color: #007bff;
            text-decoration: none;
            font-size: 1em;
        }

        .post-previous a:hover, .post-next a:hover {
            color: #0056b3;
        }

        .post-previous span, .post-next span {
            display: block;
            font-size: 0.9em;
            color: #666;
            margin-bottom: 5px;
        }

        .agenda-details {
            margin: 20px 0;
            padding: 15px;
            background: #f9fafb;
            border-radius: 8px;
        }

        .agenda-details p {
            margin-bottom: 10px;
            font-size: 1em;
            color: #333;
        }

        /* Sidebar */
        .sidebar {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #005566;
            z-index:1;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.4em;
            color: #222;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #005566;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget ul li {
            margin-bottom: 14px;
        }
        .widget ul li a {
            color: #333;
            text-decoration: none;
            font-size: 0.95em;
        }
        .widget ul li a:hover {
            color: #005566;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .gallery-image {
            width: 100%;
            height: 90px;
            object-fit: cover;
            border-radius: 6px;
            transition: transform 0.3s;
        }
        .gallery-image:hover {
            transform: scale(1.05);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        .pagination ul {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .pagination-link {
            padding: 12px 18px;
            background: #f1f1f1;
            border-radius: 6px;
            text-decoration: none;
            color: #333;
            font-size: 0.9em;
            transition: background 0.2s, color 0.2s;
        }
        .pagination-link.active,
        .pagination-link:hover {
            background: #005566;
            color: #fff;
        }
        .pagination-ellipsis {
            padding: 12px 18px;
            color: #666;
        }

        /* Footer */
        .footer {
            background: #005566;
            color: #fff;
            padding: 40px 0;
            width: 100%;
        }
                /* Footer */
        .footer-atas {
            background: #005566;
            color: #fff;
            padding: 40px 0;
            width: 100%;
            border-radius:0 0 20px 20px;
            
    box-shadow: var(--shadow);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
            width: 100%;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-section {
            flex: 1;
            min-width: 200px;
        }
        .footer-section h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        .footer-section p, .footer-section ul {
            font-size: 0.9em;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-section ul li a:hover {
            color: #f28c38;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            width: 100%;
        }

        /* Responsivitas */
        @media (max-width: 1080px) {
            .col.left-sidebar,
            .col.main-content,
            .col.right-sidebar {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 25px;
                z-index:1;
            }
            
            
            .post-image img {
                width: 100%;
                margin: 0 auto;
            }
            
                        
            .post-image-team img {
                width: 200px;
                align-items:center;
                justify-content: center;
            }
            
            /* Post card team*/
            .post-card-team {
            width:100%;
            align-items:center;
            
            }
            
            .post-content-team {
            display:flex;
            width:100%;
            align-items: center; 
            }
            
            .content-section-berita {
                padding: 30px 0;
            }
            .hero-section-berita {
                padding: 60px 0;
            }
            .hero-title-berita {
                font-size: 2.2em;
            }
            .hero-subtitle-berita {
                font-size: 1em;
            }
            .header-container-berita {
                flex-direction: column;
                gap: 10px;
            }
            
        }
        
        @media (max-width: 700px) {
            
        /* Post card halaman*/
        .post-card-halaman {
            overflow-x: auto;
            width:100%;
            max-width: 100%;
            align-items:center;
            background: linear-gradient(15deg, #e6f0fa 0%, #ffffff 50%);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-radius: 12px;
            padding: 10px;
            margin: 0 auto;
        }
            
        .post-content-team {
            display:block;
            width:100%;
            align-items: center; 
            }
            
         .post-card-team {
            width:100%;
            align-items: center; 

        }
        

            .post-image img {
                width: 100%;
                margin: 0 auto;
            }
            
          .post-image-team img {
        width: 200px; 
        margin: 0 auto;
             }
             
             
    
            .post-card {
                margin-bottom: 25px;
            }
            .post-content {
                padding: 15px;
            }
            .post-title {
                font-size: 1.4em;
            }
            .post-meta {
                gap: 8px;
            }
            .pagination-link {
                padding: 10px 14px;
            }
            .gallery {
                grid-template-columns: 1fr;
            }
            .gallery-image {
                height: 120px;
            }
            .hero-section-berita {
                padding: 40px 0;
            }
            .hero-title-berita {
                font-size: 1.8em;
            }
            .hero-subtitle-berita {
                font-size: 0.9em;
            }
            .filter-search {
                flex-direction: column;
            }
            .filter-search form, .filter-search select {
                width: 100%;
            }
        }


/* Download Card */
        .download-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .download-title {
            font-size: 1.4em;
            color: #222;
            margin-bottom: 10px;
        }
        .download-meta {
            font-size: 0.9em;
            color: #555;
            margin-bottom: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .download-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-download {
            display: inline-block;
            padding: 10px 20px;
            background: #005566;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 0.9em;
            transition: background 0.2s, transform 0.2s;
            align-self: flex-start;
        }
        .btn-download:hover {
            background: #f28c38;
            transform: translateY(-2px);
        }
        
        /* Contact Section */
        .contact-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        .contact-title {
            font-size: 2em;
            color: #222;
            margin-bottom: 20px;
            text-align: center;
        }
        .contact-subtitle {
            font-size: 1.4em;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }
        .contact-info {
            font-size: 1.1em;
            color: #333;
            line-height: 1.8;
        }
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .contact-info i {
            color: #005566;
            font-size: 1.2em;
        }
        .contact-info a {
            color: #005566;
            text-decoration: none;
        }
        .contact-info a:hover {
            color: #f28c38;
        }
        
        

/* Section artikel home*/

    .artikel-section {
        max-width: 100%;
        margin: 0 auto;
        margin-bottom:20px;
        padding: 40px 20px;
        background: #f8f9fa;
        border-radius: 10px;
    }
    .artikel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    .artikel-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s;
    }
    .artikel-card:hover {
        transform: translateY(-5px);
    }
    .artikel-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .artikel-body {
        padding: 15px;
    }
    .artikel-title {
        font-size: 1.5rem;
        color: rgb(49, 151, 149);
    }
    .artikel-meta {
        margin-bottom: 10px;
    }
    .artikel-text {
        font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .artikel-section {
            padding: 20px 10px;
        }
    }
    
 
 
 /* Modern Article Section */
.modern-artikel {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.artikel-card-modern {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artikel-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.artikel-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

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

.artikel-card-modern:hover .artikel-img {
    transform: scale(1.1);
}

.artikel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.artikel-card-modern:hover .artikel-overlay {
    opacity: 1;
}

.category-badge {
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.artikel-body {
    padding: 20px;
}

.artikel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.artikel-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.artikel-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-read-more {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-read-more:hover {
    background-color: #0056b3;
    color: #fff;
}

.btn-load-more {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    background: #007bff;
    color: #fff;
    border: none;
    transition: background 0.3s ease;
}

.btn-load-more:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .artikel-title {
        font-size: 1.3rem;
    }
    .artikel-text {
        font-size: 0.95rem;
    }
    .artikel-card-modern {
        margin-bottom: 20px;
    }
}       
        
        
        
    /* 