.tb-avtopark {
    padding: 80px 0;
    background: #ffffff;
}

.tb-avtopark__head {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.tb-avtopark__title {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
}

.tb-avtopark__line {
    display: block;
    width: 150px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: #fc7700;
}

.tb-avtopark__text {
    max-width: 720px;
    margin: 22px auto 0;
    font-size: 18px;
    line-height: 1.62;
    color: rgba(17, 17, 17, 0.72);
}

.tb-avtopark__text p {
    margin: 0;
}

.tb-avtopark__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.tb-avtopark__card {
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.tb-avtopark__top {
    min-height: 82px;
    padding: 18px 20px;
    background: #07111f;
    color: #ffffff;
}

.tb-avtopark__card-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.tb-avtopark__card-subtitle {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

.tb-avtopark__media {
    padding: 18px 18px 4px;
    text-align: center;
}

.tb-avtopark__image {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.tb-avtopark__body {
    padding: 20px;
}

.tb-avtopark__facts {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(17, 17, 17, 0.78);
}

.tb-avtopark__facts li {
    position: relative;
    padding-left: 22px;
}

.tb-avtopark__facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fc7700;
}

.tb-avtopark__description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.68);
}

.tb-avtopark__actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.tb-avtopark__more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: #fc7700;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.tb-avtopark__more-button {
    width: auto;
    min-width: 260px;
}

.tb-avtopark__more-button:hover,
.tb-avtopark__more-button:focus-visible {
    color: #ffffff;
    background: #e96d00;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .tb-avtopark__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .tb-avtopark {
        padding: 56px 0;
    }

    .tb-avtopark__head {
        margin-bottom: 40px;
    }

    .tb-avtopark__grid {
        grid-template-columns: 1fr;
    }

    .tb-avtopark__more-button {
        width: 100%;
        min-width: 0;
    }
}

