/* filter */
.new-equip-card.filtered-hide,
.new-equip-card.showmore-hide {
    display: none;
    opacity: 0;
}
.new-equip-card.filtered-show.showmore-show {
    display: grid;
    opacity: 1;
}
/* end filter */
.new-equip {
    margin-block: 120px;
}

.new-equip__title {
    margin: 0 0 25px 0;
    font-family: 'Inter';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 50px;
    text-align: center;
}
.new-equip__filters {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.new-equip__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.new-equip-card {
    display: grid;
    grid-template-columns:
        minmax(0, 400px)
        minmax(0, 1fr);
    gap: 30px;
    min-height: 240px;
    padding: 28px 30px;
    border: 1px solid rgba(144, 144, 144, 0.45);
}

.new-equip-card + .new-equip-card {
    margin-top: 36px;
}
/* left */
.new-equip-card__left {
    min-width: 0;
}

.new-equip-card__heading {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.new-equip-card__model {
    font-size: 26px;
    font-family: 'Inter';
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

.new-equip-card__equipment {
    font-size: 26px;
    font-weight: 500;
    font-family: 'Inter';
    line-height: 1.1;
}

.new-equip-card__media {
    width: 100%;
    height: 150px;
    margin-top: 8px;
}

.new-equip-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* right */
.new-equip-card__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.new-equip-card__specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 26px 34px;
    list-style: none;
    background: #fff;
    box-shadow:
        0 0 16px 3px
        rgba(0, 0, 0, 0.14);
}

/* spec */
.new-equip-card__spec {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.new-equip-card__spec-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}
.new-equip-card__spec-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}
.new-equip-card__spec-name {
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 500;
    color: #666;
}
.new-equip-card__spec-value {
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 600;
}
/* btns */
.new-equip-card__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.new-equip-card__btn {
    min-height: 52px;
    font-family: 'Inter';
    font-weight: 500;
}
.new-equip-card__btn--credit,
.new-equip-card__btn--test {
    border: 1px solid #000;
    background: #fff;
    color: #000000;
}
.new-equip-card__btn--offer {
    border: 0;
    background:
        linear-gradient(
            90deg,
            #ffad18 0%,
            #f0ca12 100%
        );
    color: #000000;
}

/* .new-equip-card.is-hidden {
    display: none;
} */
.new-equip__show-more {
    height: 44px;
    width: 250px;
    color: #000000;
    font-family: 'Inter';
    font-weight: 500;
}

/* adaptive */
@media (max-width: 1500px) {
    .new-equip-card__specs {
        gap: 10px;
    }
}
@media (max-width: 1200px) {
    .new-equip {
        margin-block: 30px 20px;
    }
    .new-equip__title {
        font-size: clamp(20px, 3vw, 45px);
    }
    .new-equip-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding:
            clamp(18px, 3vw, 28px)
            clamp(16px, 4vw, 30px);
    }

    .new-equip-card__heading {
        gap: clamp(10px, 2vw, 18px);
    }

    .new-equip-card__model,
    .new-equip-card__equipment {
        font-size: clamp(20px, 3vw, 28px);
    }

    .new-equip-card__media {
        width: 100%;
        max-width: 606px;
        height: auto;
        aspect-ratio: 303 / 110;
        margin:
            clamp(16px, 3vw, 24px)
            auto
            0;
    }
/* sepc */
    .new-equip-card__specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap:
            clamp(12px, 2vw, 20px)
            clamp(14px, 3vw, 28px);

        padding:
            clamp(18px, 3vw, 26px)
            clamp(16px, 3vw, 28px);

        margin-top: clamp(18px, 3vw, 28px);
    }
    .new-equip-card__spec-content {
        line-height: 1.2;
    }
    .new-equip-card__spec {
        gap: clamp(8px, 1.5vw, 12px);
    }

    .new-equip-card__spec-icon {
        width: clamp(26px, 4vw, 34px);
        height: clamp(26px, 4vw, 34px);
    }

    .new-equip-card__spec-name {
        font-size: clamp(12px, 2vw, 16px);
    }

    .new-equip-card__spec-value {
        font-size: clamp(12px, 2vw, 16px);
    }
    /* btns */
    .new-equip-card__actions {
        grid-template-columns: 1fr;
        gap: clamp(10px, 1.5vw, 14px);

        margin-top: clamp(18px, 3vw, 28px);
    }

    .new-equip-card__btn {
        width: 100%;
        height: 46px;
        font-size: 16px;
        color: rgba(46, 45, 45, 1);
    }
    .new-equip__show-more {
        margin-block: 30px 0;
    }
}