/* Styles for One CTA Box widget */
.oe-cta-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Content section (title + description) */
.oe-cta-content {
    /* Styles controlled by Elementor */
}

.oe-cta-title {
    margin: 0 0 20px;
}

.oe-cta-desc {
    margin: 0;
}

.oe-cta-desc p:last-child {
    margin-bottom: 0;
}

/* Button section (footer-like) */
.oe-cta-button-wrapper {
    padding: 0;
}

.oe-cta-button {
    display: block;
    background: transparent;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}

.oe-cta-chevron {
    display: inline-block;
    margin-left: 8px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .oe-cta-title {
        font-size: 24px;
    }
    .oe-cta-desc {
        font-size: 16px;
    }
}

