/* 
   New Feature Section (Vertical List Style)
   Harmonized with Global Design System
*/
.feature-card-modern {
    display: flex;
    flex-direction: column;
    /* Changed to column for centered layout */
    align-items: center;
    /* Center items */
    text-align: center;
    /* Center text */
    gap: 20px;
    height: 100%;
    padding: 40px 30px;
    /* Increased top/bottom padding */
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

/* Subtle top border gradient accent on hover */
.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.f-icon-modern {
    flex-shrink: 0;
    width: 80px;
    /* Larger icon container */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F9FF;
    border-radius: 50%;
    /* Circle shape */
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    /* Spacing from title */
}

.feature-card-modern:hover .f-icon-modern {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(2, 101, 220, 0.2);
}

.f-icon-modern svg {
    width: 40px;
    /* Larger icon */
    height: 40px;
}

.f-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .f-content h4 {
    color: var(--primary-color);
}

.f-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}