/* Forum Page */
.forum-page-header { background: var(--white); padding: 120px 0 50px; text-align: center; border-bottom: 1px solid var(--gray-200); }
.forum-page-header h1 { font-size: 2.2rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.forum-page-header p { color: var(--gray-600); font-size: 0.95rem; }
.forum-page-content { padding: 30px 0 80px; }
.forum-item-link { text-decoration: none; color: inherit; display: block; }
.forum-item-link .forum-item { border-left: 3px solid var(--teal); }
.forum-item-link:hover .forum-item { border-color: var(--teal); box-shadow: 0 4px 16px rgba(15,118,110,0.1); }

/* Detail Topik */
.detail-topik { background: #fff; border-radius: 12px; padding: 32px; border: 1px solid #e9ecef; margin-bottom: 32px; }
.detail-topik h1 { font-size: 1.6rem; font-weight: 800; color: #1a1f36; margin: 12px 0; }
.topik-author { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: #8b95a5; margin-bottom: 20px; }
.author-avatar { width: 32px; height: 32px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; }
.topik-content { font-size: 0.95rem; color: #333; line-height: 1.8; text-align: justify; }

/* Komentar */
.komentar-section { margin-top: 0; }
.komentar-section h3 { font-size: 1rem; font-weight: 700; color: #1a1f36; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.komentar-item { display: flex; gap: 12px; margin-bottom: 16px; padding: 16px; background: #fff; border-radius: 10px; border: 1px solid #e9ecef; }
.komentar-avatar { width: 36px; height: 36px; background: #3b82f6; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.komentar-body { flex: 1; }
.komentar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.komentar-header strong { font-size: 0.88rem; color: #1a1f36; }
.komentar-header span { font-size: 0.75rem; color: #8b95a5; }
.komentar-body p { font-size: 0.9rem; color: #495057; line-height: 1.6; }

/* Form Komentar */
.komentar-form-wrap { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e9ecef; margin-top: 24px; }
.komentar-form-wrap h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: #1a1f36; }
.komentar-form-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; flex-wrap: wrap; gap: 12px; }
.komentar-tips { font-size: 0.78rem; color: #8b95a5; }

@media(max-width:768px) {
    .detail-topik { padding: 20px; }
    .detail-topik h1 { font-size: 1.2rem; }
    .komentar-form-footer { flex-direction: column; align-items: flex-start; }
}
