.team-trainers-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
}

.trainer-card {
    background-color: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.trainer-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.trainer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-image-wrapper img {
    transform: scale(1.05);
}

.trainer-name {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
}

.trainer-title {
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #3b82f6;
}

.trainer-bio {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
}
