.hotel-info-wrapper {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 24px;
    font-family: inherit;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    padding: 18px;
}

.hotel-info-image {
    position: relative;
    flex: 0 0 42%;
    max-width: 42%;
    border-radius: 12px;
    overflow: hidden;
}

.hotel-info-image a {
    display: block;
    position: relative;
    cursor: zoom-in;
}

.hotel-info-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.35s ease;
}

.hotel-info-image a:hover img {
    transform: scale(1.04);
}

.hiw-gallery-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(2px);
}

.hiw-hidden-lightbox-link {
    display: none;
}

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

.hotel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hotel-name {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.hotel-dist {
    border: 1px solid #2f7d4f;
    color: #2f7d4f;
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 13px;
    white-space: nowrap;
}

.hotel-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.h-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.h-row:first-child {
    border-top: none;
    padding-top: 0;
}

.h-label {
    flex: 0 0 150px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #444;
    text-transform: uppercase;
    border-left: 3px solid #2f7d4f;
    padding-left: 8px;
}

.h-val {
    flex: 1;
    font-size: 15px;
    color: #333;
}

.tag-no {
    background: #fdecec;
    color: #c0392b;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.tag-si {
    background: #eaf7ee;
    color: #2f7d4f;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .hotel-info-wrapper {
        flex-direction: column;
        padding: 12px;
        border-radius: 14px;
        gap: 14px;
    }
    .hotel-info-image {
        flex: none;
        max-width: 100%;
    }
    .hotel-info-image img {
        aspect-ratio: 16 / 10;
    }
    .hotel-name {
        font-size: 19px;
    }
    .h-label {
        flex-basis: 120px;
        font-size: 11px;
    }
    .h-val {
        font-size: 14px;
    }
    .hiw-gallery-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}
