.poster-opening {
    max-width: 1250px;
    margin: auto;
    padding: 90px 32px 55px;

    display: grid;
    grid-template-columns: 1.2fr .7fr;
    gap: 80px;
    align-items: end;
}

.poster-opening h1 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 90px);
    font-weight: 400;
}

.poster-opening > p {
    color: var(--ink-soft);
}

.poster-gallery {
    max-width: 1250px;
    margin: auto;
    padding: 0 32px 100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 28px;
}

.poster-image {
    aspect-ratio: 4 / 5;

    display: block;
    background: #e7dfd2;

    overflow: hidden;
    text-decoration: none;
}

.poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-image > div {
    width: 100%;
    height: 100%;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            var(--ink),
            #31526a
        );

    color: white;
}

.poster-image span {
    color: #d2b184;
    font-size: 10px;
    letter-spacing: .15em;
}

.poster-image strong {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}

.poster-card-meta {
    margin-top: 17px;
    color: var(--oxblood);
    font-size: 10px;
    text-transform: uppercase;
}

.poster-card h2 {
    margin-top: 7px;

    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
}

.poster-card h2 a {
    text-decoration: none;
}

.poster-empty,
.video-empty {
    grid-column: 1 / -1;

    border-top: 2px solid var(--ink);
    border-bottom: 1px solid var(--line);

    padding: 70px 0;
}

.poster-empty > span,
.video-empty > span {
    color: var(--bronze);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.poster-empty h2,
.video-empty h2 {
    max-width: 700px;

    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
}

.poster-empty p,
.video-empty p {
    max-width: 650px;
    color: var(--ink-soft);
}

.poster-empty a,
.video-empty a {
    color: var(--oxblood);
    text-decoration: none;
}

.poster-record {
    max-width: 1180px;
    margin: auto;
    padding: 80px 32px;

    display: grid;
    grid-template-columns: minmax(300px, 500px) 1fr;
    gap: 75px;
}

.poster-display img {
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,.13);
}

.poster-record-placeholder {
    min-height: 600px;

    background: var(--ink);
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: var(--serif);
    font-size: 30px;
}

.poster-record-copy h1,
.video-record h1 {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 63px);
    font-weight: 400;
    line-height: 1.05;
}

.media-authors {
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 19px;
}

.poster-record-copy h2,
.video-record-body h2 {
    margin-top: 40px;
    font-family: var(--serif);
    font-weight: 400;
}

.poster-record-copy p {
    color: var(--ink-soft);
}

.poster-record-copy dl {
    margin-top: 45px;
}

.poster-record-copy dt,
.poster-record-copy dd {
    border-top: 1px solid var(--line);
    margin: 0;
    padding: 10px 0;
}

.poster-record-copy dt {
    color: var(--ink-soft);
    font-size: 10px;
}

.video-opening {
    background: var(--ink);
    color: var(--paper);

    padding:
        90px
        max(32px, calc((100vw - 1200px) / 2));

    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: end;
}

.video-opening > div > span {
    color: var(--bronze);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.video-opening h1 {
    margin: 15px 0 0;

    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 90px);
    font-weight: 400;
}

.video-opening > p {
    color: #c5c7c9;
}

.video-types {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.video-types > div {
    min-height: 220px;
    border: 1px solid var(--line);
    border-top: 0;

    padding: 28px;
}

.video-types span {
    color: var(--bronze);
    font-family: var(--serif);
}

.video-types strong {
    display: block;
    margin: 40px 0 10px;

    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
}

.video-types p {
    color: var(--ink-soft);
    font-size: 13px;
}

.video-library {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
}

.video-frame {
    aspect-ratio: 16 / 9;

    background:
        linear-gradient(
            145deg,
            #1b293e,
            #456779
        );

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
}

.video-frame span {
    width: 62px;
    height: 62px;

    border: 1px solid #d9c6a2;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #d9c6a2;
    font-size: 20px;
}

.video-card > div {
    margin-top: 15px;

    color: var(--oxblood);
    font-size: 10px;
    text-transform: uppercase;
}

.video-card h2 {
    margin-top: 7px;

    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
}

.video-card h2 a {
    text-decoration: none;
}

.video-record {
    max-width: 1100px;
    margin: auto;
    padding: 75px 32px;
}

.video-record header {
    max-width: 900px;
}

.video-player {
    aspect-ratio: 16 / 9;

    margin: 55px 0;

    background: #111a28;
}

.video-player video {
    width: 100%;
    height: 100%;
}

.video-player > div {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
}

.video-player > div span {
    font-size: 45px;
}

.video-player > div strong {
    margin-top: 15px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.video-record-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 70px;
}

.video-record-body aside span {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;

    color: var(--ink-soft);
    font-size: 11px;
}

.video-record-body p,
.video-transcript {
    color: var(--ink-soft);
    line-height: 1.8;
}

@media (max-width: 800px) {
    .poster-opening,
    .poster-record,
    .video-opening,
    .video-record-body {
        grid-template-columns: 1fr;
    }

    .poster-gallery,
    .video-library,
    .video-types {
        grid-template-columns: 1fr;
    }
}
