/* CTA Buttons - Frontend Styles */

.cta-buttons-wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.cta-buttons-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.cta-buttons-grid {
    display: grid;
    gap: 15px;
}

.cta-columns-1 {
    grid-template-columns: 1fr;
}

.cta-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cta-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cta-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .cta-columns-3,
    .cta-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cta-columns-2,
    .cta-columns-3,
    .cta-columns-4 {
        grid-template-columns: 1fr;
    }
}

.cta-button {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 3px solid;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #333;
}

.cta-button-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-button-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    min-width: 0;
}

.cta-label-small {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
}

.cta-label-main {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.cta-button-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.cta-button-arrow svg {
    width: 14px;
    height: 14px;
}
