/* Infrastructure page */

.page-infrastructure .infra-hero-split__img {
    margin-bottom: 0;
    height: 100%;
}

.page-infrastructure .infra-hero-split__img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.page-infrastructure .infra-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
    margin-bottom: 0;
}

.page-infrastructure .infra-stat {
    padding: 1.25rem 1rem;
    text-align: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(26, 102, 166, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-interactive);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.page-infrastructure .infra-stat:hover {
    border-color: rgba(34, 139, 84, 0.25);
    box-shadow: var(--shadow-md);
}

.page-infrastructure .infra-stat__value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a7a4c;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.page-infrastructure .infra-stat__label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted, #5a6a7a);
}

.page-infrastructure .infra-section {
    margin-bottom: 2.5rem;
}

.page-infrastructure .infra-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(34, 139, 84, 0.25);
}

.page-infrastructure .infra-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.35rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 102, 166, 0.1);
    border-top: 3px solid #1a7a4c;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-interactive);
}

.page-infrastructure .infra-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.page-infrastructure .infra-card__icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.page-infrastructure .infra-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.page-infrastructure .infra-card p {
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 0;
}

.page-infrastructure .infra-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.page-infrastructure .infra-split img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(26, 102, 166, 0.1);
    box-shadow: var(--shadow-sm);
}

.page-infrastructure .infra-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.page-infrastructure .infra-related a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(26, 102, 166, 0.06);
    border: 1px solid rgba(26, 102, 166, 0.12);
    text-decoration: none;
    transition: var(--transition-interactive);
}

.page-infrastructure .infra-related a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 767.98px) {
    .page-infrastructure .infra-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-infrastructure .infra-split {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-infrastructure .infra-stat:hover,
    .page-infrastructure .infra-card:hover {
        transform: none;
    }
}
