.lvh-custom-room-manager-rooms .lvh-custom-room-manager-searchbar{
    margin-bottom: 50px;
}
/* Grid Layout */
.lvh-custom-room-manager-rooms__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    color:#352b1e;
    font-family: 'Jost', sans-serif;
	list-style:none;
	padding:0;
	outline:none !important;
}

/* Karten-Basis */
.lvh-custom-room-manager-rooms__list-item {
	display: flex;
	flex-direction: column;
	border: 1px solid #352b1e;
	overflow: hidden;
}

/* Bild-Container mit Aspect Ratio */
.lvh-custom-room-manager-rooms__list-item-image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3; /* or 16/9, choose ratio you want */
	overflow: hidden;
}

/* Bild */
.lvh-custom-room-manager-rooms__list-item-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}


.lvh-custom-room-manager-rooms__list-item:hover .lvh-custom-room-manager-rooms__list-item-image img {
	transform: scale(1.05);
}

/* Inhalt */
.lvh-custom-room-manager-rooms__list-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.125rem 1.125rem;
    flex: 1;
	gap:0.9rem;
}

/* Titel */
.lvh-custom-room-manager-rooms__list-item-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.lvh-custom-room-manager-rooms__list-item-title a {
    text-decoration: none;
    color: inherit;
}

.lvh-custom-room-manager-rooms__list-item-footer{
    display:flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

/* Excerpt */
.lvh-custom-room-manager-rooms__list-item-excerpt,
p.lvh-custom-room-manager-rooms__list-item-excerpt{
    font-size: 16px;
    margin: 0;
	flex-grow: 1;
}

/* Meta */
.lvh-custom-room-manager-rooms__list-item-meta {
    line-height:1.5;
}

/* Button */
.lvh-custom-room-manager-rooms__list-item-link {
    padding:0;
    margin:0;
    line-height:1.5;
    text-wrap-mode: nowrap;
    text-decoration: none !important;
	font-weight:500;
}


@media (max-width: 1024px) {
    .lvh-custom-room-manager-rooms__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lvh-custom-room-manager-rooms__list {
        grid-template-columns: 1fr;
    }
}
.lvh-custom-room-manager-rooms__header{

}
.lvh-custom-room-manager-rooms__pagination{}
lvh-custom-room-manager-rooms__pagination-current{}