/* Our Team Section */
.our-team {
    padding: 80px 20px;
    padding-top: 120px;
    position: relative;
}

.our-team__container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Decorative Images */
.our-team__decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.our-team__decor--top {
    top: 0;
    left: 0;
    height: auto;
    transform: translateY(-50%);
}

.our-team__decor--bottom {
    bottom: 0;
    right: 0;
    height: auto;
    transform: translateY(50%);
}

/* Hero within Our Team */
.our-team__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
}

.our-team__hero-title {
    font-family: var(--font-family-archer, 'Archer', serif);
    font-weight: 700;
    font-size: 62px;
    line-height: 100%;
    letter-spacing: -1px;
    color: var(--color-text-teal, #196B81);
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.our-team__hero-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 360px;
    height: 15px;
    background-image: url('../images/BRUSHES.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(-50%);
}

.our-team__hero-description {
    font-family: var(--font-family-archer, 'Archer', serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    color: var(--color-black, #000);
    margin: 0;
    max-width: 1010px;
    padding-top: 30px;
}

/* Header */
.our-team__header {
    text-align: center;
    margin-bottom: 60px;
}

.our-team__title {
    font-family: var(--font-family-archer, 'Archer', serif);
    font-weight: 700;
    font-size: 62px;
    line-height: 120%;
    color: var(--color-text-teal, #196B81);
    margin: 0;
    padding-bottom: 5px;
    position: relative;
    display: inline-block;
}

.our-team__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100%;
    height: 15px;
    background-image: url('../images/BRUSHES.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(-50%);
}

/* Grid */
.our-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 90px;
    align-items: start;
}

/* Card */
.our-team__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Card Image Container */
.our-team__card-image {
    width: 100%;
    height: 100%;
    background-color: var(--color-cream, #E9E2D3);
    overflow: hidden;
    position: relative;
}

.our-team__card-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center top;
}

/* Mask overlay */
.our-team__card-mask {
    position: absolute;
    left: 50%;
    width: 85%;
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
    transform: translateX(-50%);
}

/* Card Info */
.our-team__card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.our-team__card-name {
    font-family: var(--font-family-archer, 'Archer', serif);
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    color: var(--color-text-teal, #196B81);
    margin: 0;
}

.our-team__card-pronouns {
    font-family: var(--font-family-archer, 'Archer', serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    margin: 0;
}

.our-team__card-role {
    font-family: var(--font-family-archer, 'Archer', serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    margin: 0;
}

/* Read More Button */
.our-team__card-btn {
    margin-top: 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-archer, 'Archer', serif);
    color: var(--color-text-teal, #196B81);
    background: none;
    border: none;
    cursor: pointer;
    border-top: 1px solid var(--Main-Teal, #196B81);
    border-bottom: 1px solid var(--Main-Teal, #196B81);
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: opacity 0.3s ease;
    color: var(--Main-Orange, #E47633);

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 18px */
}

.our-team__card-btn:hover {
    opacity: 0.7;
}

.our-team__card-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.our-team__card.is-open .our-team__card-btn svg {
    transform: rotate(180deg);
}

.our-team__card.is-open .our-team__card-btn {
    border-bottom: none;
}

/* Collapsible Content */
.our-team__card-content {
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-team__card.is-open .our-team__card-content {
    border-bottom: 1px solid var(--Main-Teal, #196B81);
    padding-bottom: 15px;
}

.our-team__card-bio {
    font-family: Archer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    padding-top: 20px;
    line-height: 140%;
    text-align: left;
    color: var(--color-text-black, #000);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .our-team {
        padding-top: 80px;
    }

    .our-team__hero-title {
        font-size: 48px;
    }

    .our-team__hero-title::after {
        width: 280px;
    }

    .our-team__hero-description {
        font-size: 20px;
    }

    .our-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }

    .our-team__title {
        font-size: 48px;
    }

    .our-team__card-image img {
        object-fit: contain;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .our-team__card-info{
        padding-top:10px;
    }
    .our-team {
        padding: 60px 20px;
        padding-bottom: 0;
    }

    .our-team__decor {
        display: none;
    }

    .our-team__hero {
        margin-bottom: 40px;
    }

    .our-team__hero-title {
        font-size: 36px;
    }

    .our-team__hero-title::after {
        width: 220px;
        height: 12px;
        bottom: -15px;
    }

    .our-team__hero-description {
        font-size: 18px;
        padding-top: 10px;
    }

    .our-team__header {
        margin-bottom: 40px;
    }

    .our-team__title {
        font-size: 36px;
    }

    .our-team__title::after {
        height: 12px;
        bottom: -10px;
    }

    .our-team__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .our-team__card-image {
        height: 300px;
    }

    .our-team__card-name {
        font-size: 24px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .our-team {
        padding: 40px 15px;
        padding-bottom: 0;
    }

    .our-team__hero-title {
        font-size: 28px;
    }

    .our-team__hero-title::after {
        width: 180px;
        height: 10px;
    }

    .our-team__hero-description {
        font-size: 16px;
    }

    .our-team__title {
        font-size: 28px;
    }

    .our-team__card-image {
        height: 280px;
    }

    .our-team__card-name {
        font-size: 22px;
    }

    .our-team__card-role {
        font-size: 16px;
    }
}