/*
 * Compiled stylesheet: article_detail.css
 * Shared by views:
 *   - app/Views/front/article/detail.php
 */

.scroll-custom::-webkit-scrollbar { width: 3px; }
.scroll-custom::-webkit-scrollbar-thumb { background: #0ea5e9; border-radius: 10px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleUp { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.animate-fadeIn { animation: fadeIn 0.8s ease-out forwards; }
.animate-scaleUp { animation: scaleUp 0.4s ease-out forwards; }

.prose blockquote { border-left-color: #0ea5e9; font-style: italic; color: #1e293b; }