/* Transparency Page Styles */

/* Hero uses shared .hero styles from style.css
   Only override what's specific to this page */
.hero-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 24px;
}

.content-section h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* State Grid */
.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.state-card {
    padding: 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
}

.state-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.state-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.state-card.has-data .state-status {
    background: #f0fdf4;
    color: #16a34a;
}

.state-card.no-data .state-status {
    background: #fef2f2;
    color: #dc2626;
}

.state-card.no-data {
    border-color: #fecaca;
    background: #fffbfb;
}

.state-card.has-data {
    border-color: #bbf7d0;
    background: #fbfffc;
}

.state-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Comparison List */
.comparison-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.comparison-item {
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.comparison-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Demands */
.demands-list {
    margin-top: 16px;
}

.demand-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.demand-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.demand-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.demand-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.demand-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Impact List */
.impact-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.impact-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.impact-list li:last-child {
    border-bottom: none;
}

/* CTA */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section a {
    color: #fff;
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 520px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .comparison-list {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }
}
