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

.highlighted-events {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
    padding: 0 0 1rem 0;
    border-bottom: solid 1px var(--light-brand-color);
}

.highlighted-events .event {
    height: calc(200px + 5rem);
}

.highlighted-events .event .poster {
    height: 200px;
}

.event .info {
    margin: 0.5rem 0;
}

.event .info > * {
    margin: 0.25rem 0;
}

.screening {
    display: flex;
    width: 350px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem;
}

div.poster img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    object-fit: contain;
}

.gallery.screening-gallery {
    align-items: flex-start;
}

.screening h2 {
    text-align: center;
    width: 100%;
    font-weight: 100;
    font-size: 1.5rem;
    margin: 0.5rem 0
}

.screening ul {
    list-style: none;
    margin: 0.25rem 1rem;
    text-align: center;
    width: calc(100% - 2rem);
}

.screening h2 a, .screening h2 a:visited {
    color: var(--titles);

}

.screening-by-venue {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0.25rem 0 2rem 0;
    padding-bottom: 2rem;
}

.screening-by-venue:not(:last-child) {
    border-bottom: solid 1px var(--gray);
}

.screening-by-venue > h2 {
    color: var(--white);
    font-size: 2rem;
    margin: 0 0 1rem 0;
}


