@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  /* border: 1px solid red !important; */
}

a {
  text-decoration: none;
  color: #333;
}

svg {
  width: 14px;
}

[class*='title'] {
  font-family: serif;
  font-size: 1.375rem;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfdfdf;
  padding: 0 23px;
  top: 0;
  background-color: #fafafa;
  position: sticky;
  font-size: 13px;
  z-index: 1000;
}

.nav-bar__left,
.nav-bar__right {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.nav-bar__icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: larger;
  font-size: 20px;
  padding-right: 20px;
}

.nav-bar__editions-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 12px;
}

.nav-bar__item {
  padding-right: 10px;
  position: relative;
}

.overflow-hidden {
  display: none;
}

/* MENU */
.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;

  /* Mặc định ẩn */
  visibility: hidden;
}

/* Lớp phủ mờ phía sau */
.sidebar-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 46, 46, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.sidebar-nav--open .sidebar-nav__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Khung nội dung chính của sidebar */
.sidebar-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 90%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* --- Trạng thái KHI MỞ --- */
.sidebar-nav--open {
  visibility: visible;
}

/* --- Các phần tử bên trong Panel --- */
.sidebar-nav__header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
}

.sidebar-nav__close-button {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #333;
  cursor: pointer;
  margin-right: 1rem;
}

.sidebar-nav__logo img {
  height: 21px;
  width: 180px;
}

.sidebar-nav__search-form {
  position: relative;
  margin: 0.75rem 1.5rem;
}

.sidebar-nav__search-input {
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  padding: 0.75rem 42px 0.75rem 0.75rem;
  font-size: 0.875rem;
}

.sidebar-nav__search-input:focus {
  border: 1px solid #0085e7;
  outline: none;
}

.sidebar-nav__search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
}

.sidebar-nav__search-divider {
  height: 24px;
  border-left: 1px solid #dfdfdf;
  margin-right: 0.5rem;
}

.sidebar-nav__search-submit i {
  font-size: 1.25rem;
  color: #333;
}

.sidebar-nav__list {
  font-family: sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.sidebar-nav__link {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #2f2f2f;
  text-decoration: none;
}

.sidebar-nav__group {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 1.5rem;
  font-weight: bold;
  color: #2f2f2f;
}

.sidebar-nav__group-title {
  font-family: sans-serif;
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
}

.sidebar-nav__toggle {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
}

.sidebar-nav__divider {
  border: none;
  border-top: 1px solid #b5b5b5;
  margin: 0.75rem 1.5rem;
}

.sidebar-nav__footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav__footer-item {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

.sidebar-nav__footer-item:hover {
  background-color: #f4f4f4;
}

.sidebar-nav__footer-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f2f2f;
  text-decoration: none;
}

/* Submenu trong sidebar */
.sidebar-nav__item--has-submenu {
  position: relative;
}

.sidebar-nav__item--has-submenu:hover {
  background-color: #fff;
}

.sidebar-nav__item--has-submenu:hover > .sidebar-nav__group {
  background-color: #f4f4f4;
}

.sidebar-nav__submenu {
  position: fixed;
  width: 220px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Khi di chuột vào item cha, hiển thị menu con */
.sidebar-nav__item--has-submenu:hover > .sidebar-nav__submenu {
  visibility: visible;
  opacity: 1;
}

.sidebar-nav__submenu-link {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #2f2f2f;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  /* Ngăn chữ bị xuống dòng */
}

.sidebar-nav__submenu-link:last-child {
  border-bottom: none;
}

.sidebar-nav__submenu-link:hover {
  background-color: #f4f4f4;
}

.sidebar-nav__item--has-submenu .sidebar-nav__toggle i {
  color: #555;
}

/* SEARCH */
.search-overlay {
  visibility: hidden;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
}

.search-overlay--visible {
  visibility: visible;
  opacity: 1;
}

.search-overlay__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  gap: 1.5rem;
}

.search-overlay__close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #a6a6a6;
  cursor: pointer;
}

.search-overlay__title {
  color: #121212;
  font-weight: 400;
}

.search-overlay__form {
  width: 100%;
  max-width: 860px;
}

.search-overlay__input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #dfdfdf;
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background-color: #fff;
}

.search-overlay__input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

.search-overlay__divider {
  width: 1px;
  align-self: stretch;
  background-color: #dfdfdf;
  margin: -0.5rem 0.75rem;
}

.search-overlay__submit-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-overlay__submit-button i {
  font-size: 1.25rem;
  color: #111;
}

/* *** EDITIONS */

.nav-bar__editions-menu.show {
  display: block;
}

.nav-bar__editions-menu {
  display: none;
  position: absolute;
  min-width: 100px;
  width: 145px;
  padding: 12px 0 28px 0;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.nav-bar__editions-menu a {
  display: block;
  padding: 4px 16px;
}

.nav-bar__editions-menu a:hover {
  font-weight: bolder;
  background-color: #e8e8e8;
}

.nav-bar__editions-divider {
  width: 100px;
  margin: 0 auto;
  height: 1px;
}

.fa-angle-down {
  font-size: 70%;
  color: #a9a9a9;
}

/* *** NAV-BAR__CENTER  */

.nav-bar__center {
  display: flex;
  align-items: center;
}

.nav-bar__center a.nav-bar__link {
  font-weight: 550;
}

/* Ghi đè position: relative của class gốc. 
   Điều này cho phép dropdown con thoát khỏi giới hạn của item 
   và căn chỉnh theo toàn bộ nav-bar. */
.nav-bar__item--full-width {
  position: static;
  padding: 15px 16px 15px 0;
}

/* -- Main Dropdown Container -- */
.nav-bar__dropdown {
  display: block;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  padding: 35px 20px;
  top: 100%;
  left: 0;
  right: 0;
}

.nav-bar__item:hover .nav-bar__dropdown {
  visibility: visible;
  opacity: 1;
}

/* -- Content Wrapper inside Dropdown -- */
.nav-bar__dropdown-content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-bar__dropdown-left {
  width: 250px;
  flex-shrink: 0;
}

.nav-bar__dropdown-heading {
  font-family: 'EB Garamond';
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 300 !important;
  color: rgb(47, 47, 47);
}

.nav-bar__dropdown-description {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* -- Sections -- */
.nav-bar__dropdown-right {
  width: 270px;
  flex-shrink: 0;
}

.nav-bar__dropdown-title {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}

.nav-bar__dropdown-list {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-bar__dropdown-list li {
  padding: 1rem 0;
}

.nav-bar__dropdown-list a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s ease-in-out;
}

.nav-bar__dropdown-list a:hover {
  border-bottom: 1px solid black;
}

/* -- Newsletters -- */
.nav-bar__dropdown-newsletters {
  flex-grow: 1;
  padding-left: 24px;
  border-left: 1px solid #e5e7eb;
}

.newsletter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.newsletter-item {
  display: flex;
  gap: 12px;
  padding: 8px 4px;
  /* Thêm padding để tạo hiệu ứng hover đẹp hơn */
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.newsletter-item:hover {
  background-color: #f6f6f6;
  /* Hiệu ứng hover giống bản gốc */
}

.newsletter-item__image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.newsletter-item__content {
  overflow: hidden;
}

.newsletter-item__title {
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsletter-item__description {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  /* Giới hạn text trong 2 dòng */
  height: 36px;
  /* 12px * 1.5 line-height * 2 lines */
  overflow: hidden;
}

.newsletter-see-all {
  text-align: center;
  margin-top: 16px;
}

.newsletter-see-all a {
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #666;
  text-decoration: none;
  padding-bottom: 2px;
}

/* -- Menu Games -- */
.nav-bar__dropdown-list--games li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 0;
}

.nav-bar__game-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
}

.nav-bar__dropdown-list--games a {
  border-bottom: 1px solid transparent;
}

.nav-bar__dropdown-list--games a:hover {
  border-bottom: 1px solid black;
}

/* *** NAV-BAR__RIGHT  */
.login-template-btn {
  color: white;
  margin: 0 2px;
  border-radius: 4px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-family: Helvetica;
  font-size: 11px;
  font-weight: bold;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  -webkit-appearance: none;
}

.nav-bar__right .light-btn {
  width: 80px;
  background-color: white;
  border: 1px solid #979797;
  color: black;
}

#signup-btn {
  padding: 0 4px;
  width: auto;
}

.nav-bar__right .dark-btn {
  width: 80px;
  background: #0d73ea;
  border: 1px solid #0d73ea;
}

/* Chung */
.home-main {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* *** Header  */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: white;
  margin-top: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cfcfcf;
}

.header__left .header__date,
.header__right .header__membership {
  font-size: 13px;
  margin-bottom: 5px;
}

.header .header__center img {
  width: 402px;
}

.header__right .header__donate {
  text-align: end;
}

/* CONTENT */
/* --- CÁC STYLE CHUNG --- */
.page.home-main {
  padding-top: 1.5rem;
}

.page {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.content {
  width: 70%;
}

.content__divider {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

.content__divider_bold {
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  border: 0;
  border-top: 1px solid black;
}

.page__divider {
  width: 1px;
  background-color: rgb(181 181 181 / var(--tw-bg-opacity, 1));
  margin: 0 auto;
}

.border-dashed {
  border-top: 1px dashed #d1d5db;
}

.article-tag {
  display: inline-flex;
  background-color: #1f2937;
  color: white;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 0.25rem;
  border-radius: 2px;
  line-height: 1.8;
  letter-spacing: 0.2px;
  align-self: flex-start;
}

/* --- STORY-CARD --- */
.story-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: start;
  column-gap: 1.5rem;
}

.story-card .story-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.story-card .story-card__meta {
  display: flex;
}

.story-card .story-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-right: 1rem;
  text-decoration: none;
  color: #555;
  font-size: 12px;
  text-align: center;
}

.story-card .story-card__media {
  grid-row: span 2;
}

.story-card .story-card__media img.story-card__image {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
}

.story-card__excerpt {
  font-size: 0.875rem;
}

.secondary-story-card__content .story-card__title {
  padding-top: 1rem;
}

/* --- STORIES-SECTION --- */
.stories-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stories-section .stories-section__divider {
  border: 0;
  border-top: 1px solid #e0e0e0;
}

.stories-section .featured-story {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
}

.stories-section .featured-story__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stories-section .featured-story__image-container {
  order: 1;
}

.stories-section .featured-story__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.stories-section .featured-story__title {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.stories-section .featured-story__excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.stories-section .featured-story__meta {
  display: flex;
  align-items: center;
  margin-top: 5px;
  color: #6b7280;
  font-size: 0.75rem;
}

.stories-section .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #707070;
}

.stories-section i.fa-regular {
  font-size: 11px;
}

.stories-section .meta-item__icon {
  stroke-width: 2;
}

/* --- Story Grid (bên trong stories-section) --- */
.stories-section .story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.story-grid .story-card-mini:first-child {
  padding-left: 0;
}

.story-grid .story-card-mini:last-child {
  padding-right: 10px;
}

.story-grid .story-card-mini:not(:last-child) {
  padding-right: 10px;
  border-right: 1px dashed #d1d5db;
}

.stories-section .story-card-mini .story-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.stories-section .story-card-mini .story-card__title {
  font-size: larger;
  margin: 10px 0;
}

/* --- COMPONENT: PREMIUM-SECTION --- */
.premium-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.premium-section .content__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 1.5rem 0;
}

.premium-section .premium-section__header {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.premium-section .premium-section__divider {
  border: none;
  border-top: 1px solid #555;
  margin-bottom: 0.5rem;
}

.premium-section .premium-section__title-wrapper {
  display: flex;
}

.premium-section .premium-section__title-link {
  font-family: sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
}

/* --- Featured Article (bên trong premium-section) --- */
.premium-section .featured-article {
  display: grid;
  grid-template-columns: 1fr;
  /* Mặc định 1 cột cho mobile */
  gap: 1.5rem;
  align-items: start;
}

.premium-section .featured-article__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.premium-section .featured-article__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.premium-section .featured-article__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-decoration: none;
  color: #111;
}

.premium-section .featured-article__excerpt {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

.premium-section .featured-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  text-align: center;
}

.premium-section .featured-article__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #757575;
  text-decoration: none;
}

.premium-section .featured-article__meta .meta-item i {
  font-size: 0.7rem;
}

/* --- In-Depth Carousel (bên trong premium-section) --- */
.premium-section .in-depth-carousel {
  position: relative;
  padding-bottom: 3.5rem;
}

.premium-section .in-depth-carousel__container {
  overflow: hidden;
}

.premium-section .in-depth-carousel__track {
  display: flex;
  row-gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
}

.premium-section .article-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  flex: 0 0 100%;
  /* Mặc định 1 card trên mobile */
  min-width: 0;
  position: relative;
}

.premium-section .article-card--horizontal:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 0;
  height: 100%;
  /* border-left: 1px dashed #d1d5db; */
}

.premium-section .article-card__image-link {
  flex-shrink: 0;
  width: 45%;
}

.premium-section .article-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.premium-section .article-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.premium-section .article-card__tag {
  align-self: flex-start;
  background-color: #1f2937;
  color: white;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.1rem 0.25rem;
  border-radius: 2px;
}

.premium-section .article-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.premium-section .article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #555;
  margin-top: auto;
}

.premium-section .article-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.premium-section .in-depth-carousel__navigation {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 0.5rem;
}

.premium-section .carousel-button {
  border: 1px solid #2f2f2f;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: white;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-section .carousel-button:disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .premium-section .featured-article {
    grid-template-columns: 2fr 3fr;
  }

  .premium-section .featured-article__image-container {
    order: 1;
  }

  .premium-section .in-depth-carousel__track {
    overflow: hidden;
  }

  .premium-section .in-depth-carousel__navigation {
    display: flex;
  }

  .premium-section .article-card--horizontal {
    flex-basis: calc(50% - 0.75rem);
  }
}

/* --- TIP BANNER --- */
.tip-banner {
  display: block;
  width: 100%;
  margin: 0.5rem auto;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  text-align: center;
  font-size: 1.125rem;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  transition: opacity 0.2s ease-in-out;
}

.tip-banner:hover {
  opacity: 0.95;
}

.tip-banner__strong-text {
  margin-right: 0.5rem;
}

