.vv-cargo-cards-container {
    display: grid;
    /* Изначально до 4х колонок на больших экранах */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.vv-cargo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    border-top: 5px solid #EAA341;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vv-cargo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vv-cargo-card__icon { font-size: 2rem; line-height: 1; margin-bottom: 15px; }

.vv-cargo-card__title {
    color: #0E192F;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-size: clamp(22px, 1.5vw, 28px);
}

.vv-cargo-card__price {
    font-family: 'Roboto', sans-serif;
    color: #0E192F;
    font-weight: 900; /* Жирность 900 */
    line-height: 1.2;
    margin-bottom: 15px;
    /* Размер чуть больше */
    font-size: clamp(30px, 2.2vw, 36px); 
}

.vv-cargo-card__price-prefix, .vv-cargo-card__price-suffix {
    /* Наследуют стили родителя, можно сделать их чуть менее заметными при желании */
    opacity: 0.8;
    font-weight: 700;
}

.vv-cargo-card__delivery {
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: clamp(16px, 1.15vw, 22px);
    flex-grow: 1;
}

.vv-cargo-card__button {
    display: inline-block;
    background-color: #EAA341;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.vv-cargo-card__button span {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.vv-cargo-card__button:hover span { transform: translateX(5px); }


/* Адаптив для карточек */
@media (max-width: 992px) {
    /* 2 карточки в ряд на планшетах и телефонах */
    .vv-cargo-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    /* 1 карточка в ряд на очень маленьких экранах */
    .vv-cargo-cards-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vv-cargo-card__title { font-size: 6vw; }
    .vv-cargo-card__price { font-size: 8vw; }
    .vv-cargo-card__delivery { font-size: 4.6vw; }
}