/* factors.css | v14 system */

.v14-factors-section {
    padding: 60px 0;
    background: #ffffff;
}

.v14-factors-header {
    margin-bottom: 40px;
}

.v14-factors-header h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--v14-dark) !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}

.v14-factors-header p {
    font-size: 16px !important;
    color: #666 !important;
    margin: 0 !important;
    text-align: left !important;
}

.v14-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.v14-factor-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid transparent;
    transition: var(--v14-transition);
}

.v14-factor-card:hover {
    border-color: var(--v14-red);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.v14-factor-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #edeae4;
}

.v14-factor-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--v14-red);
}

.v14-factor-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--v14-dark);
    line-height: 1.3;
}

.v14-factor-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .v14-factors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .v14-factors-grid {
        grid-template-columns: 1fr;
    }
}
