/* 
 * ZEN Carbon Email CTA Styling
 * This CSS file contains styles for the email CTA buttons
 */

/* General CTA button styling */
[data-cta] {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Style for the new CTA buttons in the Solutions section */
.right11 button[data-cta] {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.right11 button[data-cta]:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effects for all CTA elements */
[data-cta]:hover {
    opacity: 0.9;
}

/* Active state for CTA buttons */
[data-cta]:active {
    transform: translateY(1px);
}

/* Focus styles for accessibility */
[data-cta]:focus {
    outline: 2px solid #4d90fe;
    outline-offset: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .right11 button[data-cta] {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        margin-top: 15px;
    }
}