/* ============================================================
   BLOG CMS - CSS Principal
   assets/css/style.css
   ============================================================ */

/* ---- RESET & VARIÁVEIS ---- */
:root {
  --theme-color: #6B2D8B;
  --theme-secondary: #FB7802;
  --theme-light: #f3e8ff;
  --text-primary: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #999;
  --border: #e8e8e8;
  --bg: #f5f5f7;
  --white: #fff;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.15);
  --radius: 10px;
  --radius-sm: 6px;
  --font: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --nav-h: 62px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text-primary); background: var(--bg); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(1.5rem,3vw,2.2rem); }
h2 { font-size: clamp(1.25rem,2.5vw,1.7rem); }
h3 { font-size: clamp(1.1rem,2vw,1.3rem); }

/* ---- LAYOUT ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 30px 20px; }
.contWrap { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }
.contWrap.has-toc { grid-template-columns: 220px 1fr 300px; }
@media (max-width: 1024px) { .contWrap { grid-template-columns: 1fr; } .contWrap.has-toc { grid-template-columns: 1fr; } }

/* ---- HEADER / NAV ---- */
.headWrap { position: sticky; top: 0; z-index: 1000; background: var(--theme-color); box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.navContainer { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: var(--nav-h); display: flex; align-items: center; gap: 20px; }
.leftSection { display: flex; align-items: center; }
.logo { display: flex; align-items: center; }
.logoImg { height: 38px; width: auto; }
.logoText { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.rightSection { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.navMenu .menuList { display: flex; align-items: center; gap: 4px; }
.navMenu .menuLink { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; padding: 6px 10px; border-radius: var(--radius-sm); transition: all .2s; white-space: nowrap; }
.navMenu .menuLink:hover, .navMenu .menuLink.active { color: #fff; background: rgba(255,255,255,.18); }
.searchBox { display: flex; align-items: center; background: rgba(255,255,255,.15); border-radius: 30px; padding: 6px 12px; gap: 6px; }
.searchBox input { background: none; border: none; color: #fff; font-size: .85rem; width: 160px; outline: none; }
.searchBox input::placeholder { color: rgba(255,255,255,.6); }
.searchBtn { background: none; border: none; cursor: pointer; display: flex; align-items: center; padding: 0; }
.searchBtn .searchSvg { width: 20px; height: 20px; }
.menuIcon { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.menuIcon span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ---- MOBILE MENU ---- */
.mobileMenu { display: none; position: fixed; inset: 0; z-index: 2000; }
.mobileMenu.open { display: flex; }
.menuContent { width: 280px; background: #fff; height: 100%; overflow-y: auto; z-index: 2; display: flex; flex-direction: column; gap: 0; animation: slideIn .25s ease; }
.menuOverlay { flex: 1; background: rgba(0,0,0,.5); }
@keyframes slideIn { from { transform: translateX(-100%) } to { transform: translateX(0) } }
.menuHeader { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--theme-color); }
.menuHeader .logoText { color: #fff; font-size: 1.1rem; font-weight: 800; }
.menuHeader .logoImg { height: 32px; }
.closeIcon { background: rgba(255,255,255,.2); border-radius: 50%; padding: 6px; display: flex; }
.mobileSearch { padding: 16px; background: #f8f8f8; border-bottom: 1px solid var(--border); }
.mobileSearch .searchBox { background: #fff; border: 1px solid var(--border); border-radius: 8px; }
.mobileSearch .searchBox input { color: var(--text-primary); width: 100%; }
.mobileSearch .searchBox input::placeholder { color: var(--text-muted); }
.mobileNav .categoryList { padding: 10px 0; }
.mobileNav .menuLink { display: block; padding: 12px 20px; font-size: .93rem; font-weight: 500; color: var(--text-primary); border-bottom: 1px solid #f0f0f0; transition: background .2s; }
.mobileNav .menuLink:hover { background: var(--theme-light); color: var(--theme-color); }

/* ---- HERO SLIDER ---- */
.heroSection { position: relative; background: var(--theme-color); overflow: hidden; }
.heroSlider { position: relative; }
.heroSlide { display: none; position: relative; min-height: 380px; }
.heroSlide.active { display: flex; align-items: center; }
.heroImgWrap { position: absolute; inset: 0; }
.heroImg { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.heroImgPlaceholder { width: 100%; height: 100%; background: var(--theme-color); }
.heroContent { position: relative; z-index: 2; max-width: 600px; margin: 40px; padding: 30px; background: rgba(255,255,255,.97); border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.heroCategory { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.heroTitle { font-size: clamp(1.2rem,2.5vw,1.8rem); font-weight: 800; color: var(--text-primary); margin: 8px 0 10px; line-height: 1.2; }
.heroMeta { font-size: .8rem; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.heroCta { display: inline-flex; align-items: center; gap: 8px; background: var(--theme-color); color: #fff; padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: .88rem; transition: all .2s; }
.heroCta:hover { background: var(--theme-secondary); transform: translateX(3px); }
.heroDots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 8px; }
.heroDot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); transition: all .2s; }
.heroDot.active { background: #fff; transform: scale(1.2); }

/* ---- ARTICLE GRID (Home) ---- */
.sectionTitle { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid var(--theme-color); color: var(--text-primary); }
.articleGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.articleCard { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; }
.articleCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.articleCardLink { display: block; }
.cardImage { aspect-ratio: 16/10; overflow: hidden; background: #eee; }
.cardImg { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.articleCard:hover .cardImg { transform: scale(1.04); }
.cardImgPlaceholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#f0e6ff,#e8f0ff); color: #ccc; font-size: 2rem; }
.cardBody { padding: 16px; }
.cardCategory { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cardTitle { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 6px 0 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cardExcerpt { font-size: .82rem; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.cardMeta { display: flex; align-items: center; gap: 12px; font-size: .75rem; color: var(--text-muted); }
.cardMeta i { margin-right: 3px; }

/* ---- RELATED LIST (Categoria / Busca) ---- */
.relatedList { display: flex; flex-direction: column; gap: 20px; }
.relatedItem { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .25s; }
.relatedItem:hover { box-shadow: var(--shadow-hover); }
.relatedItemLink { display: grid; grid-template-columns: 200px 1fr; align-items: start; }
@media (max-width: 600px) { .relatedItemLink { grid-template-columns: 1fr; } }
.itemImage { aspect-ratio: 16/10; overflow: hidden; background: #eee; }
.itemImg { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.relatedItemLink:hover .itemImg { transform: scale(1.04); }
.itemImgPlaceholder { width: 100%; height: 100%; min-height: 120px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#f0e6ff,#e8f0ff); color: #ccc; font-size: 1.5rem; }
.itemInfo { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.itemCategory { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.itemTitle { font-size: 1rem; font-weight: 700; color: var(--text-primary); line-height: 1.35; }
.itemExcerpt { font-size: .83rem; color: var(--text-secondary); }
.itemRead { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--text-muted); }

/* ---- ARTIGO PAGE ---- */
.artigo-page { max-width: 780px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb-home { display: flex; }
.breadcrumb-link { color: var(--theme-color); }
.breadcrumb-current { color: var(--text-muted); }
.breadcrumb-sep { color: #ccc; }
.articleTitle { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: 14px; }
.authorInfo { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .83rem; color: var(--text-muted); margin-bottom: 20px; }
.authorInfo a { color: var(--theme-color); font-weight: 600; }
.authorInfo a:hover { text-decoration: underline; }
.separator { opacity: .6; }
.articleImg { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.articleImg img { width: 100%; }

/* TABLE OF CONTENTS */
.tableContents { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: calc(var(--nav-h) + 16px); max-height: calc(100vh - var(--nav-h) - 60px); overflow-y: auto; }
.toc-title { font-size: .95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--theme-color); }
.contentsList { display: flex; flex-direction: column; gap: 6px; }
.contentsLink { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-secondary); padding: 4px 0; line-height: 1.35; transition: color .2s; }
.contentsLink:hover { color: var(--theme-color); }
.contentsLink svg { flex-shrink: 0; }
.tableContentsMobile { display: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; }
.contentsTitle { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; cursor: pointer; font-weight: 700; font-size: .9rem; }
.toc-arrow { transition: transform .3s; }
.toc-arrow.rotated { transform: rotate(180deg); }
.contentsListMobile { padding: 10px 16px 16px; }

/* ARTICLE CONTENT */
.articleContent { font-size: 1.05rem; line-height: 1.85; color: var(--text-primary); }
.articleContent h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 14px; padding-top: 16px; }
.articleContent h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin: 24px 0 10px; }
.articleContent p { margin-bottom: 18px; }
.articleContent ul, .articleContent ol { padding-left: 1.4em; margin-bottom: 18px; }
.articleContent li { margin-bottom: 6px; }
.articleContent strong { font-weight: 700; }
.articleContent em { font-style: italic; }
.articleContent a { color: var(--theme-color); text-decoration: underline; }
.articleContent a:hover { color: var(--theme-secondary); }
.articleContent blockquote { border-left: 4px solid var(--theme-color); margin: 24px 0; padding: 16px 20px; background: var(--theme-light); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.articleContent img { border-radius: var(--radius-sm); margin: 16px auto; }
.articleContent table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
.articleContent th { background: var(--theme-color); color: #fff; padding: 10px 14px; text-align: left; }
.articleContent td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.articleContent tr:hover td { background: var(--theme-light); }
.articleContent code { background: #f0f0f0; padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: .9em; }
.articleContent pre { background: #1a1a2e; color: #e8e8e8; padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 20px 0; }
.articleContent pre code { background: none; padding: 0; color: inherit; }
.references { background: #f8f8f8; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-top: 30px; font-size: .83rem; }
.references p { font-weight: 700; margin-bottom: 10px; }
.references ul { padding-left: 1.2em; }
.references li { margin-bottom: 6px; word-break: break-all; }
.references a { color: var(--theme-color); }

/* AUTHOR BOX */
.authorBox { display: flex; gap: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 32px 0; align-items: flex-start; }
.authorAvatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--theme-color); flex-shrink: 0; }
.authorDetails { flex: 1; }
.authorTitle { font-size: .9rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 4px; }
.authorLink { color: var(--theme-color); }
.authorLink:hover { text-decoration: underline; }
.authorCargo { font-size: .82rem; color: var(--theme-color); font-weight: 600; margin-bottom: 6px; }
.authorDesc { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.authorSocial { display: flex; gap: 10px; }
.authorSocial a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--theme-light); color: var(--theme-color); font-size: .9rem; transition: all .2s; }
.authorSocial a:hover { background: var(--theme-color); color: #fff; }

/* RELATED ARTICLES */
.relatedArticles { margin-top: 40px; }
.relatedTitle { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.relatedGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .relatedGrid { grid-template-columns: 1fr; } }
.relatedCard { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; }
.relatedCard:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.relatedImg { aspect-ratio: 16/10; overflow: hidden; background: #eee; }
.relatedImg img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.relatedCard:hover .relatedImg img { transform: scale(1.05); }
.relatedBody { padding: 12px; }
.relatedCat { font-size: .7rem; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 4px; }
.relatedCardTitle { font-size: .9rem; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.relatedDate { font-size: .75rem; color: var(--text-muted); }

/* ---- AUTHOR PROFILE PAGE ---- */
.authorProfile { display: flex; gap: 24px; background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); margin-bottom: 30px; align-items: flex-start; }
.authorProfileAvatar img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--theme-color); }
.authorProfileName { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.authorProfileCargo { color: var(--theme-color); font-weight: 600; margin-bottom: 10px; }
.authorProfileBio { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; }
.authorProfileSocial { display: flex; gap: 10px; margin-top: 14px; }
.authorProfileSocial a { width: 36px; height: 36px; border-radius: 50%; background: var(--theme-light); display: flex; align-items: center; justify-content: center; color: var(--theme-color); transition: all .2s; }
.authorProfileSocial a:hover { background: var(--theme-color); color: #fff; }
@media (max-width: 600px) { .authorProfile { flex-direction: column; align-items: center; text-align: center; } }

/* ---- SIDEBAR ---- */
.contRight { display: flex; flex-direction: column; gap: 24px; }
.sideWidget { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.widgetTitle { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--theme-color); color: var(--text-primary); }
.sideArticleList { display: flex; flex-direction: column; gap: 14px; }
.sideArticleLink { display: grid; grid-template-columns: 70px 1fr; gap: 10px; align-items: start; }
.sideThumb { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; background: #eee; }
.sideThumb img { width: 100%; height: 100%; object-fit: cover; }
.sideThumbPlaceholder { width: 100%; height: 100%; min-height: 52px; background: linear-gradient(135deg,#f0e6ff,#e8f0ff); }
.sideInfo { display: flex; flex-direction: column; gap: 3px; }
.sideCategory { font-size: .68rem; font-weight: 700; color: var(--theme-color); text-transform: uppercase; }
.sideTitle { font-size: .83rem; font-weight: 600; color: var(--text-primary); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sideTitle:hover { color: var(--theme-color); }
.sideMeta { font-size: .72rem; color: var(--text-muted); }
.sideCatList { display: flex; flex-direction: column; gap: 4px; }
.sideCatLink { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-secondary); transition: all .2s; background: #f8f8f8; }
.sideCatLink:hover, .sideCatLink.active { background: var(--theme-light); color: var(--theme-color); font-weight: 600; }

/* ---- MODULE TITLE ---- */
.moduleTitle { border-left: 4px solid var(--theme-color); padding-left: 14px; }
.moduleTitle .title { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); }
.categoryDesc { font-size: .9rem; color: var(--text-secondary); margin-top: 8px; }
.searchCount { font-size: .85rem; color: var(--text-muted); margin-top: 6px; }

/* ---- SEARCH FORM ---- */
.searchFormWrap { margin-bottom: 24px; }
.searchForm { display: flex; gap: 10px; }
.searchInput { flex: 1; border: 2px solid var(--border); border-radius: 8px; padding: 12px 16px; font-size: 1rem; font-family: var(--font); outline: none; transition: border-color .2s; }
.searchInput:focus { border-color: var(--theme-color); }
.searchSubmit { background: var(--theme-color); color: #fff; border: none; border-radius: 8px; padding: 12px 22px; font-size: .9rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: background .2s; }
.searchSubmit:hover { background: #520f70; }

/* ---- PAGINAÇÃO ---- */
.paginacao { margin-top: 30px; }
.pagination-list { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.page-link { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--text-secondary); background: #fff; border: 1px solid var(--border); transition: all .2s; }
.page-link:hover, .page-link.active { background: var(--theme-color); color: #fff; border-color: var(--theme-color); }
.page-ellipsis { color: var(--text-muted); padding: 0 4px; }

/* ---- FOOTER ---- */
.siteFooter { background: #1a1a2e; color: rgba(255,255,255,.8); margin-top: 50px; }
.footerMain { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.footerGrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .footerGrid { grid-template-columns: 1fr; gap: 24px; } }
.footerLogoText { font-size: 1.3rem; font-weight: 800; color: #fff; }
.footerSlogan { font-size: .88rem; opacity: .7; margin-top: 10px; line-height: 1.5; }
.footerNavTitle { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footerNavList { display: flex; flex-direction: column; gap: 8px; }
.footerNavList a { font-size: .85rem; opacity: .7; transition: opacity .2s; }
.footerNavList a:hover { opacity: 1; color: var(--theme-secondary); }
.footerBottom { border-top: 1px solid rgba(255,255,255,.1); }
.footerBottomInner { max-width: 1200px; margin: 0 auto; padding: 20px; }
.footerDisclaimer { font-size: .78rem; opacity: .55; line-height: 1.6; margin-bottom: 10px; }
.footerCopy { font-size: .8rem; opacity: .5; }

/* ---- BACK TO TOP ---- */
.backToTop { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--theme-color); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: all .25s; opacity: 0; pointer-events: none; z-index: 900; }
.backToTop.visible { opacity: 1; pointer-events: auto; }
.backToTop:hover { background: var(--theme-secondary); transform: translateY(-3px); }

/* ---- FLASH MESSAGES ---- */
.flash-msg { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; font-weight: 500; }
.flash-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.flash-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.flash-warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.flash-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: .4; display: block; }
.empty-state p { font-size: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .contLeft { display: none; }
  .tableContentsMobile { display: block; }
}
@media (max-width: 768px) {
  .menuIcon { display: flex; }
  .rightSection .navMenu, .rightSection .searchBox { display: none; }
  .heroContent { margin: 20px; padding: 20px; }
  .heroSlide { min-height: 300px; }
  .authorBox { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .wrap { padding: 20px 14px; }
  .articleGrid { grid-template-columns: 1fr; }
}
