.blog-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0;
    padding: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.blog-cta-banner .cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.blog-cta-banner .cta-content .cta-title {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

.blog-cta-banner .cta-content .cta-subtitle {
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: inherit;
}

.blog-cta-banner .cta-content a.cta-btn {
    align-self: flex-start;
    width: auto;
    text-decoration: none !important;
    border-radius: 50px;
    padding: 0.8em 2.5em;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, outline 0.2s ease;
}

.blog-cta-banner .cta-image {
    flex: 0 0 180px;
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.blog-cta-banner .cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    max-height: 160px;
}

.blog-cta-banner .cta-logo {
    flex: 0 0 90px;
    position: relative;
    z-index: 1;
    align-self: center;
}

.blog-cta-banner .cta-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.blog-cta-banner.cta-1 {
    background: linear-gradient(135deg, var(--oxford-blue) 0%, var(--polynesian-blue) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-cta-banner.cta-1::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--bleu-de-france-a20);
    border-radius: 50%;
}

.blog-cta-banner.cta-1::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 150px;
    height: 150px;
    background: var(--bleu-de-france-a10);
    border-radius: 50%;
}

.blog-cta-banner.cta-1 .cta-content .cta-title {
    color: var(--white);
}

.blog-cta-banner.cta-1 .cta-content .cta-subtitle {
    color: var(--white-a80);
}

.blog-cta-banner.cta-1 .cta-content a.cta-btn {
    background-color: var(--white);
    color: var(--polynesian-blue);
}

.blog-cta-banner.cta-1 .cta-content a.cta-btn:hover {
    background-color: transparent;
    color: var(--white);
    outline: 2px solid var(--white);
}

.blog-cta-banner.cta-2 {
    background: var(--white);
    border: 1px solid var(--bleu-de-france-a20);
}

.blog-cta-banner.cta-2 .cta-content a.cta-btn {
    background-color: var(--polynesian-blue);
    color: var(--white);
}

.blog-cta-banner.cta-2 .cta-content a.cta-btn:hover {
    background-color: var(--azure);
    color: var(--white);
}

.blog-cta-banner.cta-sidebar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    margin-top: 1rem;
}

.blog-cta-banner.cta-sidebar .cta-content .cta-title {
    font-size: 1.1rem;
}

.blog-cta-banner.cta-sidebar .cta-image {
    flex: 0 0 auto;
    width: 100%;
    max-height: 120px;
    align-self: center;
}

.blog-cta-banner.cta-sidebar .cta-image img {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
}

#cta-generator .form-label-row {
    display: flex;
    align-items: center;
}

#cta-generator .form-label-row #cta-copy-btn {
    margin-left: auto;
}

@media (max-width: 600px) {
    .blog-cta-banner {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
        box-sizing: border-box;
    }

    .blog-cta-banner .cta-content a.cta-btn {
        align-self: center;
    }

    .blog-cta-banner .cta-image {
        flex: 0 0 auto;
        width: 130px;
        align-self: center;
    }

    .blog-cta-banner .cta-image img {
        max-height: none;
    }

    .blog-cta-banner .cta-logo {
        flex: 0 0 auto;
        width: 70px;
    }
}