.sb-team {
    background-color: var(--color-bg-default);
    padding: clamp(48px, 4vw, 80px) var(--space-6);
    font-family: Inter, sans-serif;
}

.sb-team__container {
    max-width: 1200px;
    margin: 0 auto;
}

.sb-team__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.sb-team__heading {
    font-size: clamp(1.5rem, 1.0614rem + 1.7544vw, 2.5rem);
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--space-4) 0;
    font-family: Inter, sans-serif;
    letter-spacing: 0;
}

.sb-team__subheading {
    font-size: clamp(1rem, 0.8904rem + 0.4386vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin: 0;
    font-family: Inter, sans-serif;
}

.sb-team__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

.sb-team__image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-2);
}

.sb-team__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.sb-team__text {
    width: 100%;
}

.sb-team__description {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--color-text-primary);
    margin: 0;
    font-family: Inter, sans-serif;
}

.sb-team__description p {
    margin: 0 0 var(--space-4) 0;
}

.sb-team__description p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sb-team__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }

    .sb-team__header {
        text-align: left;
        margin-bottom: var(--space-16);
    }
}

@media (min-width: 992px) {
    .sb-team {
        padding: clamp(64px, 6vw, 96px) var(--space-6);
    }

    .sb-team__content {
        gap: var(--space-16);
    }
}
