.section-common-banner {
    background-image: url(../../../images/render/ca-lines-2.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 75%;
    margin: 64px 0;
    padding: 32px 0;
}

.section-common-banner.primary {
    background-color: var(--primary-color);
    border-top: 3px dashed var(--secondary-color);
    border-bottom: 3px dashed var(--secondary-color);
}

.section-common-banner.secondary {
    background-color: var(--secondary-color);
    border-top: 3px dashed var(--primary-color);
    border-bottom: 3px dashed var(--primary-color);
}

.section-common-banner .section-heading {
    padding-bottom: 0;
}

.section-common-banner .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 128px;
}

.section-common-banner .section-wrapper > div {
    flex: 1 1 0;
}

.section-common-banner .title {
    color: var(--white);
    font-size: var(--font-size-h2);
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(33, 37, 41 , 0.25);
}

.section-common-banner .title span {
    font-size: var(--font-size-h3);
    font-style: normal;
    display: block;
    margin-top: 8px;
    opacity: 0.95;
}

.section-common-banner .section-featured {
    width: 100%;
    max-width: 475px;
}

@media (max-width: 992px) {
    .section-common-banner .section-wrapper {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        align-items: center;
    }

    .section-common-banner .section-wrapper a {
        margin: 0 auto;
    }
}