.showcase {
    background: var(--off-white);
    padding: 45px 0;
}

.showcase-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.showcase-eyebrow {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--orange);
    text-transform: uppercase;
}
.showcase-content h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark-blue);
}
.showcase-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.62;
    color: var(--ontic-text-body);
}
.showcase-cta {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 28px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
    transition: background 120ms;
}
.showcase-cta:hover {
    background: var(--orange-500);
    color: #fff;
    text-decoration: none;
}

.showcase-image {
    position: relative;
    height: 380px;
    background: var(--ontic-off-blue);
    border-radius: 12px;
    overflow: hidden;
}
.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 1024px) {
    .showcase-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .showcase-content h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 640px) {
    .showcase-image {
        height: 240px;
        margin: 0 -24px;
        border-radius: 0;
    }
}
