/* 
 * About CTA Widget Styles
 */

 .wt-about-cta-wrapper {
    background-color: var(--background);
    background-image: radial-gradient(circle at 20% 30%, #e9632614, #0000 50%), radial-gradient(circle at 80% 70%, #66795314, #0000 50%);
    padding: 120px 0;
    text-align: center;
}

.wt-about-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.wt-cta-subheading {
    color: #a3a3a3;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.wt-cta-heading {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-family: var(--font-family);
    font-weight: normal;
}

.wt-cta-heading .highlight {
    color: var(--primary);
    font-style: italic;
}

.wt-cta-desc {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.wt-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.wt-cta-buttons .wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.wt-cta-buttons .wt-btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.wt-cta-buttons .wt-btn-primary:hover {
    background-color: #c9511e;
    color: #ffffff;
}

.wt-cta-buttons .wt-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wt-cta-buttons .wt-btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.wt-btn-icon {
    display: inline-flex;
    align-items: center;
}

.wt-btn-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.wt-btn-icon i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .wt-about-cta-wrapper {
        padding: 80px 0;
    }
    .wt-cta-heading {
        font-size: 36px;
    }
    .wt-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .wt-cta-buttons .wt-btn {
        width: 100%;
        box-sizing: border-box;
    }
}
