
/* CUSTOM CTA */
    .censor-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: #ed1c24;
        border: 1px solid #ffffff;
        padding: 14px 20px;
        margin: 30px 0 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 80px;
    }

    .censor-cta-content {
        flex: 1;
    }

    .censor-cta h3 {
        margin: 0 0 4px;
        padding: 0;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
    }

    .censor-cta p {
        margin: 0;
        padding: 0;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.25;
    }

    .censor-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 126px;
        height: 42px;
        padding: 0 12px;
        margin-left: 25px;
        box-sizing: border-box;

        color: #ffffff !important;
        background: transparent;
        border: 2px solid #ffffff;

        font-family: Arial, sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none !important;
        line-height: 1;
        transition: all 0.3s ease;
    }

    .censor-cta-btn:hover {
        background: #ffffff;
        color: #ed1c24 !important;
        text-decoration: none !important;
    }

    /* Mobile */
    @media (max-width: 767px) {
        .censor-cta {
            padding: 15px;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .censor-cta h3 {
            font-size: 15px;
        }

        .censor-cta p {
            font-size: 14px;
        }

        .desktop-break {
            display: none;
        }

        .censor-cta-btn {
            margin-left: 0;
            min-width: 115px;
            height: 40px;
            font-size: 14px;
        }
    }
    </style>