
.custom-team-section {
    background-color: #fff;
    padding: 60px 0;
}

.section-title-container {
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* .title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #73805a, #5f0404);
    margin: 0 auto;
} */

.custom-team-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.custom-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.team-image-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect ratio */
}

.team-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-team-card:hover .team-image-container img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(95, 4, 4, 0.9), transparent);
    padding: 20px;
    transition: bottom 0.3s ease;
}

.custom-team-card:hover .team-overlay {
    bottom: 0;
}

.team-social {
    text-align: center;
}

.social-link {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #73805a;
}

.team-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.team-name {
    color: #ED624F;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    color: black;
    font-size: 14px;
    margin: 0;
}

.empty-state {
    padding: 40px;
    text-align: center;
    color: #73805a;
    background: rgba(115, 128, 90, 0.1);
    border-radius: 10px;
}

.empty-message {
    font-size: 18px;
    margin: 0;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .custom-team-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .team-name {
        font-size: 18px;
    }
}
