.network-page {
    align-items: stretch;
    padding: 0 clamp(1.25rem, 6vw, 6rem);
}

.network-container {
    width: min(100%, 1040px);
    margin: auto;
    padding: clamp(8rem, 16vh, 11rem) 0 4rem;
}

.network-hero {
    max-width: 920px;
    margin-bottom: clamp(4.5rem, 10vw, 7rem);
}

.network-hero .symbol {
    width: fit-content;
    margin-bottom: 3.5rem;
}

.network-title {
    margin-bottom: 1.75rem;
    color: #fff;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.065em;
    animation: titleFadeIn 1.2s ease-out both;
}

.network-subtitle {
    max-width: 520px;
    color: #8a8a8a;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    line-height: 1.65;
    animation: subtitleFadeIn 1.2s ease-out 0.18s both;
}

.city-selector {
    border-top: 1px solid #292929;
    animation: formSlideUp 1.2s ease-out 0.35s both;
}

.city-row {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: clamp(1.25rem, 4vw, 3.5rem);
    align-items: center;
    min-height: 9rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #292929;
    color: inherit;
    text-decoration: none;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.city-row:hover,
.city-row:focus-visible {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    outline: none;
}

.city-row-index,
.city-row-meta {
    color: #5e5e5e;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.city-row-main {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.city-row-name {
    min-width: clamp(8rem, 20vw, 14rem);
    color: #f5f5f5;
    font-size: clamp(2rem, 5vw, 4.25rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
}

.city-row-description {
    max-width: 22rem;
    color: #777;
    font-size: 0.86rem;
    line-height: 1.55;
}

.city-row-meta {
    white-space: nowrap;
}

.network-note {
    max-width: 32rem;
    margin-top: 2rem;
    color: #555;
    font-size: 0.74rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.network-footer {
    display: flex;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #1f1f1f;
    justify-content: space-between;
    color: #4f4f4f;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.network-footer-links {
    display: flex;
    gap: 1.5rem;
}

.network-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.network-footer a:hover,
.network-footer a:focus-visible {
    color: #aaa;
}

@media (max-width: 720px) {
    .network-container {
        padding-top: 7rem;
    }

    .network-hero {
        margin-bottom: 4rem;
    }

    .network-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .city-row {
        grid-template-columns: 2rem minmax(0, 1fr);
        min-height: 8.5rem;
        gap: 1rem;
    }

    .city-row-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .city-row-name {
        min-width: 0;
        font-size: clamp(2.4rem, 12vw, 3.75rem);
    }

    .city-row-meta {
        display: none;
    }

    .network-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
    }

    .network-footer-links {
        flex-wrap: wrap;
        gap: 1rem 1.25rem;
    }
}
