/* Общие стили */
.t744__price-wrapper {
    display: flex;
    align-items: flex-end; /* Выравнивание элементов по нижнему краю */
    font-family: Arial, sans-serif;
    color: #f9f9f9;
}

/* Добавление слова "Стоимость:" перед ценой */
.t744__price-wrapper::before {
    content: "Стоимость:";
    font-family: Arial, sans-serif;
    color: #f9f9f9;
    margin-right: 8px;
    display: block;
}

/* Добавление "с человека" после знака валюты */
.t744__price-currency::after {
    content: " с человека";
    font-family: Arial, sans-serif;
    color: #f9f9f9;
    margin-left: 5px;
    display: inline-block;
}

/* Десктопная версия (больше 768px) */
@media (min-width: 768px) {
    .t744__price-wrapper::before {
        font-size: 18px;
    }

    .t744__price-value {
        font-size: 24px !important;
    }

    .t744__price-currency::after {
        font-size: 18px;
    }
}

/* Мобильная версия (меньше 768px) */
@media (max-width: 767px) {
    .t744__price-wrapper {
        flex-wrap: wrap;
    }

    .t744__price-wrapper::before {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .t744__price-value {
        font-size: 20px !important;
    }

    .t744__price-currency::after {
        font-size: 14px;
    }
}