.malei-hotel-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 10px;
    background-color: #F8F7F5;
}

.malei-hotel-card__image {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.malei-hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.malei-hotel-card__info {
    flex: 1;
    min-width: 0;
}

.malei-hotel-card__name {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}

.malei-hotel-card__fullname {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.malei-hotel-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.malei-hotel-card__meta-item {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #555;
}

.malei-hotel-card__link {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #908370;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

.malei-hotel-card__link:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .malei-hotel-card {
        flex-direction: column;
        align-items: stretch;
    }
    .malei-hotel-card__image {
        width: 100%;
        height: 180px;
    }
}
