.content {
    object-fit: contain;
}

@media (max-width: 768px) {
    .content {
        object-fit: contain;
        width: 92%;
    }
}

.content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    width: 95%;
}

.title-and-tags {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: left;
    width: 100%;
    color: #00B0F2;
    gap: 1vw;
    margin: 0;
    padding: 0;
}

.title-and-tags h2, .title-and-tags p {
    margin: 0;
    padding: 0;
    font-size: 1.5vw;
}

.title-and-tags p {
    font-family: 'Zona Pro Light', sans-serif;
}

@media (max-width: 768px) {
    .title-and-tags h2, .title-and-tags p {
        font-size: 4vw;
    }

    .title-and-tags {
        flex-direction: column;
        margin: 1vw;
    }
}

.playground-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1vw;
    max-height: 28vw;
    max-width: 100%;
    object-fit: contain;
    overflow: hidden
}

.playground-images video, .playground-images img {
    flex: 1;
    flex-shrink: 1;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    width: auto;
    object-fit: cover;
}

.playground-images .wide-flex {
    flex: 3.15;
}

.playground-images .vertical-flex {
    flex: 0.75
}

.playground-images .square-flex {
    flex: 1.38
}

.playground-images .cut-height {
    flex: 0.96;
}

.playground-images .shorten {
    flex: 0.77;
}

.playground-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    width: 100%;
    gap: 1.5vw;
    max-height: fit-content;
    overflow: hidden
}

.playground-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: span 3;
}

.playground-grid img.wide {
    grid-column: span 6;
}

.playground-grid img.medium {
    grid-column: span 4;
}

.playground-grid-2 {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: auto auto auto;
    width: 100%;
    gap: 1.5vw;
    max-height: fit-content;
    overflow: hidden
}

.playground-grid-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: span 6;
}

.playground-grid-2 img.thin {
    grid-column: span 4;
}

.playground-grid-2 img.medium {
    grid-column: span 9;
}

.playground-grid-2 img.wide {
    grid-column: span 12;
}

.line {
    border-top: 2px solid #B96DE2;
    width: 76.2cqi;
}

@media (max-width: 768px) {

    .content-row {
        width: 100%;
    }
    .playground-images {
    flex-direction: column;
    width: 100%;
    gap: 2vw;
    margin-bottom: 2vw;
    max-height: none;
}

.playground-images img {
    width: 100%;
}

    .playground-images video, .playground-images img {
    flex-shrink: 1;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
}

.playground-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 100%;
    gap: 1.5vw;
    overflow: hidden
}

.playground-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playground-grid-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 100%;
    gap: 1.5vw;
    overflow: hidden
}

.playground-grid-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.line {
    border-top: 2px solid #B96DE2;
    width: 92%;
}

}



