.price-block {}

.price-block .prices__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 1.081rem + 0.85vw, 1.875rem);
}

.price-card {
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1.25rem, 1.081rem + 0.85vw, 1.875rem);
    border: 1px solid var(--stroke);
    padding: 20px;
    height: 100%;
    position: relative;
}

.price__holder .price-card {
    background: var(--head);
    border: 1px solid var(--head);

}

.price-card .price__img {
    max-width: 325px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    max-height: 334px;
}

.price-card .price__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(1.25rem, 0.911rem + 1.69vw, 2.5rem);
    height: 100%;
    padding: 20px;
    padding-right: 0;
    width: 100%;
    max-width: 305px;
}

.price-card .price__term {
    background: var(--bg-dark);
    border-radius: 5px;
    padding: 8px 25px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text);
    margin-bottom: clamp(1.25rem, 1.165rem + 0.42vw, 1.563rem);
}

.price__holder .price__term {
    background: var(--blue);
    color: var(--stroke);
}


.price__holder .price {
    text-transform: uppercase;
    color: var(--card);
}

.price-card .price__item {
    display: flex;
    gap: 15px;
}

.price-card .price__name {
    max-width: 100px;
    width: 100%;
    color: var(--main-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;

}

.price-card .price__descr {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-card .price__val {
    color: var(--main-text);
    max-width: 190px;
    width: 100%;
    /*  white-space: nowrap; */
}

.price__holder:first-child .price__val {
    color: var(--stroke);
}

.price__holder:first-child .price__name {
    color: var(--stroke);
}

.price-card .price__btn {
    max-width: 200px;
    width: 100%;
}

@media(max-width: 1150px) {
    .price-card {
        flex-direction: column-reverse;
    }

    .price-card .price__img {
        max-width: 100%;
        max-height: 300px;
    }

    .price-card .price__info {
        max-width: 100%;
        padding: 0;
    }
}

@media(max-width: 670px) {
    .price-block .prices__wrap {
        grid-template-columns: 1fr;
    }

    .price-card .price__btn {
        max-width: 100%;
    }

    .price-card .price__name {
        width: fit-content;
    }
    .price-card .price__info{
        height: auto;
        
    }
}
