﻿
.showcase-content-block {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: max-content 1fr;
}
.showcase-content-block.image-right {
    grid-template-areas:
        'tagline hero-image'
        'content hero-image';
}
.showcase-content-block.image-left {
    grid-template-areas:
        'hero-image tagline'
        'hero-image content';
}
.showcase-content-block .tagline {
    grid-area: tagline;
    background-color: var(--klein-blue);
    font-family: p22-mackinac-pro, Georgia;
    color: var(--apricot);
    font-size: 2.5rem;
    padding: 100px 90px 20px 90px;
}
.showcase-content-block .content {
    grid-area: content;
    background-color: var(--cream);
    font-family: neue-haas-unica, Arial;
    color: var(--klein-blue);
    padding: 60px 90px 60px 90px;
    font-size: 16px;
}
.showcase-content-block .hero-image {
    grid-area: hero-image;
    height: 0;
    min-height: 100%;
    width: 100%;
    object-fit: cover;
}
.showcase-content-block .brand {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 4rem;
    height: auto;
}
.showcase-content-block .tagline h2 {
    color: var(--cream);
    line-height: 1.25;
}
.showcase-content-block .content h3 {
    font-family: neue-haas-unica, Arial;
    font-size: 40px;
    margin-bottom: 30px;
}
.showcase-content-block .content :is(h1, h2, h3, h4, h5, h6) {
    color: inherit;
}
.showcase-content-block .call-to-action {
    margin: 0;
    margin-top: 20px;
    color: inherit;
}
.showcase-content-block h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 48px;
}
@media screen and (max-width: 1000px) {
    .showcase-content-block .content {
        padding: 48px;
    }
    .showcase-content-block .tagline {
        padding: 96px 48px;
    }
    .showcase-content-block.image-left, .showcase-content-block.image-right {
        grid-template-columns: 1fr;
        grid-template-rows: 350px 1fr;
        grid-template-areas: 'tagline' 'content';
    }
    .showcase-content-block .hero-image {
        grid-area: tagline;
    }
    .showcase-content-block .tagline {
        z-index: 1;
        background-color: rgba(0, 71, 186, 0.5);
    }
}