/* 
 * Design System: Kabale High Court Circuit
 * Version: 1.0
 * Colors: Navy (#0B1D3A), Gold (#C9A84C)
 * Typography: Playfair Display (Headings), Inter (Body)
 */

:root {
    /* Primary Colors */
    --color-navy: #0B1D3A;
    --color-navy-light: #162C4E;
    --color-gold: #C9A84C;
    --color-gold-dark: #A68A3E;
    --color-gold-light: #D4B96E;
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-bg: #F8F9FA;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #E0E0E0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* 1. Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-navy);
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* 2. Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }

/* 3. Announcement Bar */
.announcement-bar {
    background-color: var(--color-gold);
    color: var(--color-navy);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.announcement-bar a {
    color: var(--color-navy);
    text-decoration: underline;
    margin-left: 5px;
}

.announcement-dismiss {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-navy);
    font-size: 20px;
    cursor: pointer;
}

/* 4. Navbar */
.site-navbar {
    background-color: var(--color-navy);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 50px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.brand-subtitle {
    color: var(--color-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.nav-btn-login {
    background-color: var(--color-gold);
    color: var(--color-navy) !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-btn-login:hover {
    background-color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
}

/* 5. Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-gold:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.btn-outline {
    background: none;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* 6. Hero / Slider Section */
.hero-slider {
    width: 100%;
    height: 80vh; /* Responsive height */
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center top; /* Better for people/buildings */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 29, 58, 0.4), rgba(11, 29, 58, 0.8)); /* Dynamic gradient overlay */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    color: var(--color-white);
    font-size: clamp(32px, 8vw, 64px); /* Fluid typography */
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-content p {
    font-size: clamp(16px, 4vw, 22px);
    margin: 0 auto 40px;
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide-content .hero-btns {
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    gap: 15px;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.swiper-slide-active .slide-content h1,
.swiper-slide-active .slide-content p,
.swiper-slide-active .slide-content .hero-btns {
    transform: translateY(0);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-gold) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--color-white) !important;
    opacity: 0.5;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    opacity: 1;
    width: 30px !important;
    border-radius: 6px !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    
    .slide-content .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Original static hero fallback/ref */
.hero {
    background: linear-gradient(rgba(11, 29, 58, 0.8), rgba(11, 29, 58, 0.8)), url('../images/header3.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 120px 0;
    text-align: center;
}

/* 7. Cards */
.card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* 8. Footer */
.site-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h4 {
    color: var(--color-white);
    margin: 15px 0;
}

.footer-logo {
    height: 70px;
}

.footer-col h5 {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--color-gold);
}

/* 9. Subscribe Section */
.site-subscribe {
    background-color: var(--color-gold);
    padding: 50px 0;
}

.subscribe-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscribe-text h3 {
    margin-bottom: 5px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.subscribe-input-group {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
}

.subscribe-form button {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    padding: 12px 25px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .subscribe-input-group {
        flex-direction: column;
        gap: 10px;
    }
    .subscribe-form input {
        border-radius: 4px;
        width: 100%;
    }
    .subscribe-form button {
        border-radius: 4px;
        width: 100%;
        padding: 14px 25px;
    }
}

/* 10. Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Mobile menu logic in JS */
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .subscribe-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════
   11. MEDIA MENTIONS PAGE
   ═══════════════════════════════════════════ */

/* ── Hero Section ── */
.media-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, #162C4E 60%, #1a3560 100%);
    color: var(--color-white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.media-hero-content {
    position: relative;
    z-index: 2;
}

.media-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--color-gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.media-hero h1 {
    color: var(--color-white);
    font-size: clamp(32px, 6vw, 52px);
    margin-bottom: 15px;
}

.media-hero p {
    font-size: 18px;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
}

.media-hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}

/* ── Filter Tabs ── */
.media-filters {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.filter-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    background: transparent;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}

.filter-tab:hover {
    background: #f3f4f6;
    color: var(--color-navy);
}

.filter-tab.active {
    background: var(--color-navy);
    color: var(--color-white);
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(0,0,0,0.08);
}

.filter-tab.active .filter-count {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
}

/* ── Media Grid ── */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* ── Media Card (Base) ── */
.media-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: transparent;
}

/* ── Card Visual Headers ── */
.media-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.media-card-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card-image-overlay i {
    color: var(--color-white);
    font-size: 28px;
    background: rgba(201,168,76,0.9);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.media-card:hover .media-card-image-overlay {
    opacity: 1;
}

.media-card:hover .media-card-image-overlay i {
    transform: scale(1);
}

.media-card-social-header {
    background: linear-gradient(135deg, #7C3AED 0%, #a855f7 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media-card-social-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.social-platform-icon {
    font-size: 40px;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.social-source-name {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.media-card-link-header {
    background: linear-gradient(135deg, #2563EB 0%, #3b82f6 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media-card-link-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.link-icon {
    font-size: 40px;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

/* ── Card Body ── */
.media-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.media-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.media-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: color-mix(in srgb, var(--badge-color) 12%, transparent);
    color: var(--badge-color);
}

.media-date {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--color-navy);
}

.media-card-excerpt {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    gap: 10px;
    flex-wrap: wrap;
}

.media-source {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.media-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold-dark);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.media-card-link:hover {
    color: var(--color-navy);
    gap: 10px;
}

/* ── Empty State ── */
.media-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-muted);
}

.media-empty i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.media-empty h3 {
    color: var(--color-navy);
    margin-bottom: 10px;
}

/* ── Lightbox ── */
.media-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.media-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.media-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.media-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* ── Media Page Responsive ── */
@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

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

    .media-hero p {
        font-size: 16px;
    }

    .filter-tabs {
        gap: 6px;
        padding: 10px 0;
    }

    .filter-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

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

    .media-card-image {
        height: 180px;
    }

    .media-lightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .filter-tab span:not(.filter-count) {
        display: none;
    }
    
    .filter-tab i {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════
   12. HOMEPAGE ENHANCEMENTS
   ═══════════════════════════════════════════ */

/* ── Welcome Section ── */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text .lead {
    font-size: 20px;
    color: var(--color-navy-light);
    margin-bottom: 20px;
}

.welcome-image {
    text-align: center;
}

.judge-frame {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.judge-frame::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.5;
}

.judge-frame img {
    display: block;
    border-radius: 6px;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
}

.judge-frame:hover {
    transform: scale(1.02);
}

.judge-caption {
    margin-top: 25px;
}

.judge-caption h4 {
    margin-bottom: 5px;
    color: var(--color-navy);
}

.judge-caption p {
    color: var(--color-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ── Contact & Map ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-details i {
    color: var(--color-gold);
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ── Responsive Adjustments ── */
@media (max-width: 992px) {
    .welcome-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-text {
        text-align: center;
        order: 2;
    }
    
    .welcome-image {
        order: 1;
    }

    .contact-info {
        text-align: center;
    }
    
    .contact-details p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .judge-frame {
        padding: 10px;
    }
    
    .contact-map, .map-iframe {
        min-height: 300px;
    }
}
