/* economy/style.css - Economic value subpage styles */
.econ-hero {
    background: linear-gradient(135deg, #1a4d2a 0%, #2d6a4f 100%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.econ-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.econ-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.stat-card {
    background: #f8f9fa;
    border-left: 5px solid #2d6a4f;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1a4d2a;
}
.chart-container {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
}
.value-chain {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
}
.chain-step {
    flex: 1;
    min-width: 150px;
    background: #fef9e6;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    border-top: 4px solid #f4a261;
}
.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}
.data-table th, .data-table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: left;
}
.data-table th {
    background: #e9ecef;
    font-weight: 600;
}
.reference-list {
    font-size: 0.9rem;
    background: #f1f3f5;
    padding: 1rem;
    border-radius: 0.5rem;
}
.citation {
    font-size: 0.85rem;
    color: #495057;
    margin-top: 1rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}
@media (max-width: 768px) {
    .value-chain { flex-direction: column; }
    .econ-hero h1 { font-size: 1.6rem; }
}