@import url(styles.css);

.play-description {
    text-align: justify;
    max-width: 900px;
}

.play-info {
    line-height: 1.8em;
}

.cast-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
    margin: 0.9em;
}

.cast-item {
    display: flex;
    flex-direction: column;
    line-height: 1.7em;
    background-color: var(--secondary);
    color: var(--light);
    padding: 0.8em;
}

.role {
    font-weight: bold;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0.9em;
    gap: 0.8em;
}

.photo {
    width: 90px;
    height: 90px;
    transition: 100ms;
    object-fit: cover;
}

.photo:hover {
    transition: 100ms;
    filter: brightness(0.85);
}

@media screen and (min-width: 768px) {
    .photo {
        width: 150px;
        height: 150px;
    }
}