.tholos-other-rooms {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.tholos-other-rooms * {
    box-sizing: border-box;
}

.tholos-other-rooms__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tholos-other-rooms__card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #fff;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.tholos-other-rooms__card-image {
    position: relative;
    width: 100%;
    height: 260px !important;
    overflow: hidden;
}

.tholos-other-rooms__card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    margin: 0 !important;
}

.tholos-other-rooms__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2e2e;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tholos-other-rooms__card-body {
    position: relative;
    padding: 24px;
    overflow: hidden;
}

/* --- Μεγάλος αριθμός watermark πίσω από τον τίτλο --- */
.tholos-other-rooms__number {
    position: absolute;
    top: 6px;
    right: 16px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: #1f4d4d;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
}

.tholos-other-rooms__floor {
    position: relative;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #8a8578;
    margin-bottom: 10px;
}

.tholos-other-rooms__name {
    position: relative;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1f2e2e;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8d4c8;
    display: inline-block;
}

.tholos-other-rooms__amenities {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.tholos-other-rooms__amenities li {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    color: #4a4a45;
    background: #f5f3ef;
    padding: 4px 10px;
    border-radius: 20px;
}

.tholos-other-rooms__text {
    position: relative;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a4a45;
    margin: 0 0 20px;
}

.tholos-other-rooms__btn {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    width: auto !important;
    max-width: max-content !important;
    height: auto !important;
    background: #1f4d4d !important;
    background-image: none !important;
    color: #fff !important;
    border: 2px solid #1f4d4d !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1 !important;
    padding: 10px 16px !important;
    box-sizing: border-box;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background 0.3s ease, color 0.3s ease;
}

.tholos-other-rooms__btn-text,
.tholos-other-rooms__btn-arrow {
    display: inline-block;
    line-height: 1;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.tholos-other-rooms__btn:hover,
.tholos-other-rooms__btn:hover .tholos-other-rooms__btn-text,
.tholos-other-rooms__btn:hover .tholos-other-rooms__btn-arrow {
    background: transparent !important;
    background-image: none !important;
    color: #1f4d4d !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

@media (max-width: 900px) {
    .tholos-other-rooms__card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 600px) {
    .tholos-other-rooms__card {
        flex: 0 0 100%;
    }
}