
.coach {
    --primary-color: #007bff; /* Adjust to your Tibabu brand color */
    --text-main: #2d3436;
    --text-muted: #636e72;
    --bg-card: #ffffff;
}

* {
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

.box-block {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Heading Styles */
.heading-section {
    text-align: center;
    margin-bottom: 50px;
}

    .heading-section h2 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-main);
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

.accent-line {
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.lead-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Card Styling */
.team-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 280px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    }

.team-img-wrapper {
    padding: 15px;
}

.team-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* Replaced your inline style with a cleaner shadow */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.team-card-content {
    padding: 10px 15px;
}

.name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 10px 0 5px;
}

.position {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-card {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .team-card {
        max-width: 100%;
    }
}


