.rooms-page {
    padding-top: 28px;
    padding-bottom: 40px;
}

.rooms-page__head {
    margin-bottom: 24px;
}

.rooms-page__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.rooms-page__title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
}

.rooms-page__text {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.room-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.room-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.room-card__media img,
.room-card__fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.room-card__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.room-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.78);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.room-card__badge--live {
    background: #dc2626;
}

.room-card__body {
    padding: 18px;
}

.room-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b7280;
}

.room-card__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #111827;
}

.room-card__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.room-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rooms-empty {
    padding: 32px 20px;
    border: 1px dashed #d1d5db;
    border-radius: 18px;
    background: #f9fafb;
    text-align: center;
}

.rooms-empty h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #111827;
}

.rooms-empty p {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 991px) {
    .rooms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .rooms-page__title {
        font-size: 28px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-card__actions {
        flex-direction: column;
    }

    .room-card__actions .btn {
        width: 100%;
    }
}