.equip-block {
    padding: 48px 0 40px;
    background: #ffffff;
}

.equip-block__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.equip-block__inner--reverse {
    direction: rtl;
}
.equip-block__inner--reverse > * {
    direction: ltr;
}

.equip-title {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.2;
    color: #123a5d;
}

.equip-lead {
    margin: 0 0 12px;
    font-size: 1.06rem;
    line-height: 1.6;
    color: #234f73;
}

.equip-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #45627d;
}

.equip-block__image {
    min-height: 220px;
}

.equip-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    background: #f5f7fb;
}

.equip-photo img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #ffffff;
}

.equip-photo__label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 0.8rem;
}

/* таблицы */

.equip-table {
    padding: 24px 0 48px;
    background: #f7f9ff;
}

.equip-table__title {
    margin: 0 0 18px;
    font-size: 1.6rem;
    color: #123a5d;
}

.equip-table__wrapper {
    overflow-x: auto;
}

.equip-spec {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(15, 53, 96, 0.12);
    font-size: 0.95rem;
}

.equip-spec th,
.equip-spec td {
    padding: 10px 14px;
    vertical-align: top;
}

.equip-spec th {
    width: 32%;
    background: #eef3fb;
    color: #234f73;
    text-align: left;
    font-weight: 600;
}

.equip-spec td {
    color: #34526e;
}

.equip-spec tr:nth-child(even) td {
    background: #f9fbff;
}

/* адаптив */

@media (max-width: 992px) {
    .equip-block__inner,
    .equip-block__inner--reverse {
        grid-template-columns: minmax(0, 1fr);
        direction: ltr;
    }

    .equip-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .equip-block {
        padding: 32px 0 28px;
    }

    .equip-table {
        padding: 20px 0 40px;
    }

    .equip-title {
        font-size: 1.7rem;
    }
}
