
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Instrument Sans", sans-serif
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 55px;
}


.with-corners {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


.without-corners {
    width: 100%;
    height: auto;
    margin-top: 6px;
}

.alt-text {
    text-align: center;
    font-style: italic;
    color: #666;
}



.anim-in {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

.anim-in.in-view {
    animation: fadeInUp 0.6s ease-out forwards;
}

.img-half-row .anim-in.in-view:nth-child(1) {
    animation-delay: 0s;
}

.img-half-row .anim-in.in-view:nth-child(2) {
    animation-delay: 0.2s;
}

.img-half-row .anim-in.in-view:nth-child(3) {
    animation-delay: 0.4s;
}

.img-half-row .anim-in.in-view:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.img-half-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
}

.img-half {
    display: inline-block;
    width: calc(50% - 4px);
    /*min-width: 220px;
    height: 280px;
    object-fit: cover;*/
    vertical-align: top;
    overflow: hidden;
}

.img-half-row .img-half {
    width: 100%;
    height: auto;
    min-height: 280px;
}

.img-half-row .img-half > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

img.img-half {
    width: calc(50% - 8px);
    height: 280px;
}
