/* ── NAVIGATION ── */
#nav-chinh {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(28,16,8,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,146,42,.2);
}
.nav-trong {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-bieu-tuong {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--mau-vang);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--mau-vang);
}
.logo-ten {
  font-family: var(--font-tieu-de);
  font-size: 18px;
  color: var(--mau-kem);
  letter-spacing: .05em;
  display: block;
}
.logo-mo-ta {
  font-size: 9px;
  color: var(--mau-khoi);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  color: rgba(247,240,227,.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 14px;
  display: block;
  transition: color .2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--mau-vang);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links li a:hover { color: var(--mau-vang-nhat); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li.current-menu-item > a { color: var(--mau-vang); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--mau-kem);
  transition: all .3s;
}
.hamburger.mo span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.mo span:nth-child(2) { opacity: 0; }
.hamburger.mo span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--mau-dam);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-lop-toi {
  position: absolute;
  inset: 0;
  background: rgba(28,16,8,.75);
}
.hero-luoi {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 80px,rgba(201,146,42,.03) 80px,rgba(201,146,42,.03) 81px),
    repeating-linear-gradient(90deg,transparent,transparent 80px,rgba(201,146,42,.03) 80px,rgba(201,146,42,.03) 81px);
}
.hero-vong-tron {
  position: absolute;
  border: 1px solid rgba(201,146,42,.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.vong-1 { width: 700px; height: 700px; }
.vong-2 { width: 480px; height: 480px; }
.vong-3 { width: 280px; height: 280px; }
.hero-noi-dung {
  position: relative;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}
.hero-trang-tri {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeLen .8s .2s forwards;
}
.duong-trang-tri {
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--mau-vang));
  display: inline-block;
}
.duong-trang-tri.dao-nguoc {
  background: linear-gradient(to left, transparent, var(--mau-vang));
}
.bieu-tuong-trang-tri { font-size: 16px; color: var(--mau-vang); }
.hero-nhan-nho {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mau-khoi);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeLen .8s .35s forwards;
}
.hero-tieu-de {
  font-family: var(--font-tieu-de);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 300;
  color: var(--mau-kem);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeLen .9s .5s forwards;
}
.hero-phu-de {
  font-family: var(--font-tieu-de);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(247,240,227,.5);
  letter-spacing: .04em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeLen .8s .65s forwards;
}
.hero-cac-nut {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeLen .8s .8s forwards;
}
.hero-cuon-xuong {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeLen .8s 1.1s forwards;
}
.cuon-nhan { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--mau-khoi); }
.cuon-duong {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--mau-vang), transparent);
  animation: nhipDong 2s 1.5s infinite;
}
@keyframes fadeLen { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes nhipDong { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── THỐNG KÊ ── */
.thanh-thong-ke {
  background: var(--mau-kem);
  border-top: 3px solid var(--mau-vang);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.muc-thong-ke {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--mau-kem-dam);
  transition: background .25s;
}
.muc-thong-ke:last-child { border-right: none; }
.muc-thong-ke:hover { background: var(--mau-giay); }
.tk-so {
  font-family: var(--font-tieu-de);
  font-size: 48px;
  font-weight: 300;
  color: var(--mau-vang);
  line-height: 1;
  display: block;
}
.tk-nhan {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mau-khoi);
  margin-top: 6px;
  display: block;
}
.tk-mo-ta { font-size: 13px; color: var(--mau-nau); margin-top: 8px; line-height: 1.5; }

/* ── TIN TỨC ── */
#tin-tuc { background: var(--mau-trang); }
.luoi-danh-muc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-loc {
  background: transparent;
  border: 1px solid var(--mau-kem-dam);
  color: var(--mau-khoi);
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-noi-dung);
}
.btn-loc:hover, .btn-loc.dang-chon {
  background: var(--mau-vang);
  border-color: var(--mau-vang);
  color: var(--mau-dam);
}
.luoi-tin-tuc {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  background: var(--mau-kem-dam);
}
.the-bai-viet { background: var(--mau-trang); overflow: hidden; transition: background .2s; }
.the-bai-viet:hover { background: var(--mau-giay); }
.the-bai-viet.noi-bat { grid-row: span 2; }
.bai-viet-lien-ket { display: block; text-decoration: none; color: inherit; height: 100%; }
.bai-viet-hinh {
  aspect-ratio: 16/9;
  background: var(--mau-kem-dam);
  overflow: hidden;
  position: relative;
}
.the-bai-viet.noi-bat .bai-viet-hinh { aspect-ratio: 4/5; }
.bai-viet-hinh img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.the-bai-viet:hover .bai-viet-hinh img { transform: scale(1.03); }
.hinh-mac-dinh {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: .2;
}
.bai-viet-danh-muc {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: var(--mau-vang);
  color: var(--mau-dam);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
}
.bai-viet-noi-dung { padding: 16px 20px 20px; }
.the-bai-viet.noi-bat .bai-viet-noi-dung { padding: 18px 24px 24px; }
.bai-viet-tieu-de {
  font-family: var(--font-tieu-de);
  font-size: 18px;
  font-weight: 400;
  color: var(--mau-dam);
  line-height: 1.4;
  margin-bottom: 8px;
}
.the-bai-viet.noi-bat .bai-viet-tieu-de { font-size: 26px; }
.bai-viet-tom-tat { font-size: 13px; color: var(--mau-khoi); line-height: 1.7; margin-bottom: 12px; }
.bai-viet-meta { font-size: 11px; color: var(--mau-khoi); display: flex; gap: 8px; flex-wrap: wrap; }
.thong-bao-trong { padding: 48px 24px; text-align: center; color: var(--mau-khoi); font-size: 14px; background: var(--mau-trang); }

/* ── LỊCH LỄ ── */
.phan-toi {
  background: var(--mau-dam);
  background-size: cover;
  background-position: center;
}
.phan-toi-lop-nen { background: rgba(28,16,8,.88); padding: 96px 0; }
.luoi-su-kien { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.the-su-kien { border: 1px solid rgba(201,146,42,.2); transition: border-color .25s, background .25s; }
.the-su-kien:hover { border-color: var(--mau-vang); background: rgba(201,146,42,.05); }
.lien-ket-su-kien { display: flex; align-items: center; gap: 20px; padding: 24px; text-decoration: none; color: inherit; }
.ngay-su-kien { text-align: center; flex-shrink: 0; }
.ngay-so {
  font-family: var(--font-tieu-de);
  font-size: 42px;
  font-weight: 300;
  color: var(--mau-vang);
  line-height: 1;
  display: block;
}
.ngay-thang { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--mau-khoi); display: block; }
.su-kien-duong-ngang { width: 1px; background: rgba(201,146,42,.2); align-self: stretch; flex-shrink: 0; }
.su-kien-loai { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mau-vang); margin-bottom: 6px; }
.su-kien-tieu-de {
  font-family: var(--font-tieu-de);
  font-size: 20px;
  font-weight: 400;
  color: var(--mau-kem);
  line-height: 1.3;
  margin-bottom: 6px;
}
.su-kien-gio { font-size: 12px; color: var(--mau-khoi); }

/* ── THƯ VIỆN ── */
.phan-kem { background: var(--mau-kem); }
.luoi-thu-vien {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 4px;
}
.the-album { overflow: hidden; }
.the-album.album-lon { grid-column: span 2; grid-row: span 2; }
.the-album:nth-child(4) { grid-column: span 2; }
.album-hinh {
  width: 100%;
  height: 100%;
  background: var(--mau-kem-dam);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .4s;
}
.the-album:hover .album-hinh { transform: scale(1.02); }
.hinh-chua-co { font-size: 32px; opacity: .2; }
.album-lop {
  position: absolute;
  inset: 0;
  background: rgba(28,16,8,0);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  transition: background .3s;
}
.the-album:hover .album-lop { background: rgba(28,16,8,.5); }
.album-tieu-de-lop {
  font-family: var(--font-tieu-de);
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
  text-align: right;
}
.album-so-anh {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  opacity: 0;
  transition: all .3s;
  margin-top: 4px;
}
.the-album:hover .album-tieu-de-lop,
.the-album:hover .album-so-anh { opacity: 1; transform: translateY(0); }

/* ── LIÊN HỆ ── */
.phan-lien-he {
  background: var(--mau-giay);
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--mau-vang);
}
.lien-he-lop-nen { background: rgba(242,232,213,.92); padding: 96px 0; }
.luoi-lien-he { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.khoi-thong-tin { display: flex; flex-direction: column; gap: 24px; }
.muc-lien-he { display: flex; gap: 16px; align-items: flex-start; }
.lien-he-bieu-tuong {
  width: 44px;
  height: 44px;
  border: 1px solid var(--mau-vang);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--mau-nau);
}
.lien-he-nhan { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mau-khoi); margin-bottom: 3px; }
.lien-he-gia-tri { font-size: 14px; color: var(--mau-dam); line-height: 1.6; }
.lien-he-gia-tri a { color: var(--mau-nau); }
.lien-he-gia-tri a:hover { color: var(--mau-vang); }

/* ── FORM ── */
.form-lien-he, .form-binh-luan { display: flex; flex-direction: column; gap: 16px; }
.form-nhom { display: flex; flex-direction: column; gap: 6px; }
.form-nhom-ngang { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-nhan { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--mau-khoi); }
.bat-buoc { color: var(--mau-do-den); }
.form-o-nhap {
  background: var(--mau-trang);
  border: 1px solid var(--mau-kem-dam);
  padding: 11px 14px;
  font-family: var(--font-noi-dung);
  font-size: 14px;
  color: var(--mau-dam);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-o-nhap:focus { border-color: var(--mau-vang); }
.form-o-nhap.loi { border-color: var(--mau-do-den); }
.form-vung-van-ban { resize: vertical; min-height: 100px; }
.form-gui { border: none; cursor: pointer; align-self: flex-start; }
.thong-bao-form, #thong-bao-binh-luan {
  font-size: 13px;
  padding: 10px 14px;
  display: none;
}
.thong-bao-form.thanh-cong, #thong-bao-binh-luan.thanh-cong {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.thong-bao-form.loi, #thong-bao-binh-luan.loi {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ── FOOTER ── */
#footer-chinh {
  background: var(--mau-dam);
  background-size: cover;
  background-position: center;
}
.footer-lop-nen { background: rgba(28,16,8,.92); padding: 56px 0 24px; }
.footer-tren { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(247,240,227,.08); }
.footer-ten-chua { font-family: var(--font-tieu-de); font-size: 22px; color: var(--mau-kem); }
.footer-mo-ta { font-size: 13px; color: rgba(247,240,227,.4); margin-top: 12px; line-height: 1.7; }
.footer-mxh { display: flex; gap: 10px; margin-top: 20px; }
.btn-mxh {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247,240,227,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: rgba(247,240,227,.4);
  transition: all .2s;
  text-decoration: none;
}
.btn-mxh:hover { border-color: var(--mau-vang); color: var(--mau-vang); }
.footer-cot h4 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mau-vang); margin-bottom: 16px; }
.footer-danh-sach { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-danh-sach li a { color: rgba(247,240,227,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-danh-sach li a:hover { color: var(--mau-vang-nhat); }
.footer-lien-he li { display: flex; gap: 10px; align-items: flex-start; color: rgba(247,240,227,.5); font-size: 13px; line-height: 1.5; }
.footer-lien-he li a { color: rgba(247,240,227,.5); }
.footer-lien-he li a:hover { color: var(--mau-vang-nhat); }
.footer-duoi { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 11px; color: rgba(247,240,227,.3); }

/* ── WIDGET ── */
.widget { margin-bottom: 32px; background: var(--mau-trang); border: 1px solid var(--mau-kem-dam); padding: 24px; }
.widget-tieu-de { font-family: var(--font-tieu-de); font-size: 20px; font-weight: 400; color: var(--mau-dam); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--mau-kem-dam); }
.widget-danh-sach { list-style: none; display: flex; flex-direction: column; gap: 0; }
.widget-danh-sach li { padding: 8px 0; border-bottom: 1px solid var(--mau-kem-dam); display: flex; flex-direction: column; gap: 3px; }
.widget-danh-sach li:last-child { border-bottom: none; }
.widget-danh-sach a { color: var(--mau-dam); text-decoration: none; font-size: 13px; line-height: 1.4; transition: color .2s; }
.widget-danh-sach a:hover { color: var(--mau-nau); }
.widget-ngay { font-size: 11px; color: var(--mau-khoi); }
.widget-danh-muc { list-style: none; }
.widget-danh-muc li { padding: 7px 0; border-bottom: 1px solid var(--mau-kem-dam); display: flex; justify-content: space-between; }
.widget-danh-muc li:last-child { border-bottom: none; }
.widget-danh-muc a { color: var(--mau-dam); text-decoration: none; font-size: 13px; transition: color .2s; }
.widget-danh-muc a:hover { color: var(--mau-nau); }
.widget-lich-le { list-style: none; }
.widget-lich-le li { padding: 8px 0; border-bottom: 1px solid var(--mau-kem-dam); }
.widget-lich-le li:last-child { border-bottom: none; }
.widget-lich-le a { color: var(--mau-dam); text-decoration: none; font-size: 13px; display: flex; gap: 10px; align-items: flex-start; transition: color .2s; }
.widget-lich-le a:hover { color: var(--mau-nau); }
.widget-ngay-le { background: var(--mau-vang); color: var(--mau-dam); font-size: 10px; font-weight: 500; padding: 2px 6px; flex-shrink: 0; }

/* ── BÀI VIẾT CHI TIẾT ── */
.bo-cuc-bai-viet { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 56px 0; align-items: start; }
.dau-bai { margin-bottom: 32px; }
.nhan-danh-muc {
  display: inline-block;
  background: var(--mau-vang);
  color: var(--mau-dam);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.bai-tieu-de { font-family: var(--font-tieu-de); font-size: clamp(28px,4vw,44px); font-weight: 300; line-height: 1.2; margin-bottom: 16px; }
.bai-meta { font-size: 12px; color: var(--mau-khoi); display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.anh-dau-bai { margin-bottom: 32px; }
.anh-dau-bai img { width: 100%; height: auto; }
.bai-noi-dung { line-height: 1.9; font-size: 15px; color: #2c2218; }
.bai-noi-dung p { margin-bottom: 1.2em; }
.bai-noi-dung h2, .bai-noi-dung h3 { font-family: var(--font-tieu-de); font-weight: 400; color: var(--mau-dam); margin: 1.6em 0 .6em; }
.bai-noi-dung h2 { font-size: 28px; }
.bai-noi-dung h3 { font-size: 22px; }
.bai-noi-dung img { margin: 1.5em 0; border-radius: 2px; }
.bai-noi-dung blockquote { border-left: 3px solid var(--mau-vang); padding: 12px 20px; margin: 1.5em 0; background: var(--mau-kem); font-style: italic; font-family: var(--font-tieu-de); font-size: 18px; }
.bai-noi-dung a { color: var(--mau-nau); }
.bai-noi-dung ul, .bai-noi-dung ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.bai-noi-dung li { margin-bottom: .4em; }
.bai-chan { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--mau-kem-dam); display: flex; flex-direction: column; gap: 12px; }
.cac-the, .chia-se { font-size: 13px; color: var(--mau-khoi); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cac-the a, .nut-chia-se {
  background: var(--mau-kem);
  color: var(--mau-dam);
  padding: 4px 12px;
  font-size: 12px;
  text-decoration: none;
  transition: background .2s;
  border: 1px solid var(--mau-kem-dam);
}
.cac-the a:hover, .nut-chia-se:hover { background: var(--mau-vang); border-color: var(--mau-vang); color: var(--mau-dam); }
.dieu-huong-bai { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; border-top: 1px solid var(--mau-kem-dam); padding-top: 24px; }
.bai-ke-truoc, .bai-ke-sau { display: flex; flex-direction: column; gap: 4px; padding: 16px; border: 1px solid var(--mau-kem-dam); text-decoration: none; transition: border-color .2s; }
.bai-ke-sau { text-align: right; }
.bai-ke-truoc:hover, .bai-ke-sau:hover { border-color: var(--mau-vang); }
.ke-nhan { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--mau-khoi); }
.ke-tieu-de { font-family: var(--font-tieu-de); font-size: 16px; color: var(--mau-dam); line-height: 1.3; }

/* ── BÌNH LUẬN ── */
.khu-binh-luan { margin-top: 48px; border-top: 1px solid var(--mau-kem-dam); padding-top: 40px; }
.khu-binh-luan > h2 { font-family: var(--font-tieu-de); font-size: 28px; font-weight: 400; margin-bottom: 28px; }
.danh-sach-binh-luan { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.muc-binh-luan { display: flex; gap: 14px; align-items: flex-start; }
.bl-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mau-vang);
  color: var(--mau-dam);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tieu-de);
  font-size: 18px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.bl-noi-dung { flex: 1; background: var(--mau-kem); padding: 14px 16px; }
.bl-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.bl-ten { font-size: 14px; font-weight: 500; color: var(--mau-dam); }
.bl-ngay { font-size: 11px; color: var(--mau-khoi); }
.bl-van-ban { font-size: 14px; color: var(--mau-dam); line-height: 1.7; }
.chua-co-binh-luan { font-size: 14px; color: var(--mau-khoi); padding: 24px 0; }
.form-binh-luan > h3 { font-family: var(--font-tieu-de); font-size: 24px; font-weight: 400; margin-bottom: 20px; }

/* ── PHÂN TRANG ── */
.phan-trang { margin-top: 48px; }
.phan-trang ul { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; }
.phan-trang .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mau-kem-dam);
  color: var(--mau-dam);
  text-decoration: none;
  font-size: 13px;
  transition: all .2s;
}
.phan-trang .page-numbers:hover,
.phan-trang .page-numbers.current { background: var(--mau-vang); border-color: var(--mau-vang); color: var(--mau-dam); }
.phan-trang .page-numbers.prev,
.phan-trang .page-numbers.next { width: auto; padding: 0 16px; }

/* ── ADMIN BAR CUSOM ── */
#chua-admin-bar a:hover { opacity: .8; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .luoi-tin-tuc { grid-template-columns: 1fr 1fr; }
  .the-bai-viet.noi-bat { grid-column: span 2; grid-row: auto; }
  .the-bai-viet.noi-bat .bai-viet-hinh { aspect-ratio: 16/9; }
  .luoi-thu-vien { grid-template-columns: repeat(3,1fr); grid-template-rows: auto; }
  .the-album.album-lon { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(28,16,8,.98);
    flex-direction: column;
    border-top: 1px solid rgba(201,146,42,.2);
  }
  .nav-links.mo { display: flex; }
  .nav-links li a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.04); }
  .nav-links li a::after { display: none; }
  .thanh-thong-ke { grid-template-columns: 1fr; }
  .muc-thong-ke { border-right: none; border-bottom: 1px solid var(--mau-kem-dam); }
  .luoi-tin-tuc { grid-template-columns: 1fr; background: transparent; gap: 16px; }
  .the-bai-viet { border: 1px solid var(--mau-kem-dam); }
  .the-bai-viet.noi-bat { grid-column: auto; }
  .luoi-su-kien { grid-template-columns: 1fr; }
  .luoi-thu-vien { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .the-album.album-lon { grid-column: auto; }
  .luoi-lien-he { grid-template-columns: 1fr; gap: 40px; }
  .footer-tren { grid-template-columns: 1fr; gap: 32px; }
  .footer-duoi { flex-direction: column; gap: 12px; text-align: center; }
  .bo-cuc-bai-viet { grid-template-columns: 1fr; }
  .thanh-ben { order: -1; }
  .dieu-huong-bai { grid-template-columns: 1fr; }
  .bai-ke-sau { text-align: left; }
  .form-nhom-ngang { grid-template-columns: 1fr; }
  .nav-trong { position: relative; }
}
