/* ==========================================
   SOLUTIONS PAGE STYLES
   ERP Implementation Report - ABC Holdings
   ========================================== */

/* === Solutions Grid === */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* === Solution Cards === */
.solution-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 30px;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.solution-card h2 {
    font-size: 1.15rem;
    margin: 0 0 12px 0;
    padding-left: 0;
    text-align: center;
}

.solution-card h2::before {
    display: none;
}

.solution-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* === Responsive === */
@media (max-width: 600px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 25px 20px;
    }
}
