.manor-location-providers-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    overflow: hidden;
}

/* Dark overlay so text stays readable over any photo */
.manor-location-providers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.manor-location-providers-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    filter: grayscale(0%); /* keeps text crisp if parent grayscale affects children */
}

.manor-location-providers-hero__heading {
    font-family: "ItemsText", Sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.1;
    color: #f5f5f0;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
}

.manor-location-providers-hero__heading em {
    font-style: italic;
    font-weight: 400;
}

.manor-location-providers-hero__subtitle {
    font-family: "FK Grotesk Mono", Sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e5e5e0;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .manor-location-providers-hero {
        min-height: 420px;
    }
    .manor-location-providers-hero__heading {
        font-size: 36px;
    }
    .manor-location-providers-hero__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }
}

.manor-location-team-intro {
    width: 100%;
    background-color: #f0efe6; /* cream/off-white, matches screenshot */
    padding: 80px 20px;
    text-align: center;
}

.manor-location-team-intro__inner {
    max-width: 800px;
    margin: 0 auto;
}

.manor-location-team-intro__heading {
	font-family: "ItemsText", Sans-serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 32px;
}

.manor-location-team-intro__body {
    font-family: "FK Grotesk", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1E1E1E;
    line-height: 1.6;
    margin: 0;
}

.manor-location-team-intro__body p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .manor-location-team-intro {
        padding: 56px 20px;
    }
    .manor-location-team-intro__heading {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }
    .manor-location-team-intro__tagline,
    .manor-location-team-intro__body {
        font-size: 15px;
    }
}

/* New Location providers Team grid */

.manor-location-team-grid {
    width: 100%;
    background-color: #f0efe6;
    padding: 0px 40px 80px;
}

.manor-location-team-grid__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.manor-location-team-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
}

.manor-team-grid-card {
    text-align: left;
}

.manor-team-grid-card__button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.manor-team-grid-card__image {
    width: 100%;
    aspect-ratio: 3 / 3.5;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #ddd;
}

.manor-team-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.manor-team-grid-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e4da;
    color: #999;
    font-size: 14px;
}

.manor-team-grid-card__name {
	color: #1C1A15;
	font-family: "Items Text";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
    margin: 0 0 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d5d3c6;
}

.manor-team-grid-card__role {
    color: #A9885E;
	font-family: "FK Grotesk Mono";
	font-size: 14px;
	font-style: normal;
    letter-spacing: 0.5px;
    margin: 10px 0 6px;
}

.manor-team-grid-card__link {
    display: inline-block;
    color: #8C523B;
	font-family: "FK Grotesk";
	font-size: 16px;
    color: #8c523b;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .manor-location-team-grid__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 600px) {
    .manor-location-team-grid {
        padding: 40px 20px 56px;
    }
    .manor-location-team-grid__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.manor-team-grid-card__button:hover,
.manor-team-grid-card__button:focus,
.manor-team-grid-card__button:active {
    background: none;
    background-color: transparent;
}