.mhb-premium-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    overflow: hidden;
    margin: 18px 0;
    border: 1px solid #d7e2f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(25, 48, 85, 0.1);
    font-family: inherit;
}

.mhb-premium-card__media {
    position: relative;
    min-height: 170px;
    background: #eef3f8;
}

.mhb-premium-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

.mhb-premium-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 170px;
    color: #718096;
    font-weight: 700;
}

.mhb-premium-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #003b95;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.mhb-premium-card__content {
    display: flex;
    flex-direction: column;
    padding: 15px 18px;
}

.mhb-premium-card__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.mhb-premium-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1;
}

.mhb-premium-card__stars span {
    color: #c7d0dd;
}

.mhb-premium-card__stars span.is-active {
    color: #febb02;
}

.mhb-premium-card h3 {
    margin: 0;
    color: #17233c;
    font-size: 21px;
    line-height: 1.18;
}

.mhb-premium-card__location {
    margin: 5px 0 0;
    color: #52657d;
    font-size: 13px;
}

.mhb-premium-card__description {
    margin: 10px 0 13px;
    color: #2d3b4f;
    font-size: 14px;
    line-height: 1.45;
}

.mhb-premium-card__bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #e7edf5;
}

.mhb-premium-card__trust {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #24364f;
    font-size: 13px;
}

.mhb-premium-card__trust span {
    color: #6a7d94;
    font-size: 12px;
}

.mhb-premium-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 38px;
    padding: 0 17px;
    border-radius: 6px;
    background: #0071c2;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 5px 12px rgba(0, 113, 194, 0.24);
}

.mhb-premium-card__button:hover,
.mhb-premium-card__button:focus {
    background: #005fa3;
    color: #fff !important;
}

.mhb-notice {
    padding: 12px 14px;
    border-left: 4px solid #d63638;
    background: #fff3f3;
    color: #7a1f1f;
}

@media (max-width: 760px) {
    .mhb-premium-card {
        grid-template-columns: 1fr;
    }

    .mhb-premium-card__media,
    .mhb-premium-card__media img,
    .mhb-premium-card__placeholder {
        min-height: 185px;
    }

    .mhb-premium-card__content {
        padding: 16px;
    }

    .mhb-premium-card h3 {
        font-size: 20px;
    }

    .mhb-premium-card__bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .mhb-premium-card__button {
        width: 100%;
    }
}
