@import url("../renaissance.css");

.ren-titled-content {
    width: 100%;
}

.venue-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.venue {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}

.venue:not(:last-child) {
    border-bottom: solid 1px var(--light-brand-color);
}

.venue .poster {
    display: flex;
    width: 20%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 1rem 0 0;
}

.venue .poster img {
    width: 100%;
    object-fit: contain;
}

.venue .summary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
}

.venue h3 {
    font-weight: 400;
    font-size: 1.25rem;
}

.venue h3 a, .venue h3 a:visited {
    color: var(--titles);
}

.venue .three-columns .column:nth-child(2) {
    padding-top: 1.5rem;
}

.venue h4 {
    margin: 0 0 0.5rem 0;
}

.rooms {
    font-size: 1rem;
    margin-inline-start: 0.25rem;
}

ul.rooms li {
    margin-inline-start: 1rem;
}

.venue .synopsis {
    margin: 0.5rem 0;
}

.venue .actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
}

.map-container {
    width: 100%;
    height: 200px;
}