
/* Two Column CTA */
.two-col-cta {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

/* Left panel - gradient background, heading, text, button */
.two-col-cta-left {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.two-col-cta-left-inner {
    padding: 40px;
}

.two-col-cta-heading {
    color: #fff;
    margin: 0 0 20px;
    font-size: 2rem!important;
    line-height: 1.2;
}

.two-col-cta-text {
    color: #fff;
    margin: 0 0 24px;
    font-size: 1rem!important;
}

.two-col-cta-button {
    display: inline-block;
    align-self: center;
    text-align: center;
    background: #fff;
    color: #191716!important;
    text-decoration: none;
    font-weight: 500;
    width:100%!important;
}

/* Right panel - large image, stretches to match the left panel's height */
.two-col-cta-right {
    flex: 1 1 65%;
    overflow: hidden;
}
.two-col-cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive - stack to a single column on mobile */
@media (max-width: 768px) {
    .two-col-cta {
        flex-direction: column;
    }
    .two-col-cta-right {
        aspect-ratio: 3 / 2;
    }
}
