/* Our Team Page Styles */

.hero-our-team {
    min-height: 90vh;
    height: auto;
    background-color: #000;
    background-image: url('../images/production/producers/our_team_bwi_2.png') !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-our-team::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-our-team .container {
    position: relative;
    z-index: 2;
}

/* Producer Cards */
.producer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.producer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Ensure styles target .card-image-wrapper after template update */
.producer-card .card-image-wrapper {
    width: 100%;
    height: 120px !important; /* force smaller height */
    position: relative;
    overflow: hidden;
}

.producer-card .card-image-wrapper .producer-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.producer-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
}

.producer-title {
    font-size: 0.9rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Tablet: 2 cards per row handled via Bootstrap columns */
}

@media (max-width: 767.98px) {
    /* Mobile: adjust card shadow and image height */
    .producer-card {
        box-shadow: 0 6px 12px rgba(0,0,0,0.06);
        max-width: 100%;
        width: 100%;
    }
    .producer-card .card-image-wrapper {
        height: 450px !important;
    }
    .producer-card .card-image-wrapper .producer-photo {
        object-position: center 10% !important;
    }
}

