/**
 * Section: cta-button-two
 *
 * Extracted from template-parts/cta_button_two.php.
 * Loaded via trunorth_enqueue_section('cta-button-two').
 */

.cta-button-two {
        display: inline-block;
        padding: calc(var(--vw) * 1) calc(var(--vw) * 2);
        background: #C22127;
        opacity: 80%;
        color: #fff;
        font-family: "Open Sans", sans-serif;
        font-size: clamp(1rem, calc(var(--vw) * 1), 2rem);
        font-weight: 500;
        text-decoration: none;
        border-radius: calc(var(--vw) * 0.5);
        transition: background 0.2s;

        &:hover {
            background: #a94444;
        }
    }
