/* ===== Equipment Strength ===== */
.equipment-menu {
    padding: 55px 0 70px;
}

.equipment-head {
    margin-bottom: 38px;
    text-align: center;
}

    .equipment-head h2 {
        margin: 0 0 12px;
        font-size: 36px;
        line-height: 1.2;
        color: #222;
        font-weight: 700;
    }

    .equipment-head p {
        max-width: 900px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 28px;
        color: #666;
    }

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.equipment-item {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

    .equipment-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(252,0,0,0.12);
        border-color: rgba(252,0,0,0.18);
    }

    .equipment-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.equipment-img {
    width: 42%;
    min-height: 280px;
    overflow: hidden;
    background: #f6f6f6;
}

    .equipment-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

.equipment-item:hover .equipment-img img {
    transform: scale(1.06);
}

.equipment-info {
    width: 58%;
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .equipment-info:before {
        content: "";
        position: absolute;
        left: 34px;
        top: 34px;
        width: 52px;
        height: 4px;
        background: #fc0000;
        border-radius: 2px;
    }

    .equipment-info h3 {
        margin: 18px 0 14px;
        font-size: 26px;
        line-height: 1.35;
        color: #222;
        font-weight: 700;
    }

    .equipment-info p {
        margin: 0;
        font-size: 15px;
        line-height: 28px;
        color: #666;
    }

/* ===== Responsive ===== */
@media screen and (max-width: 991px) {
    .equipment-head h2 {
        font-size: 30px;
    }

    .equipment-item,
    .equipment-item:nth-child(even) {
        flex-direction: column;
    }

    .equipment-img,
    .equipment-info {
        width: 100%;
    }

    .equipment-img {
        min-height: 240px;
    }

    .equipment-info {
        padding: 30px 24px;
    }

        .equipment-info:before {
            left: 24px;
            top: 28px;
        }

        .equipment-info h3 {
            font-size: 24px;
        }
}

@media screen and (max-width: 767px) {
    .equipment-menu {
        padding: 38px 0 45px;
    }

    .equipment-head {
        margin-bottom: 26px;
    }

        .equipment-head h2 {
            font-size: 26px;
        }

        .equipment-head p {
            font-size: 14px;
            line-height: 24px;
        }

    .equipment-list {
        gap: 18px;
    }

    .equipment-item {
        border-radius: 14px;
    }

    .equipment-img {
        min-height: 200px;
    }

    .equipment-info {
        padding: 24px 18px 22px;
    }

        .equipment-info:before {
            left: 18px;
            top: 22px;
            width: 44px;
        }

        .equipment-info h3 {
            margin: 16px 0 10px;
            font-size: 20px;
        }

        .equipment-info p {
            font-size: 14px;
            line-height: 24px;
        }

  
}


