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

/* === About Cards === */
.about-card {
    text-align: center;
    padding: 35px;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h2 {
    padding-left: 0;
    text-align: center;
}

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

.about-card p {
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* === Authors Section === */
.authors-section {
    padding-bottom: 40px;
}

.authors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.author-badge {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: #334155;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.author-badge:hover {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

/* === Responsive === */
@media (max-width: 600px) {
    .about-card {
        padding: 25px 20px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .author-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}
