/* PATH page specific styles */

/* PATH Features Section */
.path-features {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.path-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #389f58;
}

.path-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 1rem 0;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .path-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

