/* Extracted from regions.html — 2026-03-05 */

/* --- Regions Index Page overrides --- */
        body { background-color: #1a202c; color: #e2e8f0; }

        .page-hero {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
            text-align: center;
            padding: 60px 20px 40px;
            border-bottom: 2px solid #4a5568;
        }
        .page-hero h1 {
            font-family: 'Spectral', Georgia, serif;
            font-size: 3rem;
            color: #e2e8f0;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .page-hero p {
            color: #a0aec0;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .map-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .map-section > h2 {
            font-family: 'Spectral', Georgia, serif;
            font-size: 1.8rem;
            color: #bb6bd9;
            margin-bottom: 8px;
        }
        .map-instruction {
            color: #a0aec0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .regions-grid-section {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }
        .regions-grid-section > h2 {
            font-family: 'Spectral', Georgia, serif;
            font-size: 1.8rem;
            color: #bb6bd9;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #4a5568;
        }

        .region-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        .region-card {
            background: #2d3748;
            border: 1px solid #4a5568;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: #e2e8f0;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            display: block;
        }
        .region-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
            border-color: #9b59b6;
        }
        .region-card-banner {
            width: 100%;
            height: 140px;
            background-size: cover;
            background-position: center;
            display: block;
        }
        .region-card-body {
            padding: 18px;
        }
        .region-card-body h3 {
            font-family: 'Spectral', Georgia, serif;
            font-size: 1.2rem;
            color: #e2e8f0;
            margin-bottom: 4px;
        }
        .region-card-body .sub {
            font-size: 0.82rem;
            color: #bb6bd9;
            font-style: italic;
            margin-bottom: 10px;
        }
        .region-card-body p {
            font-size: 0.88rem;
            color: #a0aec0;
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 600px) {
            .page-hero h1 { font-size: 2rem; }
            .region-cards { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 400px) {
            .region-cards { grid-template-columns: 1fr; }
        }
