.mixed-content {}

.mixed-content.mixed-content--boxed {
    padding: 80px 50px;
    border-radius: var(--radius);
}

.mixed-content__header h2 {
    var(--spacing-lg);
}

.mixed-content__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.mixed-content.mixed-content--light h1,
.mixed-content.mixed-content--light h2,
.mixed-content.mixed-content--light h3,
.mixed-content.mixed-content--light h4,
.mixed-content.mixed-content--light h5,
.mixed-content.mixed-content--light h6,
.mixed-content.mixed-content--light p {
    color: white !important;
}

.mixed-content__column{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mixed-content__column p:last-of-type:not(.label) {
    margin-bottom: 0;
}

.mixed-content__column img {
    border-radius: var(--radius);
    max-height: 500px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mixed-content__accordions{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.mixed-content__column-item{
    text-wrap: balance;
}

/* two-per-row */
.mixed-content--two-per-row .mixed-content__columns {
    grid-template-columns: repeat(2, 1fr);
}

/* three-per-row */
.mixed-content--three-per-row .mixed-content__columns {
    grid-template-columns: repeat(3, 1fr);
}

.mixed-content--four-per-row .mixed-content__columns {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1023px) {
    .mixed-content--three-per-row .mixed-content__columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .mixed-content--three-per-row .mixed-content__columns > *:nth-child(3) {
        grid-column: 1 / -1;
    }

    .mixed-content--four-per-row .mixed-content__columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .mixed-content__columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {

    .mixed-content__column-item ul{
        margin-top: 0px!important;
    }
    .mixed-content--four-per-row .mixed-content__columns {
        grid-template-columns: 1fr;
    }

    .mixed-content--three-per-row .mixed-content__columns {
        grid-template-columns: 1fr;
    }

    .mixed-content--two-per-row .mixed-content__columns {
        grid-template-columns: 1fr;
    }

    .mixed-content__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mixed-content.mixed-content--boxed {
        padding: 50px 30px;
    }
}
