.seehotel-restaurant-card {
    position: relative;
    display: flex;
    border: 1px solid rgba(198, 185, 162, 0.25);
}

.wp-block-column:has(> .seehotel-restaurant-card) {
    display: flex;
    flex-direction: column;
}

.wp-block-column > .seehotel-restaurant-card {
    flex: 1;
}

.seehotel-restaurant-card.vertical {
    flex-direction: column;
}

.seehotel-restaurant-card.vertical .restaurant-content-wrapper {
    flex: 1;
}

.seehotel-restaurant-card img {
    display: block;
    object-fit: cover;
}

.restaurant-content-wrapper {
    padding: 50px 30px;
    background-color: #383631;
}

.restaurant-eyebrow {
    margin: 0;
    color: var(--wp--preset--color--nonary);
    text-transform: uppercase;
    font-size: 1rem;
}

.restaurant-title {
    font-family: var(--wp--preset--font-family--antic-didone);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}

.restaurant-description {
    color: var(--wp--preset--color--octonary);
    font-size: 1.25rem;
}

.restaurant-button-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.reservation-button {
    color: var(--wp--preset--color--decenary) !important;
    background-color: var(--wp--preset--color--undecenary);
    padding: 16px 40px;
    text-transform: uppercase;
}

.reservation-button:hover {
    text-decoration: none;
}

.menu-pdf {
    border-bottom: 1px solid var(--wp--preset--color--tertiary);
}

.menu-pdf:hover {
    text-decoration: none;
}

.reservation-button,
.menu-pdf {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.reservation-button span,
.menu-pdf span {
    display: inline-block;
}

/* Horizontal alignment */
.seehotel-restaurant-card.horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.seehotel-restaurant-card.horizontal .restaurant-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seehotel-restaurant-card.horizontal img {
    height: 100%;
}

@media (max-width: 900px) {
    .seehotel-restaurant-card.horizontal {
        grid-template-columns: 1fr;
    }

    .seehotel-restaurant-card img {
        max-height: 350px;
    }
}