/*
tes wkwk
Theme Name: GV2 Web Gallery
Theme URI: 
Author: AI Assistant
Author URI: 
Description: Tema modern bergaya glassmorphism khusus untuk galeri foto. Anda dapat menambahkan halaman dengan block gambar, dan tema ini merender hal tersebut menjadi galeri dinamis.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
Text Domain: gv2
*/

:root {
    --bg-color: transparent;
    --text-color: #333333;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --card-bg: transparent;
    --border-color: transparent;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.page-header {
    text-align: center;
    margin-top: 1rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #006C11;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- GLOBAL SITE HEADER --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-branding a {
    text-decoration: none;
    color: #006C11;
    font-size: 1.5rem;
    font-weight: 600;
}

.site-branding img {
    max-height: 50px;
    width: auto;
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #006C11;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.nav-btn {
    background: #f1f5f9;
    color: #333333;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nav-btn:hover:not(:disabled) {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#page-indicator {
    font-weight: 600;
    color: #333333;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal.show {
    display: flex;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #006C11;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}



/* --- LOKASI LAYOUT STYLES --- */
.osm-map-container iframe {
    width: 100%;
    border-radius: 12px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    color: #006C11;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.location-card p strong {
    color: #1e293b;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.page-content {
    color: #334155;
    line-height: 1.6;
}

/* --- SITE FOOTER STYLES --- */
.site-footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding-top: 4rem;
    margin-top: auto; 
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 280px; /* Fixed width */
    flex-shrink: 0;
}

.footer-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #006C11;
    margin: 0;
}

.footer-brand img {
    max-height: 60px;
    width: auto;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

/* Fixed widths for sub-components in footer-info */
.footer-address {
    width: 240px;
    flex-shrink: 0;
}

.footer-contact {
    width: 220px;
    flex-shrink: 0;
}

.footer-links {
    width: 180px;
    flex-shrink: 0;
}

.footer-info h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-info p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #006C11;
}

.footer-bottom {
    background-color: #e2e8f0;
    text-align: center;
    padding: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-brand,
    .footer-address,
    .footer-contact,
    .footer-links {
        width: 100% !important;
    }
    .footer-info {
        justify-content: flex-start;
        gap: 2rem;
        flex-direction: column;
    }
}

/* --- FRONT PAGE STYLES --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    width: 100%;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Lighter overlay based on image */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    padding-bottom: 4rem; /* Lift up from cards */
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    background: #84cc16; /* Light green like the picture */
    color: #064e3b;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero-btn:hover {
    background: #65a30d;
    transform: translateY(-2px);
    color: #fff;
}

/* --- OVERLAPPING CARDS --- */
.overlapping-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: -80px; /* Pull up over hero lebih tinggi ukurannya */
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}
.overlap-card {
    background-color: #bef264; /* Lime green */
    border-radius: 12px;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1a511c;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    padding: 1.5rem;
}
.overlap-card:not(.no-hover):hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
.overlap-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.overlap-card .card-text {
    font-size: 1.5rem;
    font-weight: 600;
}

/* --- ABOUT SECTION --- */
.about-desc p {
    color: #006C11;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-3-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Menempel erat seperti gambar */
}
.about-3-images img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* TV Section Play Btn */
#btn-tv:hover .play-btn-overlay {
    background: rgba(0,0,0,0.4) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    transition: all 0.3s;
}

