/* ==========================================================================
   1. GLOBAL & VARIABLES (MODERN PALETTE)
   ========================================================================== */
:root {
  --primary-color: #1c3f60; /* Navy */
  --accent-color: #2487ce; /* Blue */
  --accent-light: #e6f0fb; /* Soft Blue Background */
  --bg-soft: #f9fafb; /* Ultra Light Grey for Backgrounds */
  --border-color: #eaecf0; /* Subtle Border */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-hover: 0 12px 30px -10px rgba(36, 135, 206, 0.15); /* Blue glow shadow */
}

/* ใช้ฟอนต์เดิมตาม Theme หลัก */
body,
h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: var(--nav-font) !important;
}

body {
  background-color: #fff;
  color: #475467; /* Text color ที่นุ่มตากว่าสีดำสนิท */
}

/* ==========================================================================
   2. NAVMENU MODERN (DESKTOP)
   ========================================================================== */

.header {
  transition: all 0.4s ease;
  z-index: 997;
  background-color: rgba(255, 255, 255, 0.85); /* โปร่งแสง */
  backdrop-filter: blur(16px); /* เบลอฉากหลัง */
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Scrolled State: เพิ่มเงาเมื่อเลื่อนลง */
.scrolled .header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-color);
}

/* Logo */
.logo-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-content img {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-content:hover img {
  transform: scale(1.05) rotate(-3deg);
}
.vertical-line {
  width: 1px;
  height: 32px;
  background-color: #e0e0e0;
  margin: 0 4px;
}
.sitename {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  margin: 0;
}

/* Desktop Navigation */
.navmenu {
  display: flex;
  align-items: center;
}
.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.navmenu a,
.navmenu a:focus {
  font-family: var(--nav-font), sans-serif !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #344054; /* สีเทาเข้ม อ่านสบาย */
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 99px; /* Pill Shape */
  text-decoration: none;
}

.navmenu a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Hover Effect: Soft Pill */
.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  background-color: var(--accent-light);
  color: var(--accent-color);
}
.navmenu li:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown Desktop */
.navmenu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 240px;
  display: block;
  flex-direction: column;
}
.navmenu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navmenu ul li ul li {
  width: 100%;
  display: block;
}
.navmenu ul li ul li a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #344054;
  border-radius: 8px;
  background: transparent;
  width: 100%;
  justify-content: flex-start;
}
.navmenu ul li ul li a:hover {
  background-color: var(--bg-soft);
  color: var(--accent-color);
  transform: translateX(4px);
}

/* ==========================================================================
   3. MOBILE MENU (MODERN GLASS OVERLAY)
   ========================================================================== */

.mobile-nav-toggle {
  display: none !important;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    z-index: 9999;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    width: 44px;
    height: 44px;
    background: var(--bg-soft); /* พื้นหลังปุ่ม */
    border-radius: 50%;
    transition: all 0.3s;
  }
  .mobile-nav-toggle:hover {
    background: var(--accent-light);
    color: var(--accent-color);
  }

  /* Overlay Menu */
  .navmenu > ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96); /* เกือบขาวทึบ */
    backdrop-filter: blur(10px); /* เพิ่มความเบลอให้ดู Modern */
    z-index: 9998;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 90px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
  }

  body.mobile-nav-active .navmenu > ul {
    display: flex !important;
    animation: fadeInMenu 0.3s ease-out forwards;
  }

  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: scale(0.98);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Mobile Links */
  .navmenu a {
    font-size: 1.15rem;
    padding: 16px;
    width: 100%;
    text-align: left;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 8px;
    background: #fff; /* การ์ดเล็กๆ แต่ละเมนู */
  }

  /* Link Animation (ให้ค่อยๆ โผล่) */
  body.mobile-nav-active .navmenu li {
    opacity: 0;
    animation: slideUp 0.4s ease forwards;
  }
  body.mobile-nav-active .navmenu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  body.mobile-nav-active .navmenu li:nth-child(2) {
    animation-delay: 0.15s;
  }
  body.mobile-nav-active .navmenu li:nth-child(3) {
    animation-delay: 0.2s;
  }
  body.mobile-nav-active .navmenu li:nth-child(4) {
    animation-delay: 0.25s;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--accent-color);
    background-color: var(--accent-light);
    border-color: transparent;
  }

  /* Dropdown Mobile */
  .navmenu ul li ul {
    position: static;
    display: none;
    background: transparent;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    border: none;
    margin: 5px 0 15px 0;
    padding-left: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .navmenu ul li.dropdown-active > ul {
    display: block;
    border-left: 2px solid var(--accent-color);
  }
  .navmenu ul li ul li a {
    background: transparent;
    border: none;
    font-size: 1rem;
    padding: 10px 15px;
  }
  .navmenu .toggle-dropdown {
    position: absolute;
    right: 15px;
    font-size: 1.2rem;
    padding: 12px;
  }
  .navmenu ul li.dropdown-active > a > .toggle-dropdown {
    transform: rotate(180deg);
    color: var(--accent-color);
  }
}

