/* ================================================================
   FAP Recent Activities — [fap_recent_activities]
   ================================================================ */

.fap-activities {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Card ──────────────────────────────────────────────────────── */

.fap-activity-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #E6E8E9;
}

.fap-activity-card:last-child {
    border-bottom: none;
}

/* ── Icon ──────────────────────────────────────────────────────── */

.fap-activity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fap-activity-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

/* ── Content ───────────────────────────────────────────────────── */

.fap-activity-content {
    flex: 1;
    min-width: 0;
}

.fap-activity-title {
    font-weight: 600;
    font-size: 17px;
    color: #425A62;
    line-height: 1.3;
    margin-bottom: 2px;
}

.fap-activity-message {
    font-weight: 400;
    font-size: 14px;
    color: #425A62;
    line-height: 1.4;
    margin-bottom: 4px;
}

.fap-activity-date {
    font-weight: 400;
    font-size: 12px;
    color: #425A62;
    line-height: 1.3;
}

/* ── Empty state ───────────────────────────────────────────────── */

.fap-activities-empty {
    text-align: center;
    padding: 24px;
    font-size: 14px;
    color: #425A62;
}
