/* ======== 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: 17px; line-height: 1.95; color: #333; }
.article-content p { margin-bottom: 1.2em; }
.article-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.article-content h2 { font-size: 1.5em; font-weight: 700; margin: 1.8em 0 .6em; border-bottom: 2px solid #f1f5f9; padding-bottom: .4em; color: #1a1a1a; }
.article-content h3 { font-size: 1.2em; font-weight: 700; margin: 1.3em 0 .5em; color: #333; }
.article-content blockquote { border-left: 4px solid #e65100; padding: 14px 18px; color: #555; margin: 1.2em 0; background: #fff3e0; border-radius: 0 8px 8px 0; font-style: italic; }
.article-content a { color: #e65100; text-decoration: underline; }
.article-content ul, .article-content ol { padding-left: 1.8em; margin-bottom: 1em; }
.article-content li { margin-bottom: .3em; }
.article-content pre { background: #1e293b; color: #e2e8f0; padding: 16px; border-radius: 10px; overflow-x: auto; margin: 1em 0; font-size: 14px; }
.article-content code { background: #fff3e0; padding: 2px 6px; border-radius: 4px; font-size: .9em; color: #e65100; }
.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 #e2e8f0; padding: 8px 12px; text-align: left; }
.article-content th { background: #faf6f0; font-weight: 600; }
.article-content hr { border: none; border-top: 2px solid #f1f5f9; 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: 10px; font-size: 13px; font-weight: 500; transition: all .15s; border: 1px solid #e2e8f0; color: #64748b; background: white; }
.pagination > .active > span { background: #e65100; color: white; border-color: #e65100; }
.pagination > li > a:hover { border-color: #e65100; color: #e65100; background: #fff3e0; }
.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: #e65100; color: white; }
