/* ===== Контейнер ===== */
.types-guard-item {
    display: flex;
    gap: 50px;
    padding: 36px 40px;
    border: 1px solid #DEE5EB;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
}

.types-guard-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tariffs-item-btn {
        max-width: 400px;
}

/* ===== Картинка ===== */
.types-guard-item-img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

/* ===== Текстовый блок ===== */
.types-guard-item-text-block {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ===== Заголовок ===== */
.types-guard-item-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    color: #424242;
    margin-bottom: 20px;
}

/* ===== Описание ===== */
.types-guard-item-text {
    font-size: 16px;
    line-height: 22px;
    color: #696969;
    margin-bottom: 20px;
}

/* ===== Цены ===== */
.types-guard-item-price-block {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.types-guard-item-price-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ===== Цена + валюта ===== */
.types-guard-item-price-cur-block {
    display: flex;
    align-items: center;
    gap: 6px;
}

.types-guard-item-price {
    font-size: 32px;
    font-weight: 600;
    color: #424242;
}

.types-guard-item-cur {
    font-size: 14px;
    font-weight: 600;
    color: #424242;
}

/* вложенный блок (руб./мес.) */
.types-guard-item-cur-block {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}

.types-guard-item-cur-desc {
    font-size: 12px;
    border-top: 1px solid #424242;
    margin-top: 2px;
}

/* ===== Подпись ===== */
.types-guard-item-price-desc {
    font-size: 14px;
    color: #696969;
}


.types-guard-item-btn:hover {
    background: #e14d18;
}

/* ===== Скрытые блоки ===== */
.types-full-desc,
.types-full-img {
    display: none;
}



/* ===== Планшеты и меньше ===== */
@media (max-width: 992px) {
    .types-guard-item {
        padding: 24px;
        gap: 16px;
    }

    .types-guard-item-img {
        width: 140px;
    }

    .types-guard-item-price-block {
        gap: 24px;
    }
}

/* ===== Мобильные ===== */
@media (max-width: 768px) {
    .types-guard-item {
        flex-direction: column;
        padding: 20px;
    }

    .types-guard-item-img {
        width: 100%;
        max-height: 200px;
        object-fit: contain;
    }

    .types-guard-item-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .types-guard-item-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .types-guard-item-price-block {
        flex-direction: column;
        gap: 15px;
    }

    .types-guard-item-price {
        font-size: 26px;
    }

    .types-guard-item-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== Очень маленькие экраны ===== */
@media (max-width: 480px) {
    .types-guard-item {
        padding: 16px;
    }

    .types-guard-item-title {
        font-size: 18px;
    }

    .types-guard-item-price {
        font-size: 22px;
    }

    .types-guard-item-cur {
        font-size: 12px;
    }

    .types-guard-item-price-desc {
        font-size: 13px;
    }
}