/* ======== SCROLLBAR ======== */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ======== LINE CLAMP ======== */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ======== ARTICLE CONTENT ======== */
.article-content { font-size: 16px; line-height: 1.9; color: #333; }
.article-content p { margin-bottom: 1.2em; }
.article-content img { max-width: 100%; height: auto; border-radius: 6px; margin: 16px 0; }
.article-content h2 { font-size: 1.4em; font-weight: 700; margin: 1.5em 0 .5em; padding-bottom: .3em; border-bottom: 1px solid #f0f0f0; }
.article-content h3 { font-size: 1.15em; font-weight: 700; margin: 1.2em 0 .4em; }
.article-content blockquote { border-left: 3px solid #c92027; padding: 10px 16px; color: #555; margin: 1em 0; background: #fef2f2; border-radius: 0 6px 6px 0; }
.article-content a { color: #c92027; }
.article-content ul,.article-content ol { padding-left: 1.8em; margin-bottom: 1em; }
.article-content li { margin-bottom: .3em; }
.article-content pre { background: #1a1a1a; color: #f0f0f0; padding: 14px; border-radius: 6px; overflow-x: auto; margin: 1em 0; font-size: 13px; }
.article-content code { background: #fef2f2; padding: 2px 6px; border-radius: 3px; font-size: .9em; color: #c92027; }
.article-content pre code { background: transparent; padding: 0; color: inherit; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.article-content th,.article-content td { border: 1px solid #e5e7eb; padding: 8px 12px; text-align: left; }
.article-content th { background: #f5f5f5; font-weight: 600; }
.article-content hr { border: none; border-top: 1px solid #e5e7eb; margin: 2em 0; }

/* ======== PAGINATION ======== */
.pagination { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: center; }
.pagination > li { list-style: none; }
.pagination > li > a,
.pagination > li > span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border-radius: 4px; font-size: 13px; font-weight: 500; transition: all .15s; border: 1px solid #e5e7eb; color: #666; background: white; }
.pagination > .active > span { background: #c92027; color: white; border-color: #c92027; }
.pagination > li > a:hover { border-color: #c92027; color: #c92027; background: #fef2f2; }
.pagination > .disabled > span { opacity: .4; cursor: default; }

/* ======== MOBILE DROPDOWN ======== */
.mobile-dropdown .mobile-submenu:not(.hidden) { display: block; }
.mobile-dropdown.open .mobile-drop-arrow { transform: rotate(180deg); }

/* ======== SELECTION ======== */
::selection { background: #c92027; color: white; }
