.trenerek-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
}





.trenerek-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.trenerek-item:hover {
    transform: translateY(-5px);
}

.trener-kep {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.trener-profile-img {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
}

.trener-content {
    padding: 30px;
}

.trener-name {
    font-size: 20px;
    margin-bottom: 8px;
    color: #322038;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 700;
}

.trener-titulus {
    margin-bottom: 1rem;
    color: #5A555C;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
}

.trener-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid #5f2c7247;
    padding-top: 15px;
}

.trener-mobile, .trener-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #847988;
    font-family: "Nunito", Sans-serif;
    font-size: 15px;
}

span.icon svg {
    width: 19px;
    height: auto;
    fill: white;
}

a.trener-details-btn {
    color: #082b59;
    letter-spacing: 0.05px;
    display: flex;
    font-size: 16px;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 700;
    margin-top: 30px;
}

span.icon {
    background-color: #082b59;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trener-contact a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.trener-contact a:hover {
    color: #5f2c72;
    font-weight: 600;
}

.icon {
    font-size: 1.2rem;
}


@media screen and (max-width: 768px) {
    .trenerek-container {
        grid-template-columns: 1fr;
    }
}