/* Benefits Block Styles */

.block-preview-notice {
    padding: 20px;
    background: #f0f4f8;
    border-left: 4px solid #007cba;
    margin: 10px 0;
    border-radius: 4px;
}

.block-preview-notice .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #007cba;
    vertical-align: middle;
    margin-right: 8px;
}

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.benefits-section.is-preview {
    background: #f5f5f5;
    padding: 20px;
}

.benefits-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: left;
    color: #1a1a1a;
}

/* Layout 3x3 - dos filas de 3 cards cada una */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.12);
}

/* Icono con fondo circular */
.benefit-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    color: #fff;
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.benefit-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-card__desc {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.6;
}