/* --- SECTION: EPOCH TV --- */
.epoch-tv-section {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.epoch-tv-section__header {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.epoch-tv-section__divider {
  border: none;
  height: 1px;
  background-color: #4b5563;
  margin-bottom: 0.5rem;
}

.epoch-tv-section__title-wrapper {
  display: flex;
}

.epoch-tv-section__title-link {
  font-family: sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}

.epoch-tv-section .content__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 1.5rem 0;
}

/* --- MEDIA BLOCK --- */
.media-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.media-block__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-block__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.media-block__link {
  text-decoration: none;
  color: #111;
}

.media-block__excerpt {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

.media-block__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.media-block__duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #555;
}

.media-block__play-button {
  font-size: 1.8rem;
  color: #111;
}

.media-block__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* --- BLOCK: VIDEO CARD (Dùng lại được) --- */
.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.epoch-tv-section .article-carousel .video-card {
  flex-basis: calc(100% / 3);
  border-right: 1px dashed #d1d5db;
  padding-right: 1.5rem;
}

.epoch-tv-section .article-carousel .video-card:last-child {
  border-right: none;
  padding-right: 0;
}

.video-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-card__content {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.video-card__author {
  flex-shrink: 0;
}

.video-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-card__link {
  text-decoration: none;
  color: #111;
}

/* --- CAROUSEL (bên trong epoch-tv-section) --- */
.epoch-tv-section .article-carousel {
  position: relative;
}

.epoch-tv-section .article-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.epoch-tv-section .article-carousel__track::-webkit-scrollbar {
  display: none;
}

.epoch-tv-section .article-carousel .video-card {
  flex: 0 0 80%;
}

.epoch-tv-section .article-carousel__navigation {
  display: none;
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .media-block {
    grid-template-columns: 3fr 2fr;
    /* Layout 2 cột */
  }

  .media-block__media-wrapper {
    order: -1;
    /* Đẩy ảnh lên trước/sang trái */
  }

  .epoch-tv-section .article-carousel__track {
    overflow: hidden;
  }

  .epoch-tv-section .article-carousel__navigation {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .epoch-tv-section .article-carousel .video-card {
    flex-basis: calc(100% / 3 - 1rem);
    /* Hiển thị 3 card */
  }
}

/* --- SECTION: CHINA --- */
.china-section {
  margin-bottom: 1.5rem;
}

.china-section__header {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.china-section__divider {
  border: none;
  height: 1px;
  background-color: #565656;
  margin-bottom: 0.5rem;
}

.china-section__title-wrapper {
  display: flex;
}

.china-section__title-link {
  font-family: sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}

.china-section .content__divider {
  border: none;
  border-top: 1px dashed #d1d5db;
  margin: 0;
  margin-top: 10px;
}

.china-section .article-carousel__track {
  gap: 1rem;
  margin-top: 20px;
}

/* --- Tái sử dụng và tinh chỉnh `featured-story` --- */
.china-section .featured-story {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
  align-items: start;
}

.china-section .featured-story__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.china-section .featured-story__image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.featured-story__image-container {
  grid-row: span 2;
}

.china-section .featured-story__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.china-section .featured-story__secondary-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1rem;
}

.china-section .featured-story__excerpt {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.china-section .article-meta {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.7rem;
}

.china-section .article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #757575;
  text-decoration: none;
}

.china-section .article-meta .meta-item i {
  font-size: 0.7rem;
}

.china-section .article-carousel .article-card {
  flex-basis: calc(100% / 3 - 1rem);
  /* Hiển thị 3 card */
}

.china-section .article-card__content {
  margin-top: 0.5rem;
}

.china-section .article-card:first-child {
  padding-left: 0;
}

.china-section .article-card:last-child {
  padding-right: 10px;
}

.china-section .article-card:not(:last-child) {
  padding-right: 10px;
  border-right: 1px dashed #d1d5db;
}

.china-section .article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.china-section .article-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* *** ASIDE */
aside.page__sidebar {
  width: 27.25%;
}

/* --- Bố cục chính của Carousel --- */
.carousel {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  /* Quan trọng: Ẩn các slide nằm ngoài khung nhìn */
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel__slide {
  flex: 0 0 100%;
}

/* --- Nội dung bên trong slide --- */
.slide-content__media {
  margin-bottom: 12px;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 4px;
}

.slide-content__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Số dòng tối đa */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide-content__description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* --- Các nút điều khiển --- */
.carousel__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.carousel .carousel__navigation .carousel__button {
  border: none;
  background-color: transparent;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #555;
}

.carousel .carousel__navigation .carousel__button i {
  font-size: 12px;
}

.carousel__button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel__nav {
  display: flex;
  gap: 13px;
  margin: 0 16px;
  padding-top: 5px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Modifier cho dấu chấm đang hoạt động */
.carousel__dot--active {
  background-color: #333;
}

/* -- LATEST NEWS -- */
.latest-news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.latest-news__header {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.latest-news__divider {
  border: 0;
  height: 1px;
  width: 100%;
  background-color: #000000;
  margin-bottom: 0.5rem;
}

.latest-news__title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
}

.latest-news__read-more-link-desktop {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.latest-news__read-more-link-desktop svg {
  width: 1rem;
  height: 1rem;
}

.latest-news__read-more-link-mobile {
  display: none;
}

.latest-news__title-link {
  font-size: 0.89rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  font-family: Helvetica, Arial, sans-serif;
}

/* -- Danh sách tin tức -- */
.latest-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-news__item {
  padding: 1rem 0;
  border-top: 1px dashed #d1d5db;
}

.latest-news__item:first-child {
  padding-top: 0;
  border-top: none;
}

.latest-news__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.latest-news__timestamp {
  font-size: 0.85rem;
  color: #d7360e !important;
  white-space: nowrap;
}

.latest-news__icon {
  width: 18px;
  height: 18px;
}

.latest-news__link {
  text-decoration: none;
}

.latest-news__headline {
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 550;
  color: #111;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* --- WELLNESS --- */

.wellness-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page__sidebar .wellness-section__header {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding-top: 10px;
}

.wellness-section__title-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: #111;
}

.wellness-section__list {
  display: flex;
  flex-direction: column;
}

/* -- Thẻ bài viết nổi bật -- */
.featured-card {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db;
}

.featured-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.featured-card__image-link {
  display: block;
  margin-bottom: 1rem;
}

.featured-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.featured-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured-card__link {
  text-decoration: none;
}

.featured-card__title {
  font-size: 1.2rem;
  font-weight: 300 !important;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.featured-card__excerpt {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

.featured-card .article-meta {
  display: flex;
}

.featured-card .article-meta a {
  font-size: 0.7rem;
  color: #595959;
  padding-right: 1rem;
  display: flex;
  text-align: center;
}

.featured-card .article-meta a svg {
  width: 14px;
  margin-right: 0.25rem;
  padding-bottom: 0.3rem;
}

.featured-card .article-meta i {
  padding-right: 1.25rem;
}

/* ---  FEATURED PODCAST --- */
.featured-podcast {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-podcast__header {
  width: 100%;
  margin-top: 3.5rem;
}

.featured-podcast__divider {
  border: 0;
  height: 1px;
  width: 100%;
  background-color: #000;
  margin-bottom: 0.5rem;
}

.featured-podcast__header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-podcast__title-link {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
}

.featured-podcast__more-link-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 0.875rem;
  color: #333;
}

.featured-podcast__more-link-desktop svg {
  width: 1rem;
  height: 1rem;
}

.featured-podcast__more-link-mobile {
  display: none;
}

/* -- Thẻ Podcast -- */
.featured-podcast__card {
  display: grid;
  gap: 0.75rem;
}

.featured-podcast__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* aspect-square */
  object-fit: cover;
  display: block;
}

.featured-podcast__label,
.featured-podcast__label a {
  font-size: 0.75rem;
  color: #4b5563;
  text-decoration: none;
}

.featured-podcast__link {
  text-decoration: none;
}

.featured-podcast__title {
  font-size: 1.125rem;
  font-weight: 300;
  color: #1f2937;
  line-height: 1.4;
  margin: 0;
}

.featured-podcast__audio-info {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #4b5563;
}

.featured-podcast__audio-button {
  display: flex;
}

.featured-podcast__audio-button svg {
  stroke: #4b5563;
}

/* --- AUTHOR ARTICLES --- */

.author-articles {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.author-articles__top-divider {
  height: 1px;
  width: 100%;
  background-color: rgb(85 85 85 / var(--tw-bg-opacity, 1));
  border: none;
  margin-bottom: 1.5rem;
}

.author-articles__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px dashed #d1d5db;
  padding: 1rem;
}

.author-articles__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  color: #1f2937;
}

.author-articles__title,
.author-articles__author-name {
  font-size: 1.125rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  margin: 0;
}

.author-articles__divider {
  height: 1px;
  background-color: #666666;
  width: 100%;
}

.author-articles__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-articles__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #eeebff;
  padding: 0.75rem;
}

.author-articles__link {
  text-decoration: none;
}

.author-articles__headline {
  font-size: 1.125rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.author-articles__headline--light {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 300;
}

.author-articles__date {
  font-size: 0.75rem;
  color: #4b5563;
  white-space: nowrap;
}

.author-articles__footer {
  display: flex;
  justify-content: center;
}

.author-articles__more-link {
  padding: 0.25rem 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
}

/* --- OPINION --- */

.opinion-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.opinion-section__header {
  width: 100%;
  margin-top: 1rem;
}

.opinion-section__divider {
  border: 0;
  height: 1px;
  width: 100%;
  background-color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.opinion-section__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.opinion-section__title-link {
  font-size: 1rem;
  font-weight: 600;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #111;
}

/* -- Danh sách bài viết -- */
.opinion-section__list {
  display: flex;
  flex-direction: column;
}

.author-post + .author-post {
  border-top: 1px dashed #d1d5db;
}

.author-post {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
}

.author-post__avatar-link {
  width: 60px;
  flex-shrink: 0;
  align-self: flex-start;
}

.author-post__avatar-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-post__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.author-post__author {
  font-size: 0.8rem;
  color: #707070;
}
.author-post__date {
  font-size: 0.7rem;
  color: #707070;
  margin: 0;
}

.author-post__author-link {
  color: inherit;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
}

.author-post__author-link:hover {
  text-decoration: underline;
}

.author-post__link {
  text-decoration: none;
}

.author-post__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* --- LIFESTYLE --- */

.lifestyle-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lifestyle-section__header {
  width: 100%;
  margin-top: 1rem;
}

.lifestyle-section__divider {
  border-top: 1px solid rgb(47, 47, 47);
  margin-bottom: 0.5rem;
}

.lifestyle-section__header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lifestyle-section__title-link {
  font-size: 1rem;
  font-weight: 600;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #111;
}

.lifestyle-section__more-link {
  display: none;
  /* Mặc định ẩn */
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 0.875rem;
  color: #333;
}

.lifestyle-section__more-link svg {
  width: 1rem;
  height: 1rem;
}

/* -- Lưới bài viết -- */
.lifestyle-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* -- Thẻ bài viết -- */
.lifestyle-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lifestyle-card__image {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}

.lifestyle-card__author,
.lifestyle-card__author a {
  font-size: 0.75rem;
  color: #374151;
  text-decoration: none;
  margin: 0;
}

.lifestyle-card__link {
  font-family: Helvetica, Arial, sans-serif;
}

.lifestyle-card__title {
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--font-et-headline), Georgia, Times New Roman, Times, serif;
  line-height: 1.2;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lifestyle-section__footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.375rem 1.5rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.lifestyle-section__footer-link svg {
  width: 1rem;
  height: 1rem;
}

/* --- MOST READ SECTION --- */
.most-read {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.most-read__header {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.most-read__divider {
  border: none;
  height: 1px;
  background-color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.most-read__item-divider {
  border: none;
  border-top: 1px dashed #d1d5db;
  margin: 0;
}

.most-read__title {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.post-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-item__author {
  font-size: 0.75rem;
  color: #374151;
  margin: 0;
}

.post-item__link {
  text-decoration: none;
}

.post-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin: 0;
}

/* --- Carousel con bên trong MOST READ --- */
.most-read__item-divider_carousel {
  border: none;
  border-top: 1px solid #797c7f;
  margin-bottom: 10px;
}

.most-read .article-carousel {
  position: relative;
  padding-top: 1rem;
}

.most-read .article-carousel__track {
  display: flex;
  overflow: hidden;
  gap: 1rem;
}

.most-read .article-carousel .article-card {
  flex: 0 0 calc(50% - 0.5rem);
  min-width: 0;
  padding-right: 0.75rem;
  border-right: 1px dashed #d1d5db;
}

.most-read .article-carousel .article-card:last-child {
  border-right: none;
}

.most-read .article-carousel .article-card__title {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}

.most-read .article-carousel__navigation {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 1rem;
}

/* *** BLOCK GROUP */
.block-group {
  width: 1200px;
  margin: 0 auto;
}

/* *** FOOD */
.food-section,
.wellness-section,
.games-section {
  margin-top: 1.5rem;
}

.food-section__header {
  margin-bottom: 1rem;
  border-top: 2px solid #2f2f2f;
}

.wellness-section__header,
.games-section__header {
  width: 100%;
  margin-bottom: 1rem;
  /* padding-top: 0.75rem; */
  border-top: 1px solid #565656;
}

.food-section__header,
.wellness-section__header,
.games-section__header {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
}

.food-section__title-link,
.wellness-section__title-link,
.games-section__title-link {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
}

/* -- Khối Băng chuyền (Carousel) -- */
.article-carousel {
  position: relative;
}

.article-carousel__track {
  display: flex;
  overflow: hidden;
}

/* --  Article Card -- */
.article-card {
  flex-shrink: 0;
  width: calc((100% - 3 * 1.25rem) / 4);
  display: flex;
  flex-direction: column;
  border-right: 1px dashed #d1d5db;
  padding-right: 1.25rem;
  margin-right: 1.25rem;
}

.article-card img {
  height: 190px;
  width: 100%;
}

.article-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 12px;
}

.article-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin: 0;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #555;
}

.featured-story__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  font-size: 0.75rem;
}

.featured-story__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #757575;
}

/* -- Nút điều hướng  -- */
.article-carousel__navigation {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-button {
  background-color: transparent;
  border: 1px solid #565656;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}

.carousel-button:hover {
  background-color: #f0f0f0;
  border-color: #aaa;
}

.carousel-button:disabled {
  background-color: transparent;
}

/* --- PODCASTS --- */

.podcasts-section {
  margin-top: 1.5rem;
}

.podcast-border-dashed {
  padding-right: 1rem;
}

.podcasts-section__header {
  width: 100%;
  margin-bottom: 1rem;
  border-top: 1px solid #565656;
}

.podcasts-section__title-link {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
}

.podcast-carousel__track {
  display: flex;
  overflow: hidden;
}

.podcast-card {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  width: calc(28%);
  min-width: 300px;
  padding: 0.5rem 1rem;
  border-right: 1px dashed #d1d5db;
}

.podcast-card:first-child {
  padding-left: 0;
}

.podcast-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.6rem;
}

.podcast-card__author,
.podcast-card__date {
  font-size: 0.875rem;
  color: #6b7280;
  white-space: nowrap;
  margin: 0;
}

.podcast-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
  height: 54px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.podcast-card__artwork-link {
  flex-shrink: 0;
}

.podcast-card__artwork {
  width: 90px;
  height: 90px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.podcast-carousel__navigation {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* --- CATEGORY cuối trang --- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #333;
  margin-bottom: 4rem;
}

.category-first {
  margin-top: 140px;
}

.category-column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.category-column:first-child {
  padding-left: 0;
}

.category-column:last-child {
  padding-right: 0;
}

.category-column:not(:last-child) {
  border-right: 1px dashed #d1d5db;
}

.category-column__header {
  margin-bottom: 1.5rem;
}

.category-column__title {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  text-transform: uppercase;
  padding-bottom: 4px;
  font-family: sans-serif;
}

.category-column__title-accent {
  width: 55px;
  height: 4px;
  background-color: black;
  margin-top: 0.5rem;
}

.category-column__body {
  flex-grow: 1;
}

/* -- Bài Viết Nổi Bật -- */
.category-grid .featured-post {
  margin-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db;
  height: 22rem;
}

.category-grid-4 .featured-post {
  margin-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db;
  height: 18rem;
}

.category-grid .featured-post__image {
  /* width: 100%; */
  max-width: 377px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.category-grid-4 .featured-post__image {
  max-width: 275px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.featured-post__title {
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0;
}

.featured-post__content--mobile {
  display: none;
}

/* -- Danh sách bài viết phụ -- */
.category-column__body .post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.category-grid .post-list__item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db;
  height: 5rem;
}

.category-grid-4 .post-list__item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db;
  height: 5rem;
}

.post-list__link {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

/* -- Link xem thêm -- */
.category-column__footer {
  align-self: start;
}

.read-more-link {
  display: flex;
  gap: 0.25rem;
  font-weight: 550;
  margin-top: 1rem;
  text-decoration: none;
}

.read-more-link svg {
  width: 1rem;
  height: 1rem;
}

/* CSS CHO LƯỚI 4 CỘT */
.category-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #333;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.category-grid-4 .category-column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.category-grid-4 .category-column:first-child {
  padding-left: 0;
}

.category-grid-4 .category-column:last-child {
  padding-right: 0;
}

.category-grid-4 .category-column:not(:last-child) {
  border-right: 1px dashed #d1d5db;
}

.font-light {
  font-weight: 300 !important;
  font-family: EB Garamond, Times, serif;
}

.category-grid-4 .featured-post__link,
.category-grid-4 .post-list__link {
  min-height: 5rem;
}

/* --- SITE FOOTER --- */
.site-footer {
  padding-top: 5rem;
  color: #333;
  background-color: #f5f5f5;
}

.site-footer a {
  color: inherit;
  font-size: 1rem;
}

.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
}

/* -- Header -- */
.site-footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.site-footer .site-footer__action-button {
  font-size: 1rem;
  background-color: white;
}

.site-footer .site-footer__action-button svg {
  margin-right: 3px;
}

.site-footer__logo img {
  height: 25px;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.site-footer__action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 1rem;
  border: 1px solid black;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

/* -- Main Navigation -- */
.site-footer__main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 12px 0;
  border-top: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
}

.site-footer__main-nav-item {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

/* -- Main Content -- */
.site-footer__main-content {
  display: grid;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e5e5;
  /* Mặc định 1 cột trên mobile */
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

/* -- Các cột chính -- */
.site-footer__left-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__right-panel {
  display: grid;
  /* Mặc định 2 cột trên mobile/tablet */
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* -- Nội dung cột Trái -- */
.subscribe-box {
  padding: 1rem 0;
}

.subscribe-box img {
  width: 360px;
}

.site-footer__info-links {
  display: flex;
  gap: 1.5rem;
  font-size: 14px;
}

.site-footer__info-links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 50%;
}

.site-footer__donation-button {
  display: inline-block;
  border: 2px solid black;
  border-radius: 4px;
  padding: 6px 24px;
  margin: 2rem 0 3rem 0;
  width: 171px;
  height: 36px;
  font-size: 12px !important;
  font-weight: 600 !important;
  align-self: flex-start;
  background-color: white;
}

.site-footer__app-download {
  margin: 3rem 0;
}

.site-footer__heading {
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.site-footer__language-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  font-size: 14px;
}

.site-footer__language-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__app-buttons {
  display: flex;
  gap: 0.75rem;
}

.site-footer__app-buttons img {
  height: 52px;
  width: auto;
}

/* -- Nội dung cột Giữa & Phải -- */
.site-footer__category-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-group__title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.category-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-group__link {
  font-size: 14px;
}

.simple-footer {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  text-align: center;
}

.simple-footer__copyright {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
}

.simple-footer__cookie-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  text-decoration: underline;
  color: #333;
  padding: 0;
}

/* Lưới 4 cột cho các chuyên mục bên trong cột phải */
.site-footer__right-panel {
  grid-template-columns: repeat(4, 1fr);
  padding-left: 1rem;
}

.mobile-nav {
  display: none;
}

.hide-in-desktop {
  display: none;
}

@media (min-width: 1020px) and (max-width: 1024px) {
  [class*='title'] {
    font-family: serif;
    font-size: 1.2rem;
  }

  .font-light {
    font-weight: 300 !important;
    font-family: Cormorant Garamond;
  }

  .nav-bar {
    /* font-size: 15px; */
    padding: 0;
  }

  .nav-bar #open-search-btn {
    display: none;
  }

  .nav-bar__left .nav-bar__item {
    display: none;
  }

  .nav-bar .fa-solid.fa-angle-down {
    display: none;
  }

  .nav-bar__item--full-width {
    padding: 12px 14px 12px 0;
  }

  .nav-bar__item--full-width .nav-bar__dropdown {
    display: none;
  }

  #signup-btn {
    display: none;
  }

  .home-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Aside */
  .slide-content {
    min-height: 280px;
  }

  .slide-content__title {
    line-height: 1.3;
  }

  .slide-content__description {
    font-size: 0.8rem;
  }

  .most-read__title,
  .lifestyle-section__title-link,
  .opinion-section__title-link,
  .featured-podcast__title-link,
  .wellness-section__title-link,
  .latest-news__title-link {
    font-family: sans-serif;
    font-size: 0.975rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .post-item__title {
    font-size: 1.125rem;
  }

  /* Block group */
  .block-group {
    width: 984px;
    margin: 3rem auto 0 auto;
  }

  .podcasts-section {
    margin-top: 1.5rem;
  }

  .food-section__title-link,
  .podcasts-section__title-link,
  .wellness-section__title-link,
  .games-section__title-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: sans-serif;
  }

  .podcasts-section__header {
    width: 100%;
    margin-bottom: 1rem;
    padding: 5px 0;
    border-top: 2px solid #555555;
  }

  .podcast-card__title {
    font-size: 1rem;
  }

  .podcast-card {
    min-width: 328px;
  }

  .wellness-section__title-wrapper {
    margin-top: 5px;
  }

  .wellness-section__header {
    margin-bottom: 0;
  }

  .wellness-section .article-carousel {
    margin-top: 8px;
  }

  .article-carousel {
    margin-top: 33px;
    position: relative;
  }

  .article-card img {
    height: 145px;
  }

  .article-card__content {
    margin-top: 5px;
  }

  .article-card__title {
    font-size: 1.1rem;
  }

  .article-carousel__navigation {
    margin-top: 0.5rem;
  }

  /* Category cuoi trang */
  .category-grid .featured-post {
    height: 18.8rem;
  }

  .category-grid .category-column__title,
  .category-grid-4 .category-column__title {
    font-size: 1rem;
    font-family: sans-serif;
  }

  .category-grid img.featured-post__image {
    width: 312px;
  }

  .category-grid .featured-post__title,
  .category-grid .post-list__link {
    font-size: 1.1rem;
  }

  .category-grid .post-list__item {
    height: 5.5rem;
  }

  .category-grid .read-more-link {
    margin-top: 0.7rem;
  }

  .category-grid-4 .category-column {
    padding: 0 0.7rem;
  }

  .category-grid-4 .featured-post {
    height: 15.2rem;
  }

  .category-grid-4 img.featured-post__image {
    width: auto;
    height: 152px;
  }

  .category-grid-4 .post-list__item {
    height: 5.6rem;
  }

  .category-grid-4 .featured-post__title,
  .category-grid-4 .post-list__link {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 400 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Footer */
  .site-footer {
    margin-top: 5rem;
  }

  .site-footer__container {
    padding: 0 32px;
  }

  .site-footer__header {
    width: 980px;
    justify-content: flex-start;
    display: flex;
    align-items: stretch;
  }

  .site-footer__actions {
    max-width: 680px;
    justify-content: center;
  }

  .site-footer .site-footer__action-button {
    font-size: 0.875rem;
    padding: 0 1.2rem;
  }

  .site-footer__main-content {
    padding: 2rem 0;
  }

  .subscribe-box img {
    width: 320px;
  }

  .site-footer__right-panel {
    padding: 20px 0;
  }

  .site-footer__logo img {
    width: 228px;
    height: 32px;
  }

  .site-footer__main-content li {
    line-height: 1.3;
  }

  .site-footer__donation-button {
    font-size: 14px !important;
    padding: 8px 18px;
    margin-bottom: 11rem;
  }

  .simple-footer {
    display: flex;
    align-items: center;
    padding-bottom: 10rem;
  }
}

@media (max-width: 391px) {
  .hide-in-mobile {
    display: none;
  }

  .hide-in-desktop {
    display: block;
  }

  .nav-bar {
    flex-wrap: wrap;
    padding: 0 0 0 23px;
  }

  .nav-bar .nav-bar__left {
    padding-top: 10px;
    padding-left: 0;
  }

  .nav-bar .nav-bar__right {
    padding-right: 20px;
    padding-top: 15px;
  }

  .nav-bar .nav-bar__icon-btn {
    padding-right: 10px;
  }

  .nav-bar #open-search-btn {
    display: none;
  }

  /* Sidebar */
  .sidebar-nav__submenu {
    position: static;
    width: 100%;
    opacity: 1;
    border: none;
    box-shadow: none;
    background-color: #fff;
    padding-left: 1.5rem;
    max-height: 0;
    overflow: hidden;
  }

  /* Trạng thái KHI MỞ trên mobile */
  .sidebar-nav__item--has-submenu.submenu-open > .sidebar-nav__submenu {
    max-height: max-content; 
  }

  .sidebar-nav__submenu-link {
    padding: 0.7rem 1rem;
    font-weight: 500;
  }

  /* Xoay icon chevron khi menu mở */
  .sidebar-nav__item--has-submenu.submenu-open .sidebar-nav__toggle i {
    transform: rotate(180deg);
  }

  .sidebar-nav__panel {
    width: -webkit-fill-available;
    max-width: none;
  }

  .sidebar-nav__list {
    overscroll-behavior: contain;
    padding-bottom: 150px;
  }

  .sidebar-nav__footer-item .sidebar-nav__footer-link {
    font-weight: 600;
  }

  .nav-bar .overflow-hidden {
    display: block;
  }

  .nav-bar__left .nav-bar__item {
    display: none;
  }

  .nav-bar.nav-bar--scrolled {
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0 0 0 23px;
  }

  /* Ẩn phần bên trái và bên phải đi */
  .nav-bar.nav-bar--scrolled .nav-bar__left,
  .nav-bar.nav-bar--scrolled .nav-bar__right {
    visibility: hidden;
    opacity: 0;
    width: 0;
    padding: 0;
    overflow: hidden;
  }

  .nav-bar__center {
    order: 99;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .nav-bar .fa-solid.fa-angle-down {
    display: none;
  }

  .nav-bar__item--full-width {
    padding: 12px 12px 15px 0;
  }

  .nav-bar__item--full-width .nav-bar__dropdown {
    display: none;
  }

  .nav-bar .login-template-btn {
    width: max-content;
    padding: 0 2px;
  }

  #signup-btn {
    display: none;
  }

  header.header {
    display: none;
  }

  /* Main content */
  .content {
    width: 100%;
    padding: 0 1.25rem;
  }

  .page__divider {
    display: none;
  }

  .page {
    display: block;
  }

  .story-card {
    display: block;
  }

  .story-card .story-card__content {
    margin-bottom: 1rem;
  }

  .secondary-story-card__content {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .secondary-story-card__content .story-card__title {
    font-size: 1.125rem;
  }

  .content__divider_bold {
    margin-bottom: 1.2rem;
  }

  .stories-section .story-grid {
    display: none;
  }

  .stories-section .featured-story {
    display: block;
  }

  .stories-section .featured-story__content {
    margin-bottom: 1rem;
  }

  .stories-section .stories-section__divider {
    border: none;
  }

  .premium-section {
    gap: 0.5rem;
  }

  .premium-section .content__divider {
    margin: 0;
    margin-bottom: 5px;
    border-top: 1px solid #9f9f9f;
  }

  .premium-section .featured-article {
    gap: 1rem;
  }

  .premium-section .featured-article__title {
    font-size: 1.3rem;
  }

  .premium-section .in-depth-carousel__track {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .premium-section .in-depth-carousel {
    padding-bottom: 1rem;
  }

  .premium-section .article-card__content {
    margin-top: 0;
  }

  .premium-section .article-card--horizontal {
    flex-basis: 100%;
    scroll-snap-align: start;
  }

  .premium-section .article-card__meta {
    margin-top: 1rem;
    gap: 0.8rem;
  }

  .tip-banner {
    padding: 1.75rem 1.5rem;
  }

  .china-section .featured-story {
    display: block;
  }

  .china-section .featured-story__content {
    margin-bottom: 1rem;
  }

  .china-section .article-carousel .article-card {
    flex-basis: auto;
  }

  .china-section .article-carousel__track {
    gap: 0;
    margin-top: 15px;
  }

  .epoch-tv-section__header {
    margin-bottom: 1rem;
  }

  .epoch-tv-section .media-block {
    gap: 1rem;
  }

  .epoch-tv-section .media-block__title {
    font-size: 1.4rem;
  }

  .epoch-tv-section__divider {
    border: 1px solid;
    background-color: #888888;
  }

  .epoch-tv-section .content__divider {
    margin: 0.75rem 0;
  }

  /* Aside */
  aside.page__sidebar {
    width: 100%;
    padding: 0 1.25rem;
  }

  .carousel {
    margin-top: 65px;
    margin-bottom: 3.25rem;
    padding-top: 15px;
    border-top: 2px solid rgb(85 85 85 / 50%);
  }

  .latest-news__divider {
    background-color: #5f5f5f;
  }

  .latest-news__timestamp {
    font-size: 0.95rem;
  }

  .latest-news__read-more-link-desktop {
    display: none;
  }

  .latest-news__read-more-link-mobile {
    padding-top: 1rem;
    display: block;
    font-weight: 600;
    text-align: center;
  }

  .featured-podcast__more-link-desktop {
    display: none;
  }

  .featured-podcast__more-link-mobile {
    display: block;
    font-weight: 600;
    text-align: center;
    padding-bottom: 4rem;
  }

  .author-articles__title,
  .author-articles__author-name {
    font-size: 1.05rem;
  }

  .author-articles__divider {
    height: 0;
    background-color: transparent;
  }

  .author-post__date {
    font-size: 0.8rem;
  }

  .author-post__author {
    font-size: 0.9rem;
  }

  .author-articles__top-divider {
    background-color: rgb(199 199 199);
    border: 1px solid;
  }

  .featured-podcast__divider {
    background-color: #989898;
  }

  .lifestyle-section__header {
    margin-top: 2rem;
  }

  .lifestyle-section__title-link,
  .most-read__title,
  .opinion-section__title-link {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .most-read {
    margin-top: 3rem;
  }

  .most-read__divider {
    background-color: transparent;
    border-top: 1px solid;
  }

  .post-item__content {
    display: grid;
    gap: 0.75rem;
  }

  .post-item__excerpt {
    font-size: 1rem;
  }

  .post-item__meta {
    display: flex;
  }

  .most-read__meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-right: 1rem;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    text-align: center;
  }

  .post-item__thumbnail-link {
    display: block;
    width: 350px;
    flex-shrink: 0;
  }

  .post-item__thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  /* Block group */
  .block-group {
    width: 100%;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }

  .article-carousel .article-carousel__track {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .article-carousel .article-carousel__track::-webkit-scrollbar {
    display: none;
  }

  .article-carousel .article-carousel__track .article-card {
    width: 70%;
    flex-shrink: 0;
    padding-right: 1rem;
    margin-right: 1rem;
    border-right: 1px dotted #ccc;
  }

  .article-carousel .article-carousel__track .article-card:last-child {
    border-right: none;
    margin-right: 0;
  }

  .article-card img {
    height: 100%;
    width: 100%;
  }

  /* Ẩn các nút điều hướng trên mobile */
  .article-carousel .article-carousel__navigation {
    display: none;
  }

  /* Podcast */
  .podcasts-section__title-link {
    font-size: 0.9rem;
  }
  .podcast-card__author {
    display: none;
  }

  .podcast-carousel__navigation {
    display: none;
  }

  .podcast-carousel__track {
    display: block;
  }

  .podcast-card {
    width: 100%;
    min-width: unset;
    border-right: none;

    border: 1px solid #e5e7eb;
    background-color: #fafafa;

    margin-bottom: 1rem;
    border-bottom: 1px dashed #d1d5db;
  }

  .podcast-border-dashed {
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed #b6babf;
  }

  .podcast-border-dashed:last-child {
    border-bottom: none;
  }

  .podcast-card:first-child {
    padding-left: 0.75rem;
  }

  .podcast-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .games-section__header {
    border-top: 2px solid #565656;
  }

  .category-first {
    margin-top: 0;
  }

  /* Category */
  .category-grid,
  .category-grid-4 {
    grid-template-columns: 1fr; /* Buộc tất cả về 1 cột */
    gap: 0;
  }

  /* Xóa các đường kẻ dọc và padding của cột */
  .category-grid .category-column,
  .category-grid-4 .category-column {
    padding: 0 !important;
    border-right: none !important;
    border-left: none !important;
  }

  /* Thêm đường kẻ ngang để phân tách các danh mục khi xếp chồng */
  .category-grid .category-column:not(:first-child),
  .category-grid-4 .category-column:not(:first-child) {
    margin-top: 2.5rem;
  }

  .category-grid-4 .post-list__item {
    height: auto;
  }

  /* Tạo kiểu cho header trên mobile */
  .category-column__header {
    border-top: 2px solid black;
    padding-top: 0.5rem;
    margin-bottom: 1rem;
  }

  /* Ẩn thanh accent trang trí */
  .category-column__title-accent {
    display: none;
  }

  .featured-post__content--desktop {
    display: none; /* Ẩn khối desktop đi */
  }

  .featured-post__content--mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }

  /* Cho phép tiêu đề hiển thị đầy đủ, không giới hạn chiều cao */
  .featured-post__title,
  .post-list__link {
    min-height: unset;
    height: auto;
    -webkit-line-clamp: unset; /* Bỏ giới hạn số dòng */
    font-size: 1.1rem;
  }

  .category-grid .featured-post__excerpt {
    font-weight: 300 !important;
    font-family: EB Garamond, Times, serif;
  }

  .category-grid .featured-post {
    display: flex;
    flex-direction: column;
    height: max-content;
  }

  .category-grid-4 .featured-post {
    display: flex;
    flex-direction: column;
    height: max-content;
  }

  .featured-post__content {
    order: -1;
  }

  .category-grid .featured-post__image {
    max-width: 100%;
  }

  .category-grid-4 .featured-post__image {
    max-width: 100%;
  }

  .category-grid .post-list__item {
    height: auto;
  }

  .category-grid-4 .featured-post__link,
  .category-grid-4 .post-list__link {
    min-height: max-content;
  }

  /* Căn giữa nút "READ MORE" */
  .category-column__footer {
    align-self: center;
  }
  .read-more-link {
    justify-content: center;
    display: inline-flex;
  }

  /* Footer */
  .site-footer {
    padding-top: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-footer__actions {
    gap: 1rem;
  }

  .site-footer .site-footer__action-button {
    font-size: 0.9rem;
    height: 28px;
  }

  .site-footer__header {
    justify-content: center;
  }
  .site-footer__main-nav {
    margin-top: 0.5rem;
  }

  .site-footer__main-nav .site-footer__main-nav-item {
    font-size: 1.05rem;
  }

  .site-footer__info-links-group {
    gap: 10px;
  }

  .site-footer__main-content {
    padding-top: 1.7rem;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__language-list ul {
    gap: 10px;
  }

  .site-footer__app-download {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .site-footer__right-panel {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
  }

  .category-group__list {
    gap: 10px;
  }

  .simple-footer {
    padding-bottom: 5rem;
  }

  .category-group__title a {
    font-size: 1.15rem;
  }

  /* Mobile nav */
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    align-items: center;

    background-color: white;
    padding-top: 3px;
    z-index: 99;
  }
}