/* --- NEWS MASONRY --- */
.news-masonry {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 10px;
}
.news-hero {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.news-hero, .news-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition: filter 0.3s;
}
.news-hero:hover, .news-item:hover {
    filter: brightness(1.1);
}
.news-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 100%);
}
.news-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
}
.news-content h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}
.news-hero .news-content h3 {
    font-size: 1.8rem;
}
.news-meta {
    font-size: 0.8rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.news-cat {
    background: #a4dc2f;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #064e3b;
    font-weight: 600;
}

@media (max-width: 900px) {
    .news-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 250px;
    }
    .news-hero {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}
@media (max-width: 600px) {
    .news-masonry {
        grid-template-columns: 1fr;
    }
    .news-hero {
        grid-column: 1 / 2;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    .about-text {
        padding-right: 0 !important;
        margin-bottom: -2rem;
    }
}

.about-bottom-text i {
    font-weight: 300 !important;
}
.about-bottom-text b {
    font-weight: 800 !important;
}

/* --- SINGLE POST & COMMENTS --- */
.single-post-image {
    text-align: center;
}
.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}
.single-post-content h1, 
.single-post-content h2, 
.single-post-content h3 {
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-comments-area {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}
.comments-title, .comment-reply-title {
    color: #006C11;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
#reply-title small a {
    color: #dc2626;
    font-size: 0.9rem;
    margin-left: 10px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}
.comment-list li {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}
.comment-list li .children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1.5rem;
    border-left: 2px solid #e2e8f0;
}
.comment-author img {
    border-radius: 50%;
    margin-right: 1rem;
    vertical-align: middle;
}
.comment-author b {
    color: #1e293b;
    font-size: 1.1rem;
}
.comment-metadata {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.comment-metadata a {
    color: #94a3b8;
    text-decoration: none;
}
.comment-content p {
    color: #475569;
    line-height: 1.6;
}
.reply a {
    color: #006C11;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
}
.comment-notes, .logged-in-as {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.comment-form p {
    margin-bottom: 1rem;
}
.comment-form label {
    font-weight: 600;
    color: #334155;
    display: block;
    margin-bottom: 0.5rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #006C11;
}
.comment-form textarea {
    height: 150px;
    resize: vertical;
}
.comment-form .form-submit {
    margin-top: 1rem;
}
.comment-form input[type="submit"] {
    background: #006C11;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}
.comment-form input[type="submit"]:hover {
    background: #004d0c;
    transform: translateY(-2px);
}

/* --- BLOG PAGE INDEX (home.php) --- */
.news-category-nav {
    margin-top: 3rem;
}
.news-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}
.news-cat-list li a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.news-cat-list li a:hover {
    color: #006C11;
}
.news-divider {
    border: none;
    border-top: 1px solid #cbd5e1;
    margin: 1.5rem 0 4rem 0;
}

.news-spotlight-wrapper {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 4rem;
}

/* Kiri: Berita Utama */
.spotlight-main-link {
    text-decoration: none;
    display: block;
}
.spotlight-main-link:hover .spotlight-main-title {
    color: #16a34a;
}
.spotlight-img-wrap {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}
.spotlight-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s;
}
.spotlight-main-link:hover .spotlight-img-wrap img {
    transform: scale(1.02);
}
.spotlight-cat, .spotlight-side-cat {
    display: block;
    color: #be185d; /* Pinkish red (mirip gambar Spotlight) */
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}
.spotlight-main-title {
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    transition: color 0.2s;
}
.spotlight-main-excerpt {
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Kanan: Sidebar Spotlight */
.spotlight-heading {
    color: #ea580c; /* Orange as requested from image */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;
}
.spotlight-side-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.spotlight-side-item h4 {
    margin: 0;
    line-height: 1.4;
}
.spotlight-side-item h4 a {
    color: #0f172a;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.2s;
}
.spotlight-side-item h4 a:hover {
    color: #16a34a;
}

/* Bawah: Grid 2 Kolom */
.news-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.news-grid-item {
    text-decoration: none;
    display: block;
    background: #fff;
}
.news-grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    transition: transform 0.3s;
}
.news-grid-item:hover img {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.1);
}
.news-grid-title {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    transition: color 0.2s;
}
.news-grid-item:hover .news-grid-title {
    color: #006C11;
}

@media (max-width: 900px) {
    .news-spotlight-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .news-grid-2col {
        grid-template-columns: 1fr;
    }
    .spotlight-img-wrap img, .news-grid-item img {
        height: 250px;
    }
    .spotlight-main-title {
        font-size: 1.8rem;
    }
}

/* Image Caption Alignment */
/* Founder Card Styles */
.founder-card {
    background: #fff;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-card figure.wp-block-image {
    margin: 0 !important;
}

.founder-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 2px solid #f1f5f9;
}

.founder-card h2, .founder-card h3 {
    padding: 1.5rem 1.5rem 0.5rem !important;
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: #1e293b;
}

.founder-card p {
    padding: 0 1.5rem 1.5rem !important;
    margin: 0 !important;
    font-size: 0.95rem;
    color: #64748b;
}

.founder-quote-area {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff !important;
    padding: 1.5rem !important;
    margin-top: auto;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- PODCAST GRID --- */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}



}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .app-container {
        max-width: 95%;
        padding: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    .site-branding {
        flex: 1;
    }
    .menu-toggle {
        display: block;
    }
    .main-navigation {
        width: 100%;
        order: 3;
    }
    .main-navigation ul {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-top: 1rem;
        border-top: 1px solid #e2e8f0;
        width: 100%;
        background: white;
    }
    
    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .main-navigation ul li a {
        display: block;
        padding: 1rem;
        text-align: left;
    }

    .main-navigation.toggled ul {
        display: flex !important;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .overlap-card {
        width: 160px;
        height: 160px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Lokasi Page Specific Mobile Fixes */
    .lokasi-filter-form {
        flex-direction: column !important;
    }
    
    .lokasi-filter-form select, 
    .lokasi-filter-form button,
    .lokasi-filter-form a {
        width: 100% !important;
        flex: none !important;
    }
    
    #dynamic-map {
        height: 300px !important;
    }
    
    .map-legend {
        gap: 15px !important;
        padding: 10px !important;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }
}
