﻿/* SECTION */
.tr-list {
    padding: 64px 0;
    background: linear-gradient(180deg,#f9fbff,#ffffff);
}

.tr-head {
    text-align: center;
    margin-bottom: 36px;
}

    .tr-head h1 {
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 4px;
    }

    .tr-head p {
        color: #6d7285;
    }

/* GRID */
.tr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
    gap: 26px;
}

/* CARD */
.tr-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 28px 70px rgba(30,49,158,.08);
    transition: .25s ease;
    border: 1px solid rgba(0,0,0,.05);
}

    .tr-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 36px 90px rgba(30,49,158,.14);
    }

/* BADGES */
.tr-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.b {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3340b9;
    font-weight: 600;
}

    .b.hot {
        background: #fff2ed;
        color: #e24f27;
    }

/* TITLE */
.tr-card h3 {
    margin: 6px 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

/* TRAINER */
.tr-trainer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 14px;
}

    .tr-trainer img {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 8px 18px rgba(0,0,0,.15);
    }

    .tr-trainer span {
        font-weight: 600;
    }

/* INFO */
.tr-info {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 6px;
    color: #727171;
    font-size: 13px;
}

/* FOOTER */
.tr-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-main {
    background: #2b44ff;
    padding: 9px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: .2s;
}

    .btn-main:hover {
        background: #1a2be1;
    }
