.rs-widget-container-bae9f6e8 {
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

.rs-widget-container-bae9f6e8 * {
    box-sizing: border-box;
}

/* Header Grid Row */
.rs-header-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: flex-end;
}

.rs-subtitle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rs-line {
    display: inline-block;
    width: 25px;
    height: 2px;
}

.rs-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rs-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    font-family: serif;
}

.rs-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #1C2B24;
}

/* Responsive Header */
@media (max-width: 767px) {
    .rs-header-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .rs-title {
        font-size: 32px;
    }
}

/* Table Container (The styled card) */
.rs-table-container {
    overflow: hidden;
    margin-top: 15px;
}

/* Table Layout */
.rs-table-head {
    display: flex;
    padding: 18px 24px;
}

.rs-table-tr {
    display: flex;
    align-items: center;
    padding: 22px 24px;
    transition: background-color 0.2s ease;
}

.rs-table-tr:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Column Shares */
.rs-col-1 {
    flex: 1;
}

.rs-col-2 {
    flex: 1.5;
}

.rs-col-3 {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* Table Headings Styling */
.rs-table-th {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Table Cell Styling */
.rs-room-cell {
    font-weight: 700;
    font-size: 18px;
    font-family: serif;
}

.rs-area-cell {
    font-size: 15px;
}

/* Badges (Pills) */
.rs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.rs-badge-icon {
    font-size: 10px;
}

/* Responsive Table */
@media (max-width: 480px) {
    .rs-table-head {
        display: none; /* Hide header on mobile for vertical display */
    }
    .rs-table-tr {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px;
    }
    .rs-col-3 {
        margin-top: 4px;
    }
}
