/**
 * Feature Card Block Styles
 */

.neo-feature-card {
    background-color: var(--neo-white);
    border-radius: var(--neo-radius-2xl);
    padding: 2rem;
    box-shadow: var(--neo-shadow-xl);
    transition: all var(--neo-transition-normal);
}

.neo-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--neo-shadow-2xl);
}

.neo-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--neo-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.neo-feature-icon-blue {
    background: var(--neo-gradient-blue);
}

.neo-feature-icon-orange {
    background: var(--neo-gradient-gold);
}

.neo-feature-icon .neo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--neo-white);
}

.neo-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neo-primary-dark);
    margin: 0 0 1rem;
}

.neo-feature-description {
    color: var(--neo-text-muted);
    line-height: 1.7;
    margin: 0;
}
