.associates-featured-layout {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: clamp(40px, 8vw, 90px);
    align-items: start;
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(45px, 7vw, 75px) clamp(28px, 5vw, 55px);
}

.associate-card__image {
    background: #ccb49a;
    overflow: hidden;
}

.associate-card__image img,
.associate-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.associate-card__name {
    margin-top: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.15;
}

.associate-card__position {
    margin: 3px 0 14px;
    padding-bottom: 0;
    line-height: 1.35;
}

.associate-card__bio {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 0;
}

.associate-card__links {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.associate-card__link {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8a7c5f;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    text-decoration: none;
}

.associate-card__link:hover,
.associate-card__link:focus {
    opacity: .8;
    color: #fff;
}

.associates-featured-layout__text {
    line-height: 1.7;
}

@media (max-width: 980px) {
    .associates-featured-layout,
    .associates-grid {
        grid-template-columns: 1fr;
    }
}
