/**
 * Benefits Block Styles
 * Prefix: bf-
 * Icons: Lucide (https://lucide.dev)
 */

/* Section */
.bf-section {
    padding: 3rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .bf-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .bf-section {
        padding: 5rem 0;
    }
}

/* Container */
.bf-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .bf-container {
        padding: 0 1.5rem;
    }
}

/* Title */
.bf-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .bf-title {
        font-size: 30px;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .bf-title {
        font-size: 36px;
        margin-bottom: 3rem;
    }
}

/* Grid */
.bf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .bf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .bf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Card - vertical layout */
.bf-card {
    background: #f8faf9;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .bf-card {
        padding: 1.75rem;
        border-radius: 20px;
        gap: 1.25rem;
    }
}

.bf-card:hover {
    background: #f0f5f1;
    border-color: rgba(43, 180, 70, 0.15);
}

/* Icon */
.bf-icon {
    width: 48px;
    height: 48px;
}

@media (min-width: 1024px) {
    .bf-icon {
        width: 56px;
        height: 56px;
    }
}

.bf-icon-svg {
    width: 100%;
    height: 100%;
}

/* Card Content */
.bf-card-content {
    flex: 1;
    min-width: 0;
}

/* Card Title */
.bf-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.375rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    .bf-card-title {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
}

/* Card Text */
.bf-card-text {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

@media (min-width: 768px) {
    .bf-card-text {
        font-size: 14px;
        line-height: 1.6;
    }
}
