.kl-page-template--infrastructure {
    padding-top: 6rem;
}

.kl-infrastructure-page {
    position: relative;
    isolation: isolate;
}

.kl-infrastructure-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 8%, rgba(242, 196, 99, 0.14), transparent 22%),
        radial-gradient(circle at 18% 18%, rgba(205, 163, 73, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.92) 44%, rgba(8, 8, 8, 0.98));
    pointer-events: none;
    z-index: -1;
}

.kl-infrastructure-panel {
    padding: 1rem 0 4rem;
}

.kl-infrastructure-panel .kl-highlights-grid__grid,
.kl-infrastructure-panel .kl-infrastructure-stats__grid {
    gap: 1.25rem;
}

.kl-infrastructure-panel .kl-highlight-card,
.kl-infrastructure-panel .kl-infrastructure-stats__item {
    background: rgba(18, 18, 18, 0.92);
}

.kl-infrastructure-stats__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kl-infrastructure-stats__item {
    padding: 1.4rem;
    border: 1px solid var(--kl-color-border);
    border-radius: var(--kl-radius-md);
    box-shadow: var(--kl-shadow-soft);
}

.kl-infrastructure-stats__item strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--kl-color-gold-strong);
    font-size: 1.8rem;
}

.kl-infrastructure-stats__item span {
    color: var(--kl-color-muted);
    line-height: 1.55;
}

@media (max-width: 1080px) {
    .kl-infrastructure-stats__grid,
    .kl-infrastructure-panel .kl-highlights-grid__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .kl-infrastructure-stats__grid,
    .kl-infrastructure-panel .kl-highlights-grid__grid {
        grid-template-columns: 1fr;
    }
}

