/* ==========================================================================
   Budi Team Grid
   ========================================================================== */

.budi-team-grid__wrapper {
    width: 100%;
}

.budi-team-grid__grid {
    display: none;
}

.budi-team-grid__mobile {
    display: block;
}

@media (min-width: 768px) {
    .budi-team-grid__grid {
        display: grid;
    }

    .budi-team-grid__mobile {
        display: none;
    }
}

/* Card
   ========================================================================== */

.budi-team-grid__card {
    text-align: center;
}

/* Image
   ========================================================================== */

.budi-team-grid__image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(219, 234, 248, 1), rgba(182, 198, 213, 1));
}

.budi-team-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder
   ========================================================================== */

.budi-team-grid__image-wrapper--placeholder {
    background-color: #c8bfb4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.budi-team-grid__placeholder-image {
    width: auto !important;
    height: auto !important;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Info
   ========================================================================== */

.budi-team-grid__info {
    padding: 8px 0;
}

.budi-team-grid__name {
    font-size: 18px;
    font-weight: 600;
    color: #111112;
    margin: 0 0 4px;
    line-height: 1.3;
}

.budi-team-grid__role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2a9d8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.budi-team-grid__cta {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #2a9d8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.budi-team-grid__cta:hover,
a.budi-team-grid__cta:focus {
    color: #1f7a6e;
    text-decoration: none;
}

/* Mobile Slider
   ========================================================================== */

.budi-team-grid__slider .swiper-slide {
    height: auto;
}

.budi-team-grid__slider .budi-team-grid__card {
    max-width: 280px;
    margin: 0 auto;
}

