.directors {
    --section_gap: 3rem;
    display: flex;
    flex-direction: column;
    gap: var(--section_gap);
}

.directors .content-wrapper {
    align-items: flex-start;
    justify-content: flex-end;
    /* max-width: 135rem; */
    padding: 0 var(--padding);
    row-gap: 3em;
}

.directors .content-wrapper > div:first-child {
    margin-left: auto;
}

.directors .content-wrapper > div:last-child {
    margin-right: auto;
}

.directors img {
    width: 100%;
    max-height: 30vw;
    object-fit: cover;
}

.directors .headline {
    padding: 0 calc(var(--padding) + var(--firstrow));
    margin: 0;
}

.directors .h3 {
    margin: 0;
    color: inherit
}

.directors .information {
    background-color: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
    padding: 1.5rem;
    padding-right: 3em;

    height: auto;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    position: relative;
    align-self: flex-end;
}

.directors .text {
    margin: 0;
}

@media screen and (min-width: 1080px) {
    .directors .information {
        margin-top: calc(0px - var(--section_gap));
        transform: translateY(-50%);
        align-self: flex-start;
    }
}

.directors .information:after {
    content: '';
    background-image: url('arrow_right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 5em;
    width: 5em;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
}

@media screen and (max-width: 768px) {
    .directors .information:after {
        height: 3em;
        width: 3em;
        transform: translate(25%, 50%);
    }
}

.directors .information:hover span:after {
    right: -6.5rem;
}

/* MODAL */

.directors .modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.directors .modal.open,
.directors .modal[style] {
    opacity: 1;
}

.directors .modal-content {
    background: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 80rem;
    outline: none;
    position: relative;
}

.directors button.close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    background: none;
    border: none;
}
