.manor-team {
    background: #F1F1E7;
    padding: 54px 3vw 96px;
}

.manor-team__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 5vw;
    align-items: start;
}

.manor-team__intro h2 {
    font-family: "Items Text", Georgia, "Times New Roman", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -1.4px;
    color: #000;
    margin: 0 0 14px;
}

.manor-team__subheading {
    font-family: "Items Text", Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.1;
    color: #000;
    margin: 0 0 54px;
}

.manor-team__copy {
    max-width: 330px;
    font-family: "FK Grotesk", Arial, sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #1E1E1E;
}

.manor-team__copy p {
    margin: 0 0 18px;
}

.manor-team__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 30px;
}

.manor-team-card {
    min-width: 0;
}

.manor-team-card__image {
    width: 100%;
    aspect-ratio: 391 / 352;
    border-radius: 2px;
    overflow: hidden;
    background: #D9D6CC;
    margin-bottom: 16px;
}

.manor-team-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
}

.manor-team-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FK Grotesk Mono", "Courier New", monospace;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #000;
    background: #D9D6CC;
}

.manor-team-card h3 {
    font-family: "Items Text", Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.32px;
    color: #000;
    margin: 0 0 10px;
}

.manor-team-card p {
    font-family: "FK Grotesk Mono", "Courier New", monospace;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

/* Bottom team banner */
.manor-team-banner {
    min-height: 150px;
    background: #424E30;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
}

.manor-team-banner__text {
    font-family: "Items Text", Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: normal;
    font-weight: 400;
    color: #F1F1E7;
}

@media (max-width: 1200px) {
    .manor-team__inner {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .manor-team__copy {
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .manor-team__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
    }
}

@media (max-width: 640px) {
    .manor-team {
        padding: 54px 18px 72px;
    }

    .manor-team__intro h2 {
        font-size: 58px;
    }

    .manor-team__subheading {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .manor-team__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .manor-team-card h3 {
        font-size: 34px;
    }

    .manor-team-banner {
        min-height: 130px;
    }

    .manor-team-banner__text {
        font-size: 30px;
    }
}