.rr-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    width: 100%;
}

/* Top row: 50% - 50% (3+3 oszlop a 6-ból) */
.rr-top:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1;
}
.rr-top:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1;
}

/* Bottom row: 3 egyenlő kártya (2+2+2 oszlop a 6-ból) */
.rr-bottom { grid-row: 2; }
.rr-bottom:nth-child(3) { grid-column: 1 / 3; }
.rr-bottom:nth-child(4) { grid-column: 3 / 5; }
.rr-bottom:nth-child(5) { grid-column: 5 / 7; }

/* Card base */
.rr-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.rr-card__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.rr-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0) 0%, rgb(0 0 0 / 25%) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Info box: absolute, lent */
.rr-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 20px 20px;
}

/* 1. sor: csak a cím, alatta border */
.rr-card__header {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.rr-card__title {
    margin: 0;
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.3;
    font-family: "Playfair Display", Sans-serif;
}

/* 2. sor: foglalás bal | ikonok jobb */
.rr-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rr-card__book {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    color: #fff;
    font-size: 13px;
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.rr-card__book:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    color: #fff;
}

.rr-card__book i {
    font-size: 0.9rem;
}

/* Ikonok div */
.rr-card__icons .rr-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: flex-end;
}

.rr-card__icons .rr-amenity {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.78rem;
}

.rr-card__icons .rr-amenity i {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

/* m² érték az ikon előtt */
.rr-amenity__value {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .rr-grid {
        grid-template-columns: 1fr;
    }
    .rr-top:nth-child(1),
    .rr-top:nth-child(2),
    .rr-bottom:nth-child(3),
    .rr-bottom:nth-child(4),
    .rr-bottom:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .rr-card { min-height: 220px; }
}
