.full-width-cta {
    padding: 80px 0;
    display: block;
    position: relative;
    color: var(--color-blue);
}

@media (min-width: 1024px) {
    .full-width-cta {
        padding: 100px 0;
    }
}

.full-width-cta:is(.bg-blue, .bg-orange) *:not(.btn) {
    color: var(--color-white);
}

.full-width-cta.bg-blue .btn,
.full-width-cta.bg-orange .btn {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

@media (min-width: 1200px) {
    .full-width-cta.bg-blue .btn:hover,
    .full-width-cta.bg-orange .btn:hover {
        background-color: var(--color-white);
        border: 2px solid var(--color-white);
        color: var(--color-blue);
    }
}

.full-width-cta:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent 10px,
        transparent 12px,
        rgba(0, 0, 0, 0.05) 1px,
        rgba(0, 0, 0, 0.05) 16px
    );
    opacity: 0.5;
}

.full-width-cta.bg-blue:before,
.full-width-cta.bg-orange:before {
    background: repeating-linear-gradient(
        -55deg,
        transparent 10px,
        transparent 12px,
        rgba(255, 255, 255, 0.05) 1px,
        rgba(255, 255, 255, 0.05) 16px
    );
}

.full-width-cta .container {
    max-width: 1140px;
    position: relative;
    z-index: 2;
}

.full-width-cta h1,
.full-width-cta .h1 {
    font-size: 38px;
}

@media (min-width: 768px) {
    .full-width-cta h1,
    .full-width-cta .h1 {
        font-size: 44px;
    }
}

@media (min-width: 1200px) {
    .full-width-cta h1,
    .full-width-cta .h1 {
        font-size: 54px;
    }
}

.full-width-cta__container {
    text-align: center;
}

.full-width-cta .btn {
    text-transform: uppercase;
    font-weight: bold;
}

.full-width-cta__description {
    text-align: center;
    margin-top: 20px;
}

.full-width-cta__description ul li {
    list-style: inside;
}

.full-width-cta__description .btn:not(.btn--bg-orange, .btn--bg-blue, .btn--bg-orange, .btn--border) {
    background-color: transparent;
}

.full-width-cta .full-width-cta__description p:has(> .btn) a.btn {margin-top: 15px;}

@media (min-width: 1025px) {
    .full-width-cta__description .btn:not(.btn--bg-orange, .btn--bg-blue, .btn--bg-orange, .btn--border) {
        box-shadow: inset 0 0 var(--color-blue);
        transition: box-shadow 0.3s ease-in-out,
                    color 0.3s ease-in-out;
    }

    .full-width-cta__description .btn:not(.btn--bg-orange, .btn--bg-blue, .btn--bg-orange, .btn--border):hover {
        box-shadow: inset 0 -100px var(--color-blue);
        color: var(--color-white)
    }
}