/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Guardian Text Egyptian Web', Georgia, serif;
    line-height: 1.6;
    color: #121212;
    background-color: #ffffff;
}

/* Header */
.guardian-header {
    background-color: #052962;
    color: white;
    padding: 1rem 0;
    border-bottom: 4px solid #ff5943;
}
.guardian-logo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-section {
    background: linear-gradient(135deg, #052962 0%, #ff5943 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}
.hero-title { font-size: 3rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.main-content { background: white; }
.sidebar {
    background: #f6f6f6;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Article meta */
.article-meta { border-bottom: 1px solid #dcdcdc; padding-bottom: 1rem; margin-bottom: 2rem; }
.article-date { color: #767676; font-size: 0.9rem; }
.article-title { font-size: 2.5rem; font-weight: bold; margin: 1rem 0; line-height: 1.2; }
.article-standfirst { font-size: 1.2rem; color: #121212; font-weight: 500; line-height: 1.4; margin-bottom: 2rem; }

/* Controls */
.controls-section {
    background: #f6f6f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}
.controls-title { font-size: 1.3rem; font-weight: bold; margin-bottom: 1rem; color: #052962; }
.filter-group { margin-bottom: 1rem; }
.filter-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: #121212; }
.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.stat-card { background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.stat-number { font-size: 2rem; font-weight: bold; color: #ff5943; }
.stat-label { color: #767676; font-size: 0.9rem; }

/* Map & chart */
#map { height: 500px; margin: 2rem 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
#chart-container { margin: 2rem 0; background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* Article body */
.article-body { font-size: 1.1rem; line-height: 1.7; }
.article-body p { margin-bottom: 1.5rem; }
.article-body h2 { font-size: 1.8rem; font-weight: bold; margin: 2rem 0 1rem 0; color: #052962; }

/* Tooltip + region details */
.tooltip-content {
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    max-width: 250px;
}
.region-details {
    background: white;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: none;
}
.region-details.active { display: block; }
.monument-list { list-style: none; margin-top: 1rem; }
.monument-list li { padding: 0.5rem 0; border-bottom: 1px solid #f0f0f0; }
.monument-list li:last-child { border-bottom: none; }

/* Footer */
.guardian-footer {
    background: #121212;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .article-title { font-size: 2rem; }
}
