#cards-2__image-text__3-column-cards .j-card {
    display: inline-block;
    background: white;
}

#cards-2__image-text__3-column-cards .j-card > .image {
    background-color: gray; 
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('https://placehold.it/600');
    width: 100%;
}

#cards-2__image-text__3-column-cards .j-card.simple > .image {
    height: 500px;
    max-height: 50vh;
}

#cards-2__image-text__3-column-cards .j-card.full > .image {
    height: 400px;
    background-image: url('https://placehold.it/600');
}

#cards-2__image-text__3-column-cards .j-card > .details {
    background: white;
    color: var(--off-black);
}
#cards-2__image-text__3-column-cards .j-card.simple > .details {
    padding: 1em 0 2.5em 1em;
}
#cards-2__image-text__3-column-cards .j-card.full > .details {
  padding: 1.5em 2em;
}

#cards-2__image-text__3-column-cards .j-card.simple > .details > .title {
    text-transform: uppercase;
}

#cards-2__image-text__3-column-cards .j-card.full > .details > .description {
    font-family: var(--sans-serif), sans-serif; 
}

#cards-2__image-text__3-column-cards .j-card.full > .details > .artist-name {
    font-size: 35px;
    font-weight: 700;
}




#cards-2__image-text__3-column-cards section[id^="section"] a {
    text-decoration: none;
    color: inherit;
}

#cards-2__image-text__3-column-cards section[id^="section"] a:hover {
    text-decoration: none;
    font-weight: bold;
}

#cards-2__image-text__3-column-cards section[id^="section"] h2 {
    margin: 0;
}

#cards-2__image-text__3-column-cards section[id^="section"] .uppercase {
    text-transform: uppercase;
}



#cards-2__image-text__3-column-cards #section1 {
    background: var(--off-white);
    display: grid;
    grid-gap: 20px;
    
}
@media screen and (max-width: 900px) {
    #cards-2__image-text__3-column-cards #section1 {
        grid-template-columns: 1fr;
        padding: 5vw;
    }
}
@media screen and (min-width: 900px) {
    #cards-2__image-text__3-column-cards #section1 {
        grid-template-columns: 1.5fr 1fr;
        padding: 1em calc((100vw - 1500px) / 2);
    }
}





#cards-2__image-text__3-column-cards #section2 {
    background: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5em 5vw;
}

#cards-2__image-text__3-column-cards #section2 > .image {
    width: 400px;
    height: 300px;
    max-width: 90vw;
    background-image: url('https://placehold.it/600');
    background-color: gray;
}

#cards-2__image-text__3-column-cards #section2 > .text-container {
    padding: 3em 5em;
}

#cards-2__image-text__3-column-cards #section2 > .text-container > h2 {
    font-size: 18px;
}

#cards-2__image-text__3-column-cards #section2 > .text-container > h3 {
    font-size: 42px;
}

#cards-2__image-text__3-column-cards #section2 > .text-container > .description {
    font-family: var(--sans-serif), sans-serif;
    font-size: 14px;
    font-weight: 200;
}



#cards-2__image-text__3-column-cards #section3 {
    background: var(--off-white);
    display: grid;
    grid-gap: 20px;
    
}
@media screen and (max-width: 500px) {
    #cards-2__image-text__3-column-cards #section3 {
        grid-template-columns: 1fr;
        padding: 5vw;
    }
}
@media screen and (min-width: 500px) and (max-width: 900px) {
    #cards-2__image-text__3-column-cards #section3 {
        grid-template-columns: repeat(2, 1fr);
        padding: 5vw;
    }
}
@media screen and (min-width: 900px) {
    #cards-2__image-text__3-column-cards #section3 {
        grid-template-columns: repeat(3, 1fr);
        padding: 1em calc((100vw - 1500px) / 2);
    }
}

#cards-2__image-text__3-column-cards #section3 > h2 {
    padding: 1em 0;
    grid-column: 1/-1;;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}