.section-tag { display: inline-block; background: rgba(15, 76, 129, .08); color: var(--primary); padding: 10px 20px; border-radius: 50px; font-weight: 600; margin-bottom: 20px; }
.about-section { background-color: #ffffff; overflow: hidden; }
.welcome-card { background-color: #f4f7fa; border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02); }
.principal-img-frame { width: 140px; height: 160px; border-radius: 12px; overflow: hidden; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.principal-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.badge-tag { display: inline-block; background: #e6f0fa; color: #0f4c81; padding: 8px 18px; border-radius: 50px; font-weight: 600; font-size: 0.85rem; }
.stat-box-mini { background: #ffffff; border: 1px solid #f0f4f8; padding: 16px 24px; border-radius: 16px; min-width: 110px; text-align: left; box-shadow: 0 4px 12px rgba(0,0,0,0.03); flex: 1; }
.stat-box-mini h4 { font-size: 1.5rem; color: #0f4c81 !important; }

/* ==========================================
   TENTANG SEKOLAH & VISI MISI STYLE
   ========================================== */

/* Pembaruan Section Tentang */
.about-section { 
    padding: 30px 0; /* Mengurangi padding dari py-5 (Bootstrap bawaan) agar serasi */
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -20px 30px -20px rgba(0, 0, 0, 0.05), 0 15px 30px rgba(0, 0, 0, 0.03); /* Menambahkan bayangan di akhir section */
    z-index: 1;
}

/* Modifikasi bingkai foto kepala sekolah agar lebih presisi */
.principal-img-frame {
    width: 130px;
    height: 165px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.principal-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Penyesuaian Visi Misi Section (Mengurangi padding bawaan) */
.visi-misi-section { 
    padding: 70px 0; /* Dikurangi dari 120px menjadi 70px agar jarak antar kontras seimbang */
    background: linear-gradient(135deg, #0F4C81, #1D6DB5); 
    position: relative; 
    overflow: hidden; 
}

/* Sisa CSS Visi Misi Anda tetap sama... */
.visi-misi-section::before { content: ""; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255, 255, 255, .08); filter: blur(50px); }
.visi-misi-section::after { content: ""; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255, 212, 59, .15); filter: blur(50px); }
.section-tag-light { background: rgba(255, 255, 255, .15); color: #fff; }
.visi-title { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.visi-subtitle { color:#f1f1f1; max-width: 700px; margin: auto; line-height: 1.8; }
.glass-card { height: 100%; padding: 40px; border-radius: 25px; background: rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, .2); transition: .5s; box-shadow: 0 10px 30px rgba(0, 0, 0, .15); position: relative; overflow: hidden; }
.glass-card::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent); transition: .8s; }
.glass-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, .16); }
.glass-card:hover::before { left: 100%; }
.glass-icon { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #FFD43B, #ffea9f); margin-bottom: 25px; }
.glass-icon i { font-size: 35px; color: var(--primary); }
.glass-card h3 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.glass-card p { color: #f1f1f1; line-height: 1.9; }
.misi-list { list-style: none; padding: 0; margin: 0; }
.misi-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; color: #fff; line-height: 1.7; }
.misi-list i { color: #FFD43B; font-size: 18px; margin-top: 3px; }

/* STATISTIK SEKOLAH */
/* ==========================================
   STATISTIK SEKOLAH SECTION STYLE 
   ========================================== */
.stat-section { 
    padding: 60px 0; /* Mengatur jarak atas-bawah agar padat dan konsisten */
    background: #ffffff; 
    position: relative; 
    overflow: hidden; 
    box-shadow: inset 0 -20px 30px -20px rgba(0, 0, 0, 0.05), 0 15px 30px rgba(0, 0, 0, 0.03); /* Bayangan halus di akhir section */
}

/* Pengaturan Kartu Statistik */
.stat-card {
    background: white;
    border-radius: 20px; 
    border-bottom: 4px solid #0F4C81; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px); /* Efek melayang saat di-hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 2.5rem; 
    color: #0F4C81;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1); /* Efek ikon membesar sedikit saat kartu di-hover */
}
/* PRESTASI SLIDER */
/* PRESTASI SLIDER */
.prestasi-section { 
    padding: 30px 0; /* Mengurangi padding dari 120px menjadi 60px agar tidak terlalu renggang */
    background: #ffffff; 
    position: relative; 
    overflow: hidden; 
    box-shadow: inset 0 -20px 30px -20px rgba(0, 0, 0, 0.05), 0 15px 30px rgba(0, 0, 0, 0.03); /* Menambahkan bayangan halus di akhir section */
}
.prestasi-section::before { content: ""; position: absolute; top: -120px; right: -120px; width: 350px; height: 350px; background: rgba(15, 76, 129, .08); border-radius: 50%; filter: blur(60px); }
.prestasi-section::after { content: ""; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: rgba(255, 212, 59, .18); border-radius: 50%; filter: blur(60px); }
.prestasi-title { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
.prestasi-subtitle { max-width: 700px; margin: auto; line-height: 1.8; color: #666; }
.prestasi-card { background: #fff; border-radius: 25px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, .08); transition: .5s; height: 100%; }
.prestasi-card:hover { transform: translateY(-10px); }
.prestasi-image { position: relative; overflow: hidden; }
.prestasi-image img { width: 100%; height: 280px; object-fit: cover; transition: .7s; }
.prestasi-card:hover img { transform: scale(1.1); }
.prestasi-badge { position: absolute; top: 15px; right: 15px; background: linear-gradient(135deg, #FFD43B, #FFB800); color: #000; font-weight: 700; padding: 10px 18px; border-radius: 30px; font-size: .85rem; box-shadow: 0 10px 20px rgba(0, 0, 0, .15); }
.prestasi-content { padding: 25px; }
.prestasi-content h4 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.prestasi-content p { color: #666; line-height: 1.7; margin: 0; }
.swiper { padding-bottom: 60px; }
.swiper-button-next, .swiper-button-prev { width: 50px; height: 50px; background: #fff; border-radius: 50%; box-shadow: 0 10px 25px rgba(0, 0, 0, .12); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; font-weight: bold; color: var(--primary); }
.swiper-pagination-bullet { background: var(--primary); opacity: .4; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--secondary); }

/* MASONRY GALLERY */
.galeri-section { padding: 50px 0; background: #f8fafc; position: relative; overflow: hidden; }
.galeri-section::before { content: ""; position: absolute; top: -150px; right: -150px; width: 350px; height: 350px; border-radius: 50%; background: rgba(15, 76, 129, .08); filter: blur(60px); }
.galeri-section::after { content: ""; position: absolute; bottom: -150px; left: -150px; width: 350px; height: 350px; border-radius: 50%; background: rgba(255, 212, 59, .18); filter: blur(60px); }
.galeri-title { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
.galeri-subtitle { max-width: 700px; margin: auto; line-height: 1.8; color: #666; }
.gallery-filter { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn { border: none; background: #fff; padding: 12px 25px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: .4s; box-shadow: 0 5px 20px rgba(0, 0, 0, .08); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; }
.gallery-grid { column-count: 3; column-gap: 20px; }
.gallery-item { position: relative; margin-bottom: 20px; break-inside: avoid; overflow: hidden; border-radius: 20px; }
.gallery-item img { width: 100%; display: block; border-radius: 20px; transition: .6s; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent); display: flex; align-items: flex-end; padding: 25px; opacity: 0; transition: .4s; }
.gallery-overlay h5 { color: #fff; font-size: 1.2rem; font-weight: 600; margin: 0; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* YOUTUBE GALLERY & VIDEO CARD */
.youtube-gallery { padding: 100px 0; background: #fff; }
.video-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, .08); transition: .4s; height: 100%; }
.video-card:hover { transform: translateY(-10px); }
.video-wrapper { position: relative; padding-top: 56.25%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-content { padding: 20px; }
.video-content h4 { font-size: 1.2rem; font-weight: 700; margin: 0; }

/* ==========================================
   KALENDER AKADEMIK & AGENDA TERDEKAT STYLE 
   ========================================== */

/* Pengaturan Section Utama */
.academic-calendar { 
    padding: 60px 0 40px 0; /* Padding atas dikurangi, bawah disesuaikan */
    background-color: #ffffff; 
}

.near-agenda-section { 
    padding: 20px 0 60px 0; /* Padding bawah disisakan untuk batas akhir shadow */
    background-color: #ffffff; 
    position: relative;
    box-shadow: inset 0 -20px 30px -20px rgba(0, 0, 0, 0.05), 0 15px 30px rgba(0, 0, 0, 0.03); /* Bayangan di akhir kesatuan section */
}

/* Komponen Kalender */
.calendar-icon-wrapper { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 60px; 
    height: 60px; 
    background-color: #eef2ff; 
    color: #0d6efd; 
    font-size: 1.6rem; 
    border-radius: 16px; 
}

.dot-indicator { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    display: inline-block; 
}

/* Variasi Warna Indikator */
.bg-primary-blue { background-color: #0066cc; }
.bg-danger-red { background-color: #e53935; }
.bg-warning-yellow { background-color: #ffb300; }

/* Kartu Event */
.event-list-card { 
    display: flex; 
    align-items: center; 
    background: #ffffff; 
    border: 1px solid #e2e8f0; 
    border-radius: 16px; 
    padding: 16px 24px; /* Sedikit dipersempit agar ringkas */
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.event-list-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05); 
}

.color-bar { 
    width: 6px; 
    height: 38px; 
    border-radius: 50px; 
    margin-right: 20px; 
    flex-shrink: 0; 
}

.event-details h5 { 
    font-size: 1.1rem; 
    letter-spacing: -0.3px; 
}

.event-date { 
    font-size: 0.88rem; 
    display: flex; 
    align-items: center; 
}

/* STYLE TICKER AGENDA TERDEKAT */
.near-agenda-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.near-agenda-label {
    background: var(--primary, #0d6efd);
    color: #ffffff;
    flex-shrink: 0;
    z-index: 2;
}

.near-agenda-ticker {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 20px;
}

.near-ticker-track {
    display: inline-flex;
    gap: 40px;
    animation: tickerLoop 25s linear infinite;
}

.near-ticker-track:hover {
    animation-play-state: paused; /* Berhenti saat diarahkan kursor */
}

.near-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.near-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.near-dot.bg-blue { background-color: #0066cc; }
.near-dot.bg-red { background-color: #e53935; }

.near-date {
    color: #64748b;
    font-size: 0.85rem;
    background: #e2e8f0;
    padding: 2px 10px;
    border-radius: 30px;
}

/* Animasi Bergerak Jalan Otomatis */
@keyframes tickerLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Efek Icon Pengeras Suara */
.dynamic-bounce {
    animation: microBounce 2s ease infinite;
}
@keyframes microBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}


/* BERITA SEKOLAH */
/* BERITA SEKOLAH */
.berita-section { 
    padding: 30px 0; /* Mengurangi padding dari 120px menjadi 60px agar serasi dengan section prestasi */
    background: #ffffff; 
    position: relative; 
    overflow: hidden; 
    box-shadow: inset 0 -20px 30px -20px rgba(0, 0, 0, 0.05), 0 15px 30px rgba(0, 0, 0, 0.03); /* Menambahkan efek bayangan di akhir/bawah section */
}
.berita-section::before { content: ""; position: absolute; top: -150px; right: -150px; width: 350px; height: 350px; border-radius: 50%; background: rgba(15, 76, 129, .08); filter: blur(60px); }
.berita-section::after { content: ""; position: absolute; bottom: -150px; left: -150px; width: 350px; height: 350px; border-radius: 50%; background: rgba(255, 212, 59, .18); filter: blur(60px); }
.berita-title { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
.berita-subtitle { max-width: 700px; margin: auto; color: #666; line-height: 1.8; }

/* FEATURED NEWS (BERITA UTAMA) */
.featured-news { background: #fff; border-radius: 25px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, .08); height: 100%; transition: .5s; }
.featured-news:hover { transform: translateY(-10px); }
.featured-image { position: relative; overflow: hidden; }
.featured-image img { width: 100%; height: 350px; object-fit: cover; transition: .7s; }
.featured-news:hover img { transform: scale(1.1); }
.news-category { position: absolute; top: 20px; left: 20px; background: var(--secondary); color: #000; padding: 10px 18px; border-radius: 30px; font-weight: 700; z-index: 10; }
.featured-content { padding: 30px; }
.news-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 15px; color: #777; font-size: .9rem; }
.news-meta i { margin-right: 5px; color: var(--primary); }
.featured-content h3 { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; line-height: 1.4; }
.featured-content p { color: #666; line-height: 1.8; }
.btn-news { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 50px; font-weight: 600; transition: .4s; }
.btn-news:hover { background: var(--secondary); color: var(--primary); }

/* NEWS CARD (BERITA SAMPINGAN - DIUBAH AGAR FLOATING) */
.news-card { background: #fff; border-radius: 20px; overflow: hidden; height: 100%; box-shadow: 0 10px 30px rgba(0, 0, 0, .08); transition: .4s; cursor: pointer; }
.news-card:hover { transform: translateY(-8px); }

/* Pembungkus gambar baru untuk mengunci posisi badge kategori */
.news-card-image { position: relative; overflow: hidden; width: 100%; height: 180px; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.news-card:hover .news-card-image img { transform: scale(1.08); }

/* Menjadikan kategori kecil melayang di atas gambar sampingan */
.news-category-small { position: absolute; top: 15px; left: 15px; background: var(--secondary); color: #000; padding: 6px 14px; border-radius: 30px; font-size: .75rem; font-weight: 700; z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

.news-content { padding: 20px; }
.news-content h4 { font-size: 1.1rem; font-weight: 700; line-height: 1.5; color: var(--primary); margin-bottom: 15px; }
.btn-all-news { display: inline-block; background: var(--primary); color: #fff; padding: 15px 35px; border-radius: 50px; font-weight: 600; transition: .4s; }
.btn-all-news:hover { background: var(--secondary); color: var(--primary); transform: translateY(-4px); }


/* TESTIMONI ALUMNI */
.testimoni-section { padding: 120px 0; background: linear-gradient(135deg, #0F4C81, #1D6DB5); position: relative; overflow: hidden; }
.testimoni-section::before { content: ""; position: absolute; top: -150px; right: -150px; width: 450px; height: 450px; background: rgba(255, 255, 255, .08); border-radius: 50%; filter: blur(60px); }
.testimoni-section::after { content: ""; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; background: rgba(255, 212, 59, .15); border-radius: 50%; filter: blur(60px); }
.testimoni-title { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
.testimoni-subtitle { max-width: 700px; margin: auto; line-height: 1.8; color: #f1f1f1; }
.testimonial-card { background: rgba(255, 255, 255, .12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, .2); border-radius: 25px; padding: 35px; height: 100%; transition: .5s; }
.testimonial-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, .18); }
.testimonial-top { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.testimonial-top img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; border: 4px solid #FFD43B; }
.testimonial-top h4 { color: #fff; font-weight: 700; margin-bottom: 5px; }
.testimonial-top span { color: #f1f1f1; font-size: .9rem; }
.rating { margin-bottom: 20px; }
.rating i { color: #FFD43B; margin-right: 3px; font-size: 18px; }
.testimonial-card p { color: #fff; line-height: 1.9; font-style: italic; margin: 0; }
.alumni-pagination { margin-top: 40px; position: relative; }
.alumni-pagination .swiper-pagination-bullet { background: #fff; opacity: .4; }
.alumni-pagination .swiper-pagination-bullet-active { opacity: 1; background: #FFD43B; }

/* CTA SPMB & COUNTDOWN */
.spmb-section { padding: 120px 0; background: #f8fafc; position: relative; overflow: hidden; }
.spmb-wrapper { background: linear-gradient(135deg, #0F4C81, #1D6DB5, #FFD43B); padding: 70px; border-radius: 35px; position: relative; overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, .15); animation: spmbGlow 6s ease-in-out infinite; }
.spmb-wrapper::before { content: ""; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: rgba(255, 255, 255, .08); border-radius: 50%; filter: blur(60px); }
.spmb-wrapper::after { content: ""; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: rgba(255, 255, 255, .08); border-radius: 50%; filter: blur(60px); }
.spmb-content { position: relative; z-index: 2; }
.spmb-badge { display: inline-block; background: rgba(255, 255, 255, .15); padding: 10px 20px; border-radius: 50px; color: #fff; font-weight: 600; margin-bottom: 20px; }
.spmb-content h2 { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.3; }
.spmb-content p { color: #fff; font-size: 1.1rem; line-height: 1.8; max-width: 700px; }
.countdown-wrapper { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 35px; }
.count-box { background: rgba(255, 255, 255, .15); backdrop-filter: blur(15px); padding: 20px; border-radius: 20px; text-align: center; min-width: 100px; }
.count-box h3 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.count-box span { color: #fff; font-size: .9rem; }
.spmb-buttons { display: flex; flex-direction: column; gap: 20px; }
.btn-spmb-main { background: #fff; color: var(--primary); padding: 18px 30px; border-radius: 50px; font-weight: 700; text-align: center; transition: .4s; }
.btn-spmb-main:hover { background: var(--secondary); color: var(--primary); transform: translateY(-5px); }
.btn-spmb-brochure { background: rgba(255, 255, 255, .15); color: #fff; padding: 18px 30px; border-radius: 50px; font-weight: 700; text-align: center; border: 2px solid rgba(255, 255, 255, .2); transition: .4s; }
.btn-spmb-brochure:hover { background: #fff; color: var(--primary); transform: translateY(-5px); }


@keyframes spmbGlow {
  0% { box-shadow: 0 25px 60px rgba(0, 0, 0, .15); }
  50% { box-shadow: 0 30px 80px rgba(255, 212, 59, .35); }
  100% { box-shadow: 0 25px 60px rgba(0, 0, 0, .15); }
}

@media (max-width: 576px) {
    .principal-img-frame { width: 100%; height: 200px; }
    .stat-box-mini { min-width: 100% !important; }
}

/* ==========================================
   RESPONSIVE FIXES UNTUK TAMPILAN HP (MOBILE)
   ========================================== */
@media (max-width: 768px) {
    /* Mengecilkan judul utama section berita */
    .berita-title { 
        font-size: 1.8rem !important; 
        line-height: 1.3;
    }
    
    /* Menyesuaikan tinggi gambar berita utama di HP */
    .featured-image img { 
        height: 220px !important; 
    }
    
    /* Memastikan badge kategori utama tetap terlihat proporsional */
    .news-category {
        top: 12px !important;
        left: 12px !important;
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }

    /* Menyesuaikan ukuran judul berita utama di HP agar tidak terlalu memakan tempat */
    .featured-content h3 {
        font-size: 1.3rem !important;
        line-height: 1.4;
    }

    /* Memastikan pembungkus gambar berita sampingan memberikan ruang yang cukup */
    .news-card-image {
        height: 160px !important;
        position: relative;
    }

    /* Memastikan kategori floating pada berita sampingan tetap muncul dengan jelas */
    .news-category-small {
        display: block !important; /* Memaksa elemen tetap tampil */
        position: absolute !important;
        top: 12px !important;
        left: 12px !important;
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
    
    /* Mengurangi padding konten agar lebih hemat ruang di layar HP */
    .featured-content {
        padding: 20px !important;
    }
    .news-content {
        padding: 15px !important;
    }
}