.associations.grey {
    background-color: #EDEDED;
}
.associations.white_bg {
    background-color: #fff;
}

.associations__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(24px, 84 * (100vw / 1920), 84px);
    margin-bottom: clamp(26px, 84 * (100vw / 1920), 84px);
}

.associations .associations__title {
    flex: 0 0 auto;
    margin: 0;
}

.associations .associations__subtitle {
    flex: 0 1 60%;
    margin: 0;
    color: #000;
    font-size: clamp(15px, 56 * (100vw / 1920), 56px);
    line-height: clamp(16px, 56 * (100vw / 1920), 56px);
    font-weight: 500;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.associations__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
}

.associations__item {
    display: flex;
    align-items: flex-start;
    gap: clamp(26px, 56 * (100vw / 1920), 56px);
    padding: clamp(16px, 30 * (100vw / 1920), 30px) 0;
    border-top: 1px solid #D1D1D1;
}

@media (min-width: 1025px) {
    .associations__item {
        border-top-width: 2px;
        padding-top: clamp(19px, 21 * (100vw / 1920), 21px);
        padding-bottom: 25px;
    }
}

.associations__item_logo {
    flex: 0 0 auto;
}

.associations__item_logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: clamp(46px, 100 * (100vw / 1920), 100px);
}

.associations__item_content {
    flex: 1 1 0;
    min-width: 0;
}

.associations__item_name {
    margin: 0 0 clamp(8px, 12 * (100vw / 1920), 12px);
    font-size: clamp(15px, 33 * (100vw / 1920), 33px);
    line-height: clamp(15px, 36 * (100vw / 1920), 36px);
    font-weight: 500;
    text-transform: uppercase;
}

.associations__item_description {
    margin: 0;
    color: #818181;
}

.associations__link {
    display: inline-block;
    margin-top: clamp(26px, 84 * (100vw / 1920), 84px);
    font-size: clamp(17px, 33 * (100vw / 1920), 33px);
    line-height: clamp(19px, 36 * (100vw / 1920), 36px);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

@media (max-width: 1024px) {
    .associations__items {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    /* preserve desktop's 2-column reading order (col 1 top-to-bottom, then col 2) when stacked into 1 column */
    .associations__item:nth-child(odd) {
        order: 1;
    }
    .associations__item:nth-child(even) {
        order: 2;
    }
}

@media (max-width: 767px) {
    .associations__header {
        flex-direction: column;
        gap: 12px;
    }

    .associations .associations__subtitle {
        font-weight: 400;
    }
}