@media (min-width: 1200px) {
  .navmenu > ul {
    display: flex;
    flex-direction: row;
  }
}

/* ==========================================================================
   4. HERO SECTIONS (GRADIENT & CLEAN)
   ========================================================================== */

/* Hero Compact (Banner) */
.hero-compact {
  padding: 4rem 0 3rem 0;
  /* พื้นหลัง Gradient นุ่มๆ แทนสีพื้นเรียบๆ */
  background: radial-gradient(
    circle at 10% 20%,
    rgb(242, 249, 255) 0%,
    rgb(255, 255, 255) 90%
  );
  position: relative;
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 1.8rem;
  background-color: var(--accent-color);
  animation: blink 1s infinite;
  vertical-align: middle;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Floating Shapes */
.idea-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
  filter: blur(40px);
}
.idea-shape.small {
  width: 100px;
  height: 100px;
  background: #d0e2f5;
  top: -20px;
  left: 5%;
}
.idea-shape.medium {
  width: 150px;
  height: 150px;
  background: #e6f0fb;
  bottom: 10%;
  right: 10%;
}

/* Hero Post Wrapper */
.hero-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden; /* โค้งมนมากขึ้น */
  margin-bottom: 3.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15); /* เงาลึกดูแพง */
  aspect-ratio: 4 / 3;
  min-height: 240px;
}
@media (min-width: 768px) {
  .hero-wrapper {
    aspect-ratio: 16 / 9;
    min-height: 300px;
  }
}
@media (min-width: 1200px) {
  .hero-wrapper {
    aspect-ratio: 21 / 9;
    min-height: 400px;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  ); /* ไล่สีจากล่างขึ้นบน */
  z-index: 1;
}
.hero-wrapper:hover .hero-img {
  transform: scale(1.05);
}
.hero-wrapper:hover .hero-content {
  transform: translateY(-5px);
}

/* Tag Styling */
.hero-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-color);
  font-weight: 700;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: absolute;
  bottom: 30px;
  right: 30px;
  max-width: 600px;
  min-width: 300px;
  background: rgba(28, 63, 96, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  color: #fff;
  text-align: left;
  transition: transform 0.4s ease;
}
.hero-content h2 {
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.hero-footer .left-meta {
  display: flex;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero-footer .left-meta i {
  margin-right: 0.4rem;
  color: #fff;
}

/* Mobile Fix Hero */
@media (max-width: 991px) {
  .hero-wrapper {
    aspect-ratio: auto !important;
    min-height: auto !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
  }
  .hero-img {
    height: 260px;
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .hero-overlay {
    display: none;
  }
  .hero-content {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin-top: -30px;
    border-radius: 20px 20px 16px 16px;
    background: var(--primary-color);
    padding: 1.5rem;
    box-shadow: none;
  }
  .hero-tag {
    top: 15px;
    left: 15px;
  }
}

/* ==========================================================================
   5. CATEGORY GRID (SOFT STYLE)
   ========================================================================== */
.category-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 90px;
}

/* ไอคอนแบบ Soft Filled (พื้นหลังสีอ่อน ไม่มีขอบแข็ง) */
.cat-item .icon-box {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 24px; /* Squircle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  border: 1px solid var(--border-color); /* ขอบบางๆ */
  margin-bottom: 0.8rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
}

.cat-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #667085;
  transition: color 0.3s ease;
}

/* Hover Effect: เด้งดึ๋ง + เปลี่ยนสี */
.cat-item:hover .icon-box {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px -5px rgba(36, 135, 206, 0.4);
}
.cat-item:hover span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .category-grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 1rem 1.5rem 1rem;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
  }
  .cat-item {
    flex-shrink: 0;
  }
}

/* ==========================================================================
   6. CARDS (CLEAN & MODERN)
   ========================================================================== */
.post-card {
  border: 1px solid var(--border-color);
  border-radius: 16px; /* โค้งมนขึ้น */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* Hover: Lift Up + Glow Shadow */
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #d0e2f5;
}

.post-card .card-img-top {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-hover {
  position: relative;
  overflow: hidden;
}
.post-card:hover .img-hover img {
  transform: scale(1.08);
}

.tag-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-color);
  font-weight: 700;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.post-card .card-body {
  padding: 1.5rem;
}
.post-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-footer-info {
  border-top: 1px solid var(--bg-soft);
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #98a2b3;
}
.left-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.left-meta i {
  margin-right: 0.4rem;
  color: var(--accent-color);
}

