﻿.roomCardCompact
{
    background: var(--cardBackground);
    border-radius: var(--radiusLarge);
    color: var(--neutralText);
    overflow: hidden;
    position: relative;
}
.roomCardCompact.roomCardCompact--horizontal:not(.max-width-600)
{
    display: flex;
    flex-flow: row nowrap;
    max-height: 100%;
}
.roomCardCompact__image-box
{
    border-radius: var(--radiusLarge) var(--radiusLarge) 0 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 56%;
}
.roomCardCompact--horizontal:not(.max-width-600) .roomCardCompact__image-box
{
    align-items: stretch;
    border-radius: var(--radiusLarge) 0 0 var(--radiusLarge);
    flex-basis: 40%;
    flex-shrink: 0;
    height: auto;
    max-height: 100%;
    width: 40%;
}
.roomCardCompact__content
{
    padding: 22px;
}
.roomCardCompact--horizontal:not(.max-width-600) .roomCardCompact__content
{
    flex-basis: 60%;
    flex-shrink: 0;
    height: auto;
    min-height: 170px;
    overflow: auto;
    width: 60%;
}
.roomCardCompact__description
{
    color: var(--cardColor);
    line-height: 1.5;
    margin: 15px 0 0;
}
.roomCardCompact__description--showLink
{
    margin-bottom: 15px;
}
.roomCardCompact__title
{
    font-size: 20px;
    margin: 0;
}
.roomCardCompact__image
{
    display: block;
    max-height: 190px;
    object-fit: cover;
    width: 100%;
}
.roomCardCompact--horizontal:not(.max-width-600) .roomCardCompact__image
{
    max-height: 100%;
    min-height: 100%;
}
.roomCardCompact__link
{
    bottom: 8px;
    font-size: 14px;
    position: absolute;
    right: 22px;
}