.mse-hotel-accommodations {
    box-sizing: border-box;
}

.mse-hotel-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mse-hotel-card {
    flex: 1;
    min-width: 280px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

.mse-hotel-image {
    width: 100%;
    height: auto;
    display: block;
}

.mse-hotel-card__header {
    padding: 12px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mse-hotel-nw .mse-hotel-card__header {
    background-color: #28a745;
}

.mse-hotel-ne .mse-hotel-card__header {
    background-color: #17a2b8;
}

.mse-hotel-card__body {
    padding: 16px;
    background: #fff;
}

.mse-hotel-card__body .mse-hotel-name {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 8px;
    color: #222;
}

.mse-hotel-card__body .mse-hotel-address {
    font-size: 0.875rem;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.5;
}

.mse-hotel-book-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff !important;
    transition: opacity 0.15s ease;
}

.mse-hotel-book-btn:hover,
.mse-hotel-book-btn:focus {
    opacity: 0.85;
}

.mse-hotel-nw .mse-hotel-book-btn {
    background-color: #28a745;
}

.mse-hotel-ne .mse-hotel-book-btn {
    background-color: #17a2b8;
}

.mse-hotel-no-info {
    font-size: 0.875rem;
    color: #999;
    font-style: italic;
    margin: 0;
}
