
.hot-deal {
    min-height: 100%;
    background: #fff;
    padding: 12px 12px 20px 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 45px rgba(14, 38, 72, 0.1);
}

.hot-deal__img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hot-deal__img--placeholder {
    max-height: 240px;
    background-color: #1B4580;
    background-image: url("data:image/svg+xml,%3Csvg width='240' height='165' viewBox='0 0 240 165' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_313_2)'%3E%3Cpath d='M162 75.2898C172.71 75.2898 181.39 66.6098 181.39 55.8998C181.39 45.1898 172.71 36.5098 162 36.5098C151.29 36.5098 142.61 45.1898 142.61 55.8998C142.61 66.6098 151.29 75.2898 162 75.2898Z' fill='%23BBBDBF'/%3E%3Cpath d='M0 0V164.56H240V0H0ZM231.89 156.45H224.81L173.62 105.26L146.57 132.31L89.42 75.16L8.13 156.45H8.12V8.11H231.89V156.44V156.45Z' fill='%23BBBDBF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_313_2'%3E%3Crect width='240' height='164.56' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120px;
}

.hot-deal__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: .3s;
}

.hot-deal__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    word-break: break-word;
    padding-left: 8px;
    padding-right: 8px;
}

.hot-deal__content .btn {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

.hot-deal__data {
    font-size: 18px;
    color: rgba(92, 92, 92, 1);
}

.hot-deal__title {
    text-decoration: none;
    color: rgba(27, 69, 128, 1);
    margin-bottom: 20px;
    font-size: clamp(1.375rem, 1.2674rem + 0.4021vw, 1.75rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.hot-deal__badge {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-15%, -15%);
    border-radius: 50%;
    border: 6px solid #fff;
    background: rgba(32, 160, 219, 1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    flex-direction: column;
    z-index: 1;
    transition: .3s;
    width: 100px;
    height: 100px;
}

.hot-deal:hover .hot-deal__badge {
    background: rgba(254, 220, 0, 1);
    color: rgba(14, 43, 84, 1);
}

.hot-deal:hover .hot-deal__img img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .hot-deal__img {
        height: 220px;
    }
    .hot-deal__content .btn {
        margin-top: 20px;
    }
}