/* Read More Button (Pill Style) */
.btn-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}
.btn-readmore:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 10px rgba(36, 135, 206, 0.3);
}
.btn-readmore i {
  transition: transform 0.3s;
}
.btn-readmore:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   7. MISC & SWIPER
   ========================================================================== */
.share-wrapper {
  position: relative;
  display: inline-block;
  z-index: 5;
}
.btn-share {
  background: transparent;
  border: none;
  color: #98a2b3;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-share:hover {
  color: var(--accent-color);
  transform: scale(1.15);
}

/* Share Menu */
.share-menu {
  position: absolute;
  right: -10px;
  bottom: 140%;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  display: none;
  padding: 8px 16px;
  gap: 10px;
  min-width: max-content;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.share-menu a {
  color: var(--primary-color);
  font-size: 1rem;
  transition: 0.2s;
}
.share-menu a:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}
.share-wrapper.open .share-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* List Group */
.list-group-item {
  transition: transform 0.2s ease;
  border-color: var(--border-color);
}
.list-group-item:hover {
  transform: translateX(5px);
  background-color: var(--bg-soft);
}
.list-group-item:hover h6 {
  color: var(--accent-color) !important;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
  border-color: var(--accent-color);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.1rem;
  font-weight: 800;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d0d5dd;
  opacity: 1;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 24px;
  border-radius: 10px;
}

/* ==================== FIX: BUTTON & MOBILE TOGGLE ==================== */

/* 1. แก้ไขปุ่ม "อ่านต่อ" ใน Hero Section ให้เห็นชัดเจน */
.hero-content .btn-readmore {
  background-color: #fff !important; /* บังคับพื้นหลังขาว */
  color: var(--accent-color) !important; /* บังคับตัวหนังสือสีฟ้า */
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-content .btn-readmore:hover {
  background-color: var(--accent-color) !important; /* Hover เป็นสีฟ้า */
  color: #fff !important; /* ตัวหนังสือขาว */
}

/* 2. แก้ไขปุ่ม Hamburger ในหน้าจอเล็กมาก (Mobile Small) */
@media (max-width: 575px) {
  /* ปรับขนาดโลโก้ให้เล็กลง เพื่อไม่ให้ดันปุ่มตกขอบ */
  .header .logo img {
    max-height: 50px !important; /* ลดความสูงโลโก้ */
    width: auto !important;
  }

  .header .logo h1 {
    font-size: 20px !important; /* ลดขนาดชื่อเว็บ */
  }

  /* ปรับปุ่ม Hamburger ให้ลอยเด่น และไม่หลุดจอ */
  .mobile-nav-toggle {
    right: 10px !important; /* ขยับชิดขวามากขึ้น */
    width: 36px !important; /* ปรับขนาดให้กะทัดรัด */
    height: 36px !important;
    font-size: 22px !important;
    background: rgba(
      255,
      255,
      255,
      0.95
    ) !important; /* ใส่พื้นหลังให้ปุ่มเห็นชัด */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important; /* ใส่เงา */
    border: 1px solid #eee !important;
  }

  /* ปรับ Padding ของ Header ในมือถือให้สมดุล */
  .header .branding {
    padding: 10px 0 !important;
    min-height: 60px !important;
  }
}

/* ==========================================================================
   8. FOOTER CUSTOM STYLES
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-color);
  background-color: #fafcfd !important;
}

/* ลิงก์ใน Footer */
.footer-nav-links li {
  margin-bottom: 12px;
}

.footer-nav-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px); /* เวลาชี้แล้วเลื่อนไปทางขวานิดหน่อย */
}

/* ปุ่ม Social ใน Footer */
.footer-social-link {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px; /* Squircle style เหมือน Category Icon */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-link:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(36, 135, 206, 0.3);
}

/* จัดการความสูงโลโก้ใน Footer ให้สมดุล */
.footer .logo-content img {
  height: 45px !important;
}
.footer .sitename {
  margin-bottom: 0;
}

/* ==========================================================================
   9. BLOG DETAILS STYLING
   ========================================================================== */

/* ปรับระยะห่างตัวอักษรให้อ่านง่ายขึ้น */
.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.post-content h4 {
  margin-top: 2.5rem;
  color: var(--primary-color);
}

/* เอฟเฟกต์ยกตัวเวลา Hover ที่ปุ่ม Next/Prev */
.hover-lift {
  transition: all 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color) !important;
  box-shadow: var(--shadow-hover) !important;
}

/* Sidebar Styling */
.sidebar-item {
  border-color: var(--border-color) !important;
}

.sidebar-item h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  margin-top: 10px;
  border-radius: 2px;
}

/* ปรับฟอนต์ Breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
}
