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

.selection {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem 0;
    width: 100%;
}

.selection:not(:first-child) {
    border-top: solid 1px var(--dark-brand-color);
    padding-top: 1rem;
}

.selection .poster, .selection .info {
    width: calc(100% - 4rem);
    padding: 1rem 2rem 0.1rem 2rem;
}

.selection .poster img {
    width: 100%;
}

.selection h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.selection h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 400;
    text-align: center;
}

.selection .submission-category {
    font-size: 0.8rem;
}

.synopsis {
    display: block;
    display: -webkit-box;
    margin: 0.25rem auto;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}