/* State & city listing components */
.stats-inline {
    font-size: 0.95rem;
    color: #51606f;
}

.stats-inline strong {
    color: #0d5edc;
    font-weight: 600;
}

.stats-inline .separator {
    margin: 0 8px;
    color: #c4ccd4;
}

.state-card,
.city-card {
    display: flex;
}

.state-card-block,
.city-card-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 22px 18px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 37, 63, 0.07);
    border: 1px solid rgba(13, 94, 220, 0.05);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.state-card-block:hover,
.city-card-block:hover,
.city-card-block--accent {
    background: rgba(13, 94, 220, 0.07);
    box-shadow: 0 14px 26px rgba(15, 37, 63, 0.12);
    text-decoration: none;
}

.state-card-block h3,
.city-card-block h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #0d5edc;
}

.station-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2f3d4c;
    font-weight: 600;
}

.station-stat__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* background: linear-gradient(145deg, #f6f8fb, #d5dbe6); */
    /* border: 1px solid rgba(143, 156, 180, 0.4); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.station-stat__icon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url('../img/icons/ev-plug.png') center/contain no-repeat;
    opacity: 0.9;
}

.station-stat__count {
    font-size: 0.95rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.station-card {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(13, 94, 220, 0.08);
    box-shadow: 0 10px 25px rgba(15, 37, 63, 0.07);
    background: #fff;
}

.station-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.station-card__meta {
    font-size: 0.85rem;
    color: #6b7480;
    margin-bottom: 0;
}

.seo-note {
    font-size: 0.95rem;
    color: #4a5662;
    border-top: 1px solid rgba(15, 37, 63, 0.08);
    padding-top: 1.5rem;
}
.seo-note__links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.seo-note__links li {
    margin-bottom: 0.4rem;
}

.seo-note__links a {
    color: #0d5edc;
    text-decoration: underline;
}


.city-major-stats .city-stat-card,
.city-fuel-card,
.city-feature-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 37, 63, 0.08);
    box-shadow: 0 14px 30px rgba(11, 32, 54, 0.06);
    background: #fff;
    padding: 20px;
    height: 100%;
}

.city-stat-card__label {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #6c7586;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.city-stat-card__value {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0d5edc;
    margin-bottom: 0;
}

.city-fuel-card {
    display: block;
    text-align: center;
    padding: 24px 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-fuel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(11, 32, 54, 0.12);
    text-decoration: none;
}

.city-fuel-card__label {
    font-weight: 600;
    color: #263041;
    margin-bottom: 0.25rem;
}

.city-fuel-card__value {
    margin-bottom: 0;
    color: #6c7586;
}

.city-feature-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.city-feature-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.city-feature-card__pill,
.city-feature-card__badge {
    background: rgba(13, 94, 220, 0.08);
    color: #0d5edc;
    padding: 4px 10px;
    border-radius: 999px;
}

.city-feature-card__badge {
    background: rgba(142, 152, 173, 0.15);
    color: #4b5666;
}

.city-feature-card h3 {
    font-size: 1rem;
    margin: 0;
}

.city-feature-card__meta {
    font-size: 0.9rem;
    color: #6c7586;
    margin-bottom: 0;
}

.city-feature-card__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #4b5666;
}

@media (max-width: 575px) {
    .city-stat-card__value {
        font-size: 1.3rem;
    }
}

header + main > *:first-child {
    margin-top: 0;
}
