.network.block {
    width: 100%;
    padding-top: calc(100vw * 20 / var(--page-width));
}

.network.block:before {
    content: "";
    display: block;
    width: 79.6vw;
    height: 2px;
    background-color: var(--color-black);
    position: absolute;
    top: 0;
    left: 9.7vw;
}

.network .title {
    -webkit-grid-column: 2 / span 5;
    grid-column: 2 / span 5;
}

.network .text-container {
    -webkit-grid-column: 7 / span 5;
    grid-column: 7 / span 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.network .text-container .button {
    padding: calc(100vw * 8.5 / var(--page-width))
        calc(100vw * 15 / var(--page-width));
    margin-top: var(--padding-general);
}

.network .text-container p a {
    text-decoration: underline;
}

.network .all-people-subtitle {
    -webkit-grid-column: 4 / span 4;
    grid-column: 4 / span 4;
}

.network .all-people-country {
    -webkit-grid-column: span 2;
    grid-column: span 2;
}

.all-people-row.active .all-people-country {
    font-family: "FKGrotesk-Black";
}

.network .all-people-text {
    -webkit-grid-column: span 10;
    grid-column: span 10;
    display: grid;
    -webkit-grid-template-columns: repeat(10, 1fr);
    grid-template-columns: repeat(10, 1fr);
    -webkit-grid-gap: var(--padding-general);
    grid-gap: var(--padding-general);
}

.network .all-people-text .text {
    -webkit-grid-column: span 6;
    grid-column: span 6;
}

.network .all-people-text .image {
    -webkit-grid-column: span 3;
    grid-column: span 3;
}

.network .all-people-text .image .inner {
    width: calc(100vw * 160 / var(--page-width));
    position: relative;
    margin-bottom: var(--line-height-body);
}

.network .all-people-text .image .inner:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 101%;
}

.network .all-people-text .image .inner picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.network .all-people-text .image .inner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.network .text-links {
    margin-bottom: var(--line-height-body);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(100vw * 10 / var(--page-width));
}

.network .text-links a {
    text-decoration: underline;
}

/* RESPONSIVE */
@media only screen and (max-width: 740px) {
    .network.block {
        padding-top: 0;
    }

    .network.block:before {
        position: relative;
        width: 100%;
        left: 0;
        margin-bottom: calc(100vw * 20 / var(--page-width));
    }

    .network .title,
    .network .text-container {
        -webkit-grid-column: span 12 !important;
        grid-column: span 12 !important;
    }

    .network .title {
        font-size: var(--font-size-h2);
        line-height: var(--line-height-h2);
        letter-spacing: var(--letter-spacing-h2);
    }

    .network .all-people {
        margin-top: calc(100vw * 40 / var(--page-width));
    }

    .network .all-people-name,
    .network .all-people-country {
        -webkit-grid-column: span 5;
        grid-column: span 5;
    }

    .network .all-people-subtitle {
        display: none;
    }

    .network .all-people-text {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
}
