/* Benefits Grid Widget */

.tae-bg-header {
    text-align: center;
    margin-bottom: 48px;
}

.tae-bg-section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    margin: 0 0 16px;
}

.tae-bg-divider {
    width: 64px;
    height: 4px;
    border-radius: 99px;
    background-color: #1271b6;
    margin: 0 auto;
}

.tae-bg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tae-bg-card {
    padding: 32px;
    background-color: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tae-bg-card:hover {
    border-color: rgba(18, 113, 182, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.tae-bg-icon-wrap {
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.tae-bg-icon-wrap i {
    font-size: 22px;
    color: #1271b6;
    transition: color 0.3s ease;
}

.tae-bg-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}

.tae-bg-card-desc {
    font-size: 0.85rem;
    color: #5a677f;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .tae-bg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tae-bg-grid {
        grid-template-columns: 1fr;
    }
}
