/* ESG30 page-specific styles. Shared colors and spacing live in ../esg-theme.css. */

.esg30-page .esg30-highlights-panel {
    padding: 20px 28px 30px;
    border: 3px solid #49c56b;
    border-radius: 48px;
    background: #f5fcf5;
}

.esg30-page .esg30-highlights-panel h3 {
    margin: 0 0 26px;
    color: #49c56b;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-indent: 0;
}

.esg30-page .esg30-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.esg30-page .esg30-highlight-item {
    text-align: center;
}

.esg30-page .esg30-highlight-item p {
    margin: 0;
    text-indent: 0;
}

.esg30-page .esg30-highlight-item .label {
    color: #1f1f1f;
    font-size: 22px;
    line-height: 1.35;
}

.esg30-page .esg30-highlight-item .value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.esg30-page .esg30-highlight-item .number {
    color: #49c56b;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.esg30-page .esg30-highlight-item .unit {
    color: #1f1f1f;
    font-size: 28px;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .esg30-page .esg30-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }
}

@media (max-width: 640px) {
    .esg30-page .esg30-highlights-panel {
        padding: 18px 18px 24px;
        border-radius: 28px;
    }

    .esg30-page .esg30-highlights-panel h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .esg30-page .esg30-highlights-grid {
        grid-template-columns: 1fr;
    }

    .esg30-page .esg30-highlight-item .label {
        font-size: 20px;
    }

    .esg30-page .esg30-highlight-item .number {
        font-size: 34px;
    }

    .esg30-page .esg30-highlight-item .unit {
        font-size: 24px;
    }
}
