:root {
  --paper: #ffffff;
  --surface: #fafaf9;
  --surface-line: rgba(21, 21, 21, 0.1);
  --ink: #151515;
  --muted: #5a5a5a;
  --red: #e30613;
  --red-soft: #f24d57;
  --red-light: #fde8ea;
  --gold: var(--red);
  --gold-soft: var(--red-soft);
  --line: #1b1b1b;
  --charcoal: #111111;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  text-rendering: optimizeLegibility;
}
a {
  text-decoration: none;
  color: inherit;
}
.owl-theme .owl-nav {
  display: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.font-display {
  font-family: "Playfair Display", Georgia, serif;
}
.container-mag {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  background: var(--paper);
  position: relative;
}
.site-header::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('/hhtgo-media/style/bg-4.webp') repeat center center;
  background-size: contain; */
  background: url('/hhtgo-media/style/background.webp') repeat center center;
  background-size: cover;
  z-index: 1;
  opacity: 0.55; /* 0.35; */
}
.site-header__utility {
  border-bottom: 1px solid var(--surface-line);
  position: relative;
  z-index: 2;
  padding: 5px 0;
}
.site-header__utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.site-header__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__social-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.site-header__social-link:hover {
  color: #fff;
  background: var(--red);
}
.site-header__icon {
  width: 16px;
  height: 16px;
  display: block;
}
.site-header__icon--search {
  width: 18px;
  height: 18px;
}
.site-header__tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header__tool-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.site-header__tool-link:hover {
  color: var(--red);
}
.site-header__search-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--surface-line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.site-header__search-btn:hover,
.site-header__search-btn[aria-expanded="true"] {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.35);
  background: var(--red-light);
}
.site-header__menu-btn {
  display: none;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--surface-line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.site-header__menu-btn:hover,
.site-header__menu-btn[aria-expanded="true"] {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.35);
  background: var(--red-light);
}
.site-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}
.site-nav-drawer[hidden] {
  display: none;
}
.site-nav-drawer.is-open {
  pointer-events: auto;
}
.site-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(21, 21, 21, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.site-nav-drawer.is-open .site-nav-drawer__backdrop {
  opacity: 1;
}
.site-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--paper);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.site-nav-drawer.is-open .site-nav-drawer__panel {
  transform: translateX(0);
}
.site-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--surface-line);
}
.site-nav-drawer__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.site-nav-drawer__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--surface-line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.site-nav-drawer__close:hover {
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.35);
}
.site-nav-drawer__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
}
.site-nav-drawer__body .site-nav__list,
.site-nav-drawer__body .chuyende-subnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  overflow: visible;
  max-width: none;
}
.site-nav-drawer__body .site-nav__list > .nav-item.menu-home,
.site-nav-drawer__body .site-nav__list > .nav-item.navigationHiddenTabs {
  display: none !important;
}
.site-nav-drawer__body .site-nav__list .nav-link.navLink,
.site-nav-drawer__body .site-nav__list .nav-link.has-children {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: normal;
  text-align: left;
}
.site-nav-drawer__body .site-nav__list .nav-item {
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}
.site-nav-drawer__body .site-nav__list .nav-item.has-children > .dropdown-menu {
  position: static;
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0 0 8px;
  border: 0;
  box-shadow: none;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.site-nav-drawer__body .site-nav__list .nav-item.has-children.is-open > .dropdown-menu {
  display: block;
}
.site-nav-drawer__body .site-nav__list .dropdown-menu .dropdown-item {
  padding: 10px 18px 10px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}
.site-nav-drawer__body .chuyende-subnav__link {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  white-space: normal;
}
.site-nav-drawer__body .chuyende-subnav__link--active {
  color: var(--red);
  border-bottom-color: rgba(21, 21, 21, 0.08);
  background: var(--red-light);
}
body.is-nav-drawer-open {
  overflow: hidden;
}
.site-header__search-panel {
  border-bottom: 1px solid var(--surface-line);
  background: var(--surface);
}
.site-header__search-panel[hidden] {
  display: none;
}
.site-header__search-form {
  display: flex;
  gap: 0;
  padding: 14px 0 16px;
}
.site-header__search-form input {
  flex: 1;
  border: 1px solid var(--surface-line);
  border-right: 0;
  padding: 12px 14px;
  font-size: 14px;
  background: var(--paper);
}
.site-header__search-form input:focus {
  outline: 2px solid rgba(227, 6, 19, 0.25);
  outline-offset: 0;
}
.site-header__search-form .view-all {
  flex-shrink: 0;
  padding-inline: 22px;
}
.site-header__brand {
  padding: 24px 0 10px;
  text-align: center;
}
.site-header__logo-hit {
  display: inline-block;
  line-height: 0;
}
.logo-img {
  width: min(380px, 78vw);
  margin: 0 auto;
}
.tagline {
  margin: 14px 0 0;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #d1242a;
  text-transform: uppercase;
  font-weight: 600;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--paper);
}
.site-nav__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
}
.site-nav__list > li {
  margin: 0;
}
.site-nav__inner .site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__inner .site-nav__list > .nav-item {
  margin: 0;
  list-style: none;
}
.site-nav__inner .site-nav__list > .nav-item.menu-home,
.site-nav__inner .site-nav__list > .nav-item.navigationHiddenTabs {
  display: none !important;
}
.site-nav__inner .site-nav__list .nav-link.navLink,
.site-nav__inner .site-nav__list .nav-link.has-children {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav__inner .site-nav__list .nav-link.navLink:hover,
.site-nav__inner .site-nav__list .nav-link.has-children:hover,
.site-nav__inner .site-nav__list .nav-item.active > .nav-link {
  color: var(--red);
}
.site-nav__inner .site-nav__list .nav-item.has-children > .nav-link.has-children,
.site-nav__inner .site-nav__list > .nav-item.navTab:nth-last-child(2) > .nav-link {
  color: var(--red);
}
.site-nav__inner .site-nav__list .nav-item.has-children > .nav-link.has-children:hover, .site-nav__inner .site-nav__list > .nav-item.navTab:nth-last-child(2) > .nav-link:hover {
  color: #1f1f1f;
}
.site-nav__inner .site-nav__list .nav-item.has-children {
  position: relative;
}
.site-nav__inner .site-nav__list .nav-item.has-children > .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  min-width: min(320px, 88vw);
  background: var(--paper);
  border: 1px solid var(--surface-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  z-index: 400;
  display: none;
  float: none;
}
.site-nav__inner .site-nav__list .nav-item.has-children.is-open > .dropdown-menu,
.site-nav__inner .site-nav__list .nav-item.has-children:hover > .dropdown-menu {
  display: block;
}
.site-nav__inner .site-nav__list .dropdown-menu .dropdown-item {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}
.site-nav__inner .site-nav__list .dropdown-menu .dropdown-item:hover {
  background: var(--surface);
  color: var(--red);
}
.site-nav__rule {
  height: 3px;
  background: var(--red);
}
.nav-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
a.nav-link:hover,
button.nav-link:hover,
.nav-link--topics[aria-expanded="true"] {
  color: var(--red);
}
.nav-link--topics {
  color: var(--red);
}
.nav-link--awards {
  color: var(--red);
}
.site-header__manchette {
  display: grid;
  gap: 16px 20px;
  align-items: center;
  padding: 10px 0 6px;
  max-width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.manchette-ad {
  display: flex;
  align-items: center;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.manchette-ad--left {
  justify-content: flex-end;
}
.manchette-ad--right {
  justify-content: flex-start;
}
.manchette-ad__slot {
  width: 100%;
  max-width: min(320px, 28vw);
  height: 72px;
  min-height: 0;
  border: 1px dashed var(--surface-line);
  background: var(--surface);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  text-align: center;
}
.manchette-ad__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.manchette-ad__size {
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
}
.nav-link__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.nav-link--topics[aria-expanded="true"] .nav-link__caret {
  transform: rotate(180deg);
}
.site-nav__item--dropdown {
  position: relative;
}
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: min(320px, 88vw);
  background: var(--paper);
  border: 1px solid var(--surface-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0 0;
  z-index: 400;
}
.site-nav__dropdown[hidden] {
  display: none;
}
.site-nav__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(360px, 60vh);
  overflow: auto;
}
.site-nav__dropdown-link {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.site-nav__dropdown-link:hover {
  background: var(--surface);
  color: var(--red);
}
.site-nav__dropdown-all {
  display: block;
  padding: 12px 18px;
  border-top: 1px solid var(--surface-line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.site-nav__dropdown-all:hover {
  background: var(--surface);
}
.section {
  padding: 58px 0;
}
.section-tight {
  padding: 40px 0;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--red);
}
.eyebrow.gold {
  color: var(--red);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.025em;
}
.section-kicker {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #151515;
  font-weight: 900;
  margin-bottom: 8px;
}
.section-title__link {color: var(--red);}
.multimedia .section-kicker{color: #fff;}
.view-all {
  background: var(--red);
  color: #fff;
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.view-all:hover {
  background: var(--red-soft);
  color: #fff;
}
.view-all.gold {
  background: var(--red);
  color: #fff;
}
.multimedia .view-all,
.multimedia .view-all.gold,
.multimedia--v2 .view-all,
.multimedia--v2 .view-all.gold {
  background: #fff;
  color: #111;
}
.multimedia .view-all:hover,
.multimedia--v2 .view-all:hover {
  background: #f5f5f5;
  color: #111;
}
.thin-rule {
  height: 1px;
  background: var(--red);
  margin: 0;
}
.soft-rule {
  height: 1px;
  background: rgba(21, 21, 21, 0.14);
  margin: 0;
}
.hero {
  padding: 40px 0 38px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
}
.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.hero-summary {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  margin: 0 0 24px;
}
.hero-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 850;
  color: #6b635b;
}
.hero-image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.hero-side {
  display: grid;
  gap: 18px;
}
.side-story {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 16px;
  align-items: start;
}
.side-story img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.side-story h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 10px 0 6px;
}
.side-story p,
.article-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.trend-strip {
  background: #fff;
  color: var(--ink);
  padding: 0;
  border-block: 1px solid rgba(21, 21, 21, 0.08);
}
.trend-panel {
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.trend-panel__bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px 16px;
}
.trend-panel__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fafafa;
}
.trend-panel__item {
  display: block;
  padding: clamp(18px, 3vw, 26px) clamp(16px, 2.4vw, 22px);
  text-decoration: none;
  color: inherit;
  border-left: 1px solid rgba(21, 21, 21, 0.1);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.trend-panel__item:first-child {
  border-left: 0;
}
.trend-panel__item:hover {
  background: var(--red-light);
}
.trend-panel__cat {
  display: block;
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 8px;
}
.trend-panel__title {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  font-weight: 700;
}
.feature-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.lead-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.lead-image h3 {
  font-family: "Playfair Display";
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin: 20px 0 14px;
}
.headline-list {
  display: grid;
  gap: 0;
}
.headline-row {
  padding: 0;
  margin-bottom: 10px;
}
.headline-row + .headline-row {
  border-top: 1px solid rgba(21, 21, 21, 0.2);
  padding-top: 20px;
}
.headline-row__hit {
  display: block;
}
.headline-row__hit h3 {
  font-family: "Playfair Display";
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.article-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  margin-bottom: 14px;
}
.article-card.square img {
  aspect-ratio: 4/3;
}
.article-card h3 {
  font-family: "Playfair Display";
  font-size: 26px;
  line-height: 1.22;
  margin: 10px 0 12px;
}
.article-card .meta {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 2px;
  display: block;
}
.commerce-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: start;
}
.quote-panel {
  background: #d2232a;
  padding: 34px 30px;
}
.quote-panel .section-kicker {
  color: #fff;
}
.quote-panel h2 a{
  font-family: "Playfair Display";
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 12px 0;
  color: #fff !important;
}
.quote-panel p {
  line-height: 1.72;
  color: #fff;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.luxury-band {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}
.luxury-band .section-title {
  color: var(--ink);
}
.luxury-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.luxury-layout .large {
  grid-column: span 2;
}
.luxury-layout img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.luxury-layout h3 {
  font-family: "Playfair Display";
  font-size: 30px;
  line-height: 1.04;
  margin: 14px 0 8px;
}
.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
}
.culture-list {
  columns: 2;
  column-gap: 32px;
}
.culture-item {
  break-inside: avoid;
  padding: 0 0 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.13);
}
.culture-item h3 {
  font-family: "Playfair Display";
  font-size: 23px;
  line-height: 1.2;
  margin: 8px 0;
}
.footer-legal__inner {display: grid; grid-template-columns: 1fr 1fr; gap: 24px;}
.shopping-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shopping-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.shopping-item h3 {
  font-family: "Playfair Display";
  font-size: 21px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.multimedia {
  background: #101010;
  color: #fff;
  margin: 0 0 40px 0;
}
.media-wrap {
  padding: 58px 0;
}
.media-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}
.media-feature {
  position: relative;
}
.media-feature img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.play {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #111;
}
.media-feature h3 {
  font-family: "Playfair Display";
  font-size: 38px;
  line-height: 1.4;
  margin: 18px 0 8px;
}
.media-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.media-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.media-card h3 {
  font-family: "Playfair Display";
  font-size: 24px;
  line-height: 1.2;
  margin: 14px 0 0;
}
.page-bottom {
  background: var(--paper);
  border-top: 1px solid var(--surface-line);
}
.newsletter__panel {
  border: 1px solid rgba(227, 6, 19, 0.1);
  background: linear-gradient(
    135deg,
    rgba(253, 232, 234, 0.72) 0%,
    rgba(255, 255, 255, 0.45) 55%,
    rgba(255, 255, 255, 0.2) 100%
  );
  backdrop-filter: blur(6px);
  padding: 15px;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  align-items: center;
}
.newsletter h2 {
  font-family: "Playfair Display";
  font-size: 25px;
  line-height: 1.12;
  margin: 0 0 14px;
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  background: #fff;
  border: 0;
  border-bottom: 2px solid var(--red);
  padding: 15px 16px;
  font-size: 14px;
}
.newsletter-form button {
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.newsletter-form button:hover {
  background: var(--red-soft);
}
.footer {
  background: var(--surface);
  color: var(--ink);
  padding: 40px 0 0;
  margin-top: 0;
  border-top: 1px solid var(--surface-line);
}
.footer-brand__tagline {
  margin: 12px 0 0;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}
.footer-brand {
  font-family: "Inter", Arial, sans-serif;
}
.footer-brand__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-brand__title {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.04em;
}
.footer-brand__sub {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}
.footer-brand__org {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.55;
  max-width: 38ch;
}
.footer-brand__tag {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 42ch;
}
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 0 0 12px;
}
.footer a {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.85;
  margin: 0 0 4px;
}
.footer a:hover {
  color: var(--red);
}
.footer-col p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-links a:hover {
  color: var(--red);
}
.footer-top__vacod-logo {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  margin: 0 0 10px;
}
.footer-legal {
  border-top: 1px solid rgba(227, 6, 19, 0.12);
  padding: 24px 20px 12px;
  margin-top: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.78;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(253, 232, 234, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 8px 8px 0 0;
}
.footer-legal p {
  margin: 0 0 8px;
}
.footer-legal p:last-child {
  margin-bottom: 0;
}
.footer-legal strong {
  color: var(--ink);
  font-weight: 700;
}
.footer-legal__label {
  font-weight: 500;
  color: var(--muted);
}
.footer-legal a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-title {
  font-family: "Playfair Display";
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  margin: 24px 0 18px;
  letter-spacing: -0.035em;
}
.category-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 42px;
}
.category-layout--category {
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  align-items: start;
}
.category-layout--chuyende {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 2fr);
  align-items: start;
}
.feed-list {
  display: grid;
  gap: 26px;
}
.feed-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
}
.feed-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.feed-item h2 {
  font-family: "Playfair Display";
  font-size: 28px;
  line-height: 1.16;
  margin: 8px 0 10px;
}
.sidebar-block {
  background: rgb(255 242 243 / 92%);
  padding: 26px;
}
.sidebar-block--rose {
  background: #f8e1e1;
}
.sidebar-block .ranked a {
  color: inherit;
  text-decoration: none;
}
.sidebar-block .ranked a:hover {
  color: var(--red);
}
.sidebar-block h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.ranked {
  counter-reset: item;
}
.ranked li {
  counter-increment: item;
  list-style: none;
  padding: 14px 0;
}
.ranked li:before {
  content: counter(item, decimal-leading-zero);
  font-size: 11px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-right: 10px;
}
.article-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0;
}
.article-title {
  font-family: "Playfair Display";
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 22px 0;
}
.article-shell .article-title {
  font-size: clamp(30px, 3.8vw, 48px);
}
.hero-meta__keywords {
  display: inline;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
}
.hero-meta__keyword {
  color: inherit;
  text-decoration: none;
}
.hero-meta__keyword:hover {
  color: var(--red);
}
.hero-meta__keyword-sep {
  color: #8f877f;
}
.hero-meta__read:empty::before {
  content: "…";
  opacity: 0.45;
}
.article-body .ads-zone {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.article-body .ads-title {
  display: none;
}
.article-ad-parallax {
  position: relative;
  margin: 48px calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  background: #f3efe8;
  border-block: 1px solid rgba(21, 21, 21, 0.08);
}
.article-ad-parallax__label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8f877f;
}
.article-ad-parallax__viewport {
  position: relative;
  height: clamp(280px, 42vw, 420px);
  overflow: hidden;
}
.article-ad-parallax__layer {
  position: absolute;
  inset: -12% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.article-ad-parallax__content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}
.article-ad-parallax__content img,
.article-ad-parallax__content .ads-box img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.article-share__icon--x:hover {
  background: #111;
  border-color: #111;
}
.article-dek {
  font-size: 20px;
  line-height: 1.65;
  color: #5c5750;
  margin: 0 0 22px;
}
.article-hero {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  margin: 30px 0;
}
.article-body {
  font-size: 18px;
  line-height: 1.9;
  color: #242424;
}
.article-body p {
  margin: 0 0 24px;
}
.article-body .dropcap:first-letter {
  font-family: "Playfair Display";
  float: left;
  font-size: 68px;
  line-height: 0.78;
  padding: 9px 8px 0 0;
}
.article-bottom {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(21, 21, 21, 0.14);
  font-family: "Inter", Arial, sans-serif;
}
.article-bottom__section {
  margin-bottom: 36px;
}
.article-bottom__section:last-child {
  margin-bottom: 0;
}
.article-bottom__heading {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 14px;
}
.article-tags__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.article-tags__list li {
  margin: 0;
}
.article-tag {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border: 1px solid rgba(21, 21, 21, 0.16);
  background: #fff;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}
.article-tag:hover {
  border-color: var(--gold);
  color: var(--red);
}
.article-source__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a453d;
  max-width: 62ch;
}
.article-share__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}
.article-share__list li {
  margin: 0;
}
.article-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.article-share__link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}
.article-share__link--btn {
  font-family: inherit;
}
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.article-related__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.article-related__card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  display: block;
}
.article-related__cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.article-related__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}
.longform-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  color: #fff;
}
.longform-hero .container-mag {
  padding-bottom: 56px;
}
.longform-hero h1 {
  font-family: "Playfair Display";
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  max-width: 980px;
  margin: 18px 0;
}
.chapter {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  padding: 58px 0;
}
.chapter-num {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 900;
}
.video-stage {
  background: #111;
  color: #fff;
  padding: 44px 0;
}
.video-stage__title {
  color: #fff;
}
.video-stage__dek {
  color: #ddd;
}
.video-stage__meta {
  color: #aaa;
}
.video-stage__body {
  margin-top: 28px;
  color: #ddd;
}
.video-stage__tags,
.video-stage__share {
  margin-top: 24px;
}
.video-box {
  aspect-ratio: 16/9;
  background: #000 center/cover no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.video-box--embed,
.video-box--player {
  display: block;
}
.video-box__iframe,
.video-box__iframe-host,
.video-box__video,
.video-box--embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}
.video-box--poster .play {
  position: static;
}
.video-box .play {
  position: static;
  width: 74px;
  height: 74px;
}
.video-meta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  padding-top: 28px;
}
.more-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.event-index-grid .list-event {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-card__hit img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.event-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}
.event-card__title a {
  color: inherit;
  text-decoration: none;
}
.event-card__meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .footer-legal {
    margin-inline: 0;
    padding-inline: 16px;
  }
  .footer-legal__inner{grid-template-columns: 1fr;}
  .chuyende-header__utility-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .chuyende-header__home {
    justify-self: start;
  }
  .chuyende-header__social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .site-header__tools {
    justify-self: end;
  }
  .site-header {
    padding-top: 52px;
  }
  .site-header__utility {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 310;
    background: var(--paper);
    box-shadow: 0 1px 0 rgba(21, 21, 21, 0.08);
  }
  .site-header__menu-btn {
    display: grid;
  }
  .site-nav {
    display: none;
  }
  .chuyende-subnav {
    display: none;
  }
  .awards-spotlight__mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 240px;
  }
  .awards-spotlight__col:nth-child(4),
  .awards-spotlight__col:nth-child(5) {
    display: none;
  }
  .awards-feature,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .logo-img {
    width: min(420px, 82vw);
  }
  .site-header__manchette {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .manchette-ad--left,
  .manchette-ad--right {
    justify-content: center;
  }
  .manchette-ad__slot {
    max-width: 100%;
    height: 60px;
  }
  .site-header__brand {
    order: -1;
  }
  .chuyen-de-drawer__head {
    flex-wrap: wrap;
    justify-content: center;
  }
  .chuyen-de-drawer__title {
    white-space: normal;
    text-align: center;
    width: 100%;
    order: -1;
  }
  .chuyen-de-drawer__link {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .chuyen-de-drawer__go {
    justify-self: start;
  }
  .hero-grid,
  .feature-split,
  .commerce-layout,
  .luxury-layout,
  .culture-layout,
  .media-layout,
  .media-layout--v2,
  .newsletter-grid,
  .footer-grid,
  .category-layout,
  .category-layout--category,
  .category-layout--chuyende,
  .video-meta-grid,
  .chapter {
    grid-template-columns: 1fr;
  }
  .trend-panel__body {
    grid-template-columns: repeat(2, 1fr);
  }
  .trend-panel__item {
    border-left: 0;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
  }
  .trend-panel__item:nth-child(-n + 2) {
    border-top: 0;
  }
  .trend-panel__item:nth-child(2n + 1) {
    border-right: 1px solid rgba(21, 21, 21, 0.1);
  }
  .footer-inner {
    gap: 22px;
  }
  .footer-grid {
    gap: 28px;
  }
  .three-up,
  .business-grid,
  .shopping-strip,
  .media-list,
  .more-videos {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 48px;
  }
  .section-title {
    font-size: 42px;
  }
  .luxury-layout .large {
    grid-column: auto;
  }
  .culture-list {
    columns: 1;
  }
  .feed-item {
    grid-template-columns: 160px 1fr;
  }
  .side-story {
    grid-template-columns: 110px 1fr;
  }
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .container-mag {
    width: min(100% - 28px, 1180px);
  }
  .newsletter__panel{width: 100%;}
  .newsletter-form input{width: 100%;}
  .newsletter-form button{width: 100%;}
  .site-header__utility-inner {
    min-height: 38px;
  }
  .site-header {
    padding-top: 48px;
  }
  .site-header__social-link {
    width: 30px;
    height: 30px;
  }
  .site-header__tool-link {
    display: none;
  }
  .site-header__brand {
    padding-top: 20px;
  }
  .site-header__search-form {
    flex-direction: column;
  }
  .site-header__search-form input {
    border-right: 1px solid var(--surface-line);
  }
  .site-header__search-form .view-all {
    width: 100%;
    margin-top: 8px;
  }
  .tagline {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .site-nav__list {
    gap: 8px 18px;
  }
  .hero {
    padding-top: 30px;
  }
  .hero-grid {
    gap: 26px;
  }
  .hero-title,
  .page-title,
  .article-shell .article-title {
    font-size: 32px;
  }
  .hero-summary,
  .article-dek {
    font-size: 16px;
  }
  .section {
    padding: 42px 0;
  }
  .section-head {
    display: block;
  }
  .view-all {
    display: inline-block;
    margin-top: 18px;
  }
  .trend-panel__body {
    grid-template-columns: 1fr;
  }
  .trend-panel__item {
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
  }
  .trend-panel__body .trend-panel__item + .trend-panel__item {
    border-top: 1px solid rgba(21, 21, 21, 0.1) !important;
  }
  .footer {
    padding: 30px 0 0;
  }
  .footer-legal {
    font-size: 11px;
    line-height: 1.72;
    padding-top: 18px;
  }
  .three-up,
  .business-grid,
  .shopping-strip,
  .media-list,
  .more-videos {
    grid-template-columns: 1fr;
  }
  .event-index-grid .list-event {
    grid-template-columns: 1fr;
  }
  .feed-item,
  .side-story {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    display: block;
  }
  .newsletter-form button {
    height: 48px;
    margin-top: 10px;
  }
  .chapter {
    gap: 14px;
  }
  .article-body {
    font-size: 16px;
  }
  .article-related__grid {
    grid-template-columns: 1fr;
  }
  .article-bottom {
    margin-top: 36px;
    padding-top: 26px;
  }
  .article-related__title {
    font-size: 18px;
  }
  .media-feature h3 {
    font-size: 31px;
  }
}
.cover-story {
  background: var(--red-light);
  padding: 48px 0 44px;
}
.cover-story__title a {
  color: inherit;
  transition: color 0.2s ease;
}
.story-hit-title:hover a,
.cover-story__title a:hover,
.hero-title a:hover {
  color: var(--red);
}
main a.story-hit img {
  transition: transform 0.35s ease;
  transform-origin: top center;
}
/* main a.story-hit:has(> img),
main a.story-hit:has(.sanh-dieu-lead__media),
main a.story-hit:has(.cover-story__hero-fig),
main a.story-hit:has(.partner-box__featured),
main a.story-hit:has(.awards-feature__media),
main .cover-story__thumb,
main .feed-item,
main .shopping-item,
main .partner-box__featured a,
main .chuyen-de-drawer__preview,
main .awards-card__hit {
  overflow: hidden;
} */
main a.story-hit:hover img,
main .partner-box__featured a:hover img,
main .sanh-dieu-lead__link:hover .sanh-dieu-lead__media img {
  transform: scale(1.06);
}
.cover-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 48px;
  align-items: start;
}
.cover-story__copy {
  min-width: 0;
}
.cover-story__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-width: 0;
}
.cover-story__hero-visual {
  flex: 1;
  min-height: 0;
}
.cover-story__title {
  margin-top: 18px;
}
.cover-story__lead {
  max-width: 560px;
}
.cover-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 850;
  color: #4a443c;
  margin: 22px 0 0;
}
.cover-story__meta-sep {
  opacity: 0.45;
  font-weight: 400;
}
.cover-story__rule {
  height: 1px;
  background: rgba(21, 21, 21, 0.14);
  margin: 28px 0 22px;
}
.cover-story__subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cover-story__sub-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.22;
  margin: 12px 0 0;
}
.cover-story__hero-fig {
  margin: 0;
  flex: 1;
  min-height: 280px;
  display: flex;
}
.cover-story__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/4.5;
  min-height: 240px;
}
.cover-story__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cover-story__thumb {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cover-story__thumb img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.cover-story__thumb-cap {
  font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    line-height: 1.45;
    color: #151515;
    margin: 0;
    font-weight: 600;
}
.ad-native {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 22px;
  border: 1px solid rgba(21, 21, 21, 0.08);
}
.ad-native__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
  color: #a67c32;
  margin: 0 0 10px;
}
.ad-native__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.ad-native__text {
  font-size: 13px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 10px 0 0;
  max-width: 42ch;
}
.ad-native--leaderboard {
  min-height: 250px;
  max-width: 970px;
  margin-inline: auto;
  background: #f5f1e6;
}
.ad-native--cream {
  background: #f2ede4;
}
.ad-native--square {
  min-height: 280px;
}
.ad-native--vertical {
  min-height: 300px;
  height: 100%;
}
.ad-native--shopping {
  align-self: stretch;
  background: #ebe3d5;
  text-align: center;
  padding: 32px 20px;
}
.ad-native--culture {
  background: #ebe3d5;
}
.ad-native--luxury {
  background: #121212;
  border-color: rgba(255, 255, 255, 0.08);
}
.ad-native--luxury .ad-native__title,
.ad-native--luxury .ad-native__text {
  color: #f4f4f4;
}
.ad-native--luxury .ad-native__text {
  color: #c9c9c9;
}
.ad-native--retail {
  margin-top: 18px;
  min-height: 200px;
}
.ad-native--white {
  background: #fff;
}
.section--ad-band {
  padding: 36px 0;
  background: var(--paper);
}
.section--paper {
  background: var(--red-light);
}
.thoi-thuong-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 40px;
  align-items: stretch;
  padding-top: 28px;
}
.thoi-thuong-lead {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thoi-thuong-lead img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.thoi-thuong-lead h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.16;
  margin: 0;
}
.thoi-thuong-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
}
.headline-list--flush {
  flex: 1;
}
.thoi-thuong-side .ad-native {
  margin-top: auto;
}
.kinh-doanh-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.kinh-doanh-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-panel--commerce .section-kicker--amber {
  color: var(--red);
}
.section-kicker--amber {
  letter-spacing: 0.22em;
}
.business-grid--tight {
  align-self: start;
}
.merchant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: 26px;
  align-items: stretch;
}
.merchant-feature--cover {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
}
.merchant-cover {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: min(72vh, 620px);
  color: #fff;
  text-decoration: none;
  background: #1a1a1a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.merchant-cover:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.merchant-cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.merchant-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s ease;
}
.merchant-cover__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.15) 0%,
    rgba(10, 8, 6, 0.25) 35%,
    rgba(10, 8, 6, 0.55) 62%,
    rgba(8, 6, 4, 0.88) 100%
  );
}
.merchant-cover__decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.merchant-cover__decor::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 56px;
  height: 56px;
  border-left: 2px solid rgba(227, 6, 19, 0.92);
  border-top: 2px solid rgba(227, 6, 19, 0.92);
  opacity: 0.95;
}
.merchant-cover__decor::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 120px;
  width: 40%;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.75), transparent);
}
.merchant-cover__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(22px, 4vw, 38px) clamp(20px, 3vw, 32px)
    clamp(26px, 4.5vw, 42px);
  gap: 0;
}
.merchant-cover__kicker {
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red-soft);
  margin: 0 0 14px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.merchant-cover__rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(227, 6, 19, 0.35));
  margin: 0 0 16px;
}
.merchant-cover__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 14px;
  max-width: 22ch;
  color: #fff;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.2);
}
.merchant-cover__dek {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 250, 242, 0.9);
  margin: 0;
  max-width: 40ch;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.merchant-cover:hover .merchant-cover__img {
  transform: scale(1.035);
}
.merchant-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.merchant-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.merchant-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.merchant-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
}
.merchant-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.merchant-rail__ad {
  flex: 1;
  min-height: 280px;
  display: flex;
}
.merchant-rail__ad .ad-native {
  flex: 1;
  width: 100%;
}
.merchant-card--bottom {
  flex: 0 0 auto;
  margin-top: auto;
}
.luxury-band--v2 {
  background: #fff;
}
.luxury-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  gap: 26px;
  align-items: stretch;
}
.luxury-v2__feature {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
.luxury-v2__feature img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.luxury-v2__feature h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 18px 0 10px;
  line-height: 1.4;
  color: var(--ink);
}
.luxury-v2__card .meta {
  color: var(--red);
}
.luxury-v2__stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.luxury-v2__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.luxury-v2__card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.luxury-v2__card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
}
.luxury-v2__rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-height: 0;
}
.luxury-v2__picks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(21, 21, 21, 0.1);
  padding: 18px 18px 8px;
  background: #fafafa;
  border-radius: 8px;
}
.luxury-pick {
  padding: 12px 0;
}
.luxury-pick h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 10px 0 0;
  color: var(--ink);
}
.luxury-pick__rule {
  height: 1px;
  background: rgba(21, 21, 21, 0.1);
}
.luxury-v2__ad {
  flex: 0 0 auto;
}
.luxury-v2__ad .ad-native {
  min-height: 220px;
}
.sanh-dieu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px 26px;
  align-items: stretch;
}
.sanh-dieu-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
}
.sanh-dieu-lead {
  background: #fffdf8;
  border: 1px solid rgba(27, 24, 18, 0.1);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}
.sanh-dieu-lead__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.sanh-dieu-lead__media {
  position: relative;
  background: #e8e4dc;
}
.sanh-dieu-lead__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.sanh-dieu-lead__body {
  padding: 22px 24px 24px;
}
.sanh-dieu-lead__body .meta {
  margin-bottom: 8px;
}
.sanh-dieu-lead__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.18;
  margin: 0 0 12px;
  color: #111;
}
.sanh-dieu-lead__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.sanh-dieu-slider-wrap {
  min-width: 0;
  width: 100%;
}
.sanh-dieu-owl .owl-stage-outer {
  padding-bottom: 6px;
}
.sanh-dieu-owl .item,
.sanh-dieu-owl .shopping-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.sanh-dieu-owl .shopping-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.sanh-dieu-owl .owl-nav {
  margin-top: 12px;
  text-align: left;
}
.sanh-dieu-owl .owl-nav button.owl-next,
.sanh-dieu-owl .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  margin: 0 8px 0 0;
  border-radius: 0;
  background: #111 !important;
  color: #fff !important;
  font-size: 22px !important;
  line-height: 1 !important;
}
.sanh-dieu-owl .owl-nav button.owl-next:hover,
.sanh-dieu-owl .owl-nav button.owl-prev:hover {
  background: #333 !important;
}
.sanh-dieu-owl .owl-dots {
  margin-top: 10px;
  text-align: left;
}
.sanh-dieu-owl .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
  background: #c4bdb0 !important;
}
.sanh-dieu-owl .owl-dot.active span {
  background: #111 !important;
}
.sanh-dieu-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  min-height: 100%;
}
.partner-box {
  background: #fffdf8;
  border: 1px solid rgb(134 19 6);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.partner-box--cosmolife{border-color: rgb(253 192 215);}
.partner-box--business{border-color: rgb(232 171 44);}
.partner-box__featured-inner{
  padding: 20px 18px 18px;
}
.partner-box__brand {
  background: url('/hhtgo-media/style/hhtgo-tgo.webp') repeat center center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px 16px;
    margin: 0;
    text-decoration: none;
    background-size: 100%;
    min-height: 180px;
}
.partner-box__brand img{display: none;}
.partner-box--cosmolife .partner-box__brand{background-image: url('/hhtgo-media/style/hhtgo-cosmo.webp'); min-height: 160px;}
.partner-box--business .partner-box__brand{background-image: url('/hhtgo-media/style/hhtgo-cosbuss.webp'); min-height: 160px;}
.partner-box__brand:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.partner-box__brand:hover {
  opacity: 0.94;
}
.partner-box__logo {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.partner-box--cosmolife .partner-box__logo{max-height: 80px; padding-top: 15px;}
.partner-box--business .partner-box__logo{max-height: 80px; padding-top: 15px;}
.partner-box__featured {
  margin: 0 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}
.partner-box__featured a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.partner-box__featured a:hover .partner-box__feat-title {
  color: var(--red);
}
.partner-box__featured img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
  margin: 0 0 14px;
}
.partner-box__feat-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #151515;
  display: block;
}
.partner-box--tgo .partner-box__feat-title{color: #d2232a}
.partner-box--business .partner-box__feat-title{color: rgb(232 171 44)}
.partner-box--cosmolife .partner-box__feat-title{color: rgb(255 0 179)}
.partner-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.partner-box__list li {
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}
.partner-box__list li:first-of-type {
  border-top: 0;
}
.partner-box__list a {
  display: block;
  padding: 12px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: #3a3630;
  text-decoration: none;
}
.partner-box__list a:hover {
  color: var(--red);
}
.partner-box--cosmolife-error .partner-box__featured,
.partner-box--cosmolife-error .partner-box__list,
.partner-box--tgo-error .partner-box__featured,
.partner-box--tgo-error .partner-box__list {
  opacity: 0.55;
}
.partner-box__featured--loading {
  pointer-events: none;
}
.partner-box__list--loading {
  pointer-events: none;
}
.partner-box__list-item--loading {
  padding: 12px 0;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}
.partner-box__list-item--loading:first-of-type {
  border-top: 0;
}
.partner-box__skeleton {
  display: block;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(21, 21, 21, 0.06) 25%, rgba(21, 21, 21, 0.12) 37%, rgba(21, 21, 21, 0.06) 63%);
  background-size: 400% 100%;
  animation: partner-box-shimmer 1.35s ease-in-out infinite;
}
.partner-box__skeleton--media {
  aspect-ratio: 4/3;
  width: 100%;
  margin: 0 0 14px;
}
.partner-box__skeleton--title {
  height: 16px;
  width: 100%;
  margin: 0 0 10px;
}
.partner-box__skeleton--title-short {
  width: 72%;
  margin-bottom: 0;
}
.partner-box__skeleton--line {
  height: 14px;
  width: 100%;
}
.partner-box__list-item--loading .partner-box__skeleton--line {
  width: 92%;
}
.partner-box__list-item--loading:nth-child(2) .partner-box__skeleton--line {
  width: 84%;
}
.partner-box__list-item--loading:nth-child(3) .partner-box__skeleton--line {
  width: 88%;
}
.partner-box__list-item--loading:nth-child(4) .partner-box__skeleton--line {
  width: 76%;
}
@keyframes partner-box-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.partner-box--business .partner-box__brand--gold {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 18px 18px;
  margin: 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
    linear-gradient(180deg, #f3d56a 0%, #e8bc2e 42%, #d4a012 100%);
  border-bottom: none;
}
.partner-box--business .partner-box__brand--gold::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 18%,
    rgba(255, 255, 255, 0.85) 82%,
    transparent 100%
  );
  opacity: 0.7;
  pointer-events: none;
}
.partner-box__logo--business {
  position: relative;
  z-index: 1;
  display: block;
  width: min(220px, 92%);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
}
.partner-box__brand-tag--light {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 28ch;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.45;
}
.partner-box--business .partner-box__brand--gold:hover {
  filter: brightness(1.03);
}
.partner-box--business {
  padding: 0 0 18px;
  overflow: hidden;
}
.sanh-dieu-ad {
  display: flex;
  flex: 1;
  min-height: 200px;
}
.sanh-dieu-ad .ad-native {
  width: 100%;
  justify-content: center;
  flex: 1;
}
.multimedia--v2 {
  background: #d1242a;
}
.media-layout--v2 {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: stretch;
}
.media-feature__visual {
  position: relative;
}
.media-feature__visual img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
}
.media-feature__visual .play {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.media-feature__label {
  margin-top: 16px;
  color: rgb(255 193 196 / 92%);
}
.media-feature__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  margin: 10px 0 0;
  color: #fff;
}
.media-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
  align-content: stretch;
}
.media-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.media-tile img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.media-tile__label {
  margin: 0;
  color: rgb(255 193 196 / 92%);
}
.media-tile h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.media-tile__hit {
  position: relative;
  display: block;
}
.media-tile .play--tile {
  position: absolute;
  left: 16px;
  bottom: 16px;
}
.media-layout--grid-only {
  grid-template-columns: 1fr;
}
.media-grid2--full {
  grid-column: 1 / -1;
}
.hashtag-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hashtag-pagination--light .hashtag-pagination__btn {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hashtag-pagination--light .hashtag-pagination__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hashtag-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(21, 21, 21, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hashtag-pagination__btn:hover {
  background: #f7f2ea;
  border-color: rgba(21, 21, 21, 0.28);
}
.duy-my-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
  gap: 36px;
  align-items: stretch;
}
.duy-my-col--lead {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.duy-my-col--mid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 6px;
  min-height: 100%;
}
.duy-my-col--rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}
.duy-my-col--lead .section-title {
  margin: 6px 0 12px;
}
.duy-my-desc {
  margin: 0 0 22px;
  max-width: 48ch;
}
.duy-my-hero-img {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.duy-my-item {
  flex: 0 0 auto;
}
.duy-my-item h3,
.duy-my-item__hit h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
  margin: 10px 0 0;
}
.duy-my-row {
  padding: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}
.duy-my-row__hit {
  padding: 18px 0;
  display: block;
}
.duy-my-row:first-of-type .duy-my-row__hit {
  padding-top: 0;
}
.duy-my-row h3,
.duy-my-row__hit h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 10px 0 0;
}
.duy-my-ad {
  margin-top: auto;
  padding-top: 22px;
}
@media (max-width: 900px) {
  .cover-story__grid,
  .thoi-thuong-layout,
  .kinh-doanh-layout,
  .merchant-layout,
  .luxury-v2,
  .sanh-dieu-layout,
  .duy-my-layout,
  .media-layout--v2 {
    grid-template-columns: 1fr;
  }
  .cover-story__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .cover-story__copy,
  .cover-story__aside {
    display: contents;
  }
  .cover-story__eyebrow {
    order: 1;
  }
  .cover-story__hero-visual {
    order: 2;
  }
  .cover-story__hero-head {
    order: 3;
  }
  .cover-story__thumbs {
    order: 4;
  }
  .cover-story__rule {
    display: none;
  }
  .cover-story__subgrid {
    order: 5;
    gap: 20px;
  }
  .cover-story__hero-fig {
    min-height: 0;
  }
  .cover-story__hero-img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }
  .cover-story__title {
    margin-top: 14px;
  }
  .cover-story__meta {
    margin-top: 14px;
  }
  .merchant-rail__ad {
    min-height: 0;
  }
  .luxury-v2__rail {
    gap: 16px;
  }
  .sanh-dieu-ad .ad-native {
    min-height: 220px;
  }
  .media-layout--v2 .media-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .cover-story__subgrid {
    grid-template-columns: 1fr;
  }
  .merchant-stack {
    gap: 16px;
  }
  .luxury-v2__stack {
    gap: 14px;
  }
  .media-grid2 {
    grid-template-columns: 1fr;
  }
  .merchant-cover {
    min-height: min(58vh, 480px);
  }
}
.footer-brand__logo-link {
  display: inline-block;
  line-height: 0;
}
.footer-brand__logo {
  /* max-width: min(240px, 70vw); */
  max-height: 100px !important;
  width: auto;
}
.footer-brand__logo--invert {
  filter: none;
}
.story-hit {
  -webkit-tap-highlight-color: transparent;
}
.story-hit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.story-hit:hover h3,
.story-hit:hover .sanh-dieu-lead__title,
.story-hit:hover .cover-story__sub-title {
  color: var(--red);
}
.story-hit--dark:hover h3,
.story-hit--dark:hover .media-feature__title {
  color: rgb(255 193 196 / 92%);
}
.story-hit:hover .trend-panel__title {
  color: var(--red);
}
.story-hit:hover .cover-story__thumb-cap {
  color: var(--muted);
}
.headline-row__hit .eyebrow {
  display: block;
}
.thoi-thuong-lead__hit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-card__hit {
  display: block;
}
.merchant-card__hit,
.luxury-v2__feature-hit,
.luxury-v2__card-hit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 0;
}
.luxury-pick__hit {
  display: block;
  text-decoration: none;
  color: inherit;
}
.media-feature__hit {
  display: block;
  color: inherit;
}
.media-tile__hit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  color: inherit;
}
.shopping-hit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  color: inherit;
}
.cover-story__hero-link {
  display: block;
  height: 100%;
}
.cover-story__hero-link:focus-visible figure {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cover-story__sub-hit,
.cover-story__thumb-hit {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cover-story__thumb-hit {
  gap: 10px;
}
.duy-my-hero-link {
  display: block;
  line-height: 0;
}
.duy-my-item__hit {
  display: block;
  color: inherit;
}
.sanh-dieu-owl .shopping-item {
  min-height: 100%;
}
.sanh-dieu-owl .shopping-hit {
  flex: 1;
  min-height: 0;
}
.awards-spotlight {
  padding-top: 52px;
  padding-bottom: 52px;
  border-top: 1px solid var(--surface-line);
}
.awards-spotlight__label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.awards-spotlight__label-row--hero {
  justify-content: center;
  margin-bottom: 18px;
}
.awards-spotlight__rule {
  flex: 1;
  height: 1px;
  background: var(--surface-line);
  min-width: 20px;
}
.awards-spotlight__label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.awards-spotlight__mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 32px;
  overflow: hidden;
}
.awards-spotlight__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.awards-spotlight__col--tall img {
  height: 100%;
  min-height: 280px;
}
.awards-spotlight__col--stack img:first-child {
  flex: 1.25;
  min-height: 0;
}
.awards-spotlight__col--stack img:last-child {
  flex: 0.85;
  min-height: 0;
}
.awards-spotlight__mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: auto;
}
.awards-spotlight__copy {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.awards-spotlight__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}
.awards-spotlight__title a {
  color: inherit;
}
.awards-spotlight__divider {
  width: 48px;
  height: 1px;
  background: var(--ink);
  margin: 18px auto;
}
.awards-spotlight__dek {
  margin: 0 auto 22px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.awards-spotlight__cta {
  display: inline-block;
}
.awards-hero {
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--surface-line);
}
.awards-hero__inner {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.awards-hero__title {
  margin-top: 8px;
}
.awards-hero__summary {
  margin-inline: auto;
}
.awards-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  border: 1px solid var(--surface-line);
  padding: 22px;
  background: var(--surface);
}
.awards-feature__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.awards-feature__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin: 10px 0 0;
}
.awards-feature__title a {
  color: inherit;
}
.awards-feature__rule {
  width: 40px;
  height: 1px;
  background: var(--ink);
  margin: 16px 0;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.awards-card {
  border: 1px solid var(--surface-line);
  background: var(--paper);
  padding: 0 0 18px;
}
.awards-card__hit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 0;
}
.awards-card__hit img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.awards-card__hit .eyebrow,
.awards-card__hit h3,
.awards-card__hit .article-excerpt {
  padding-inline: 18px;
}
.awards-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
}
.awards-editions {
  background: var(--surface);
  border-top: 1px solid var(--surface-line);
}
.awards-editions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--surface-line);
  background: var(--paper);
}
.awards-editions__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 22px 24px;
  align-items: start;
}
.awards-editions__item + .awards-editions__item {
  border-top: 1px solid var(--surface-line);
}
.awards-editions__year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.awards-editions__theme {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.25;
}
.section--chuyen-de {
  padding: 40px 0 0;
  background: var(--paper);
  border-top: none;
  margin-top: 0;
}
.awards-footer-teaser {
  padding: 36px 0 32px;
  border-top: 1px solid var(--surface-line);
  background: var(--paper);
}
.awards-footer-teaser__inner {
  text-align: center;
}
.awards-footer-teaser__label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.awards-footer-teaser__label {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.awards-footer-teaser__dek {
  margin: 0 auto 18px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.awards-footer-teaser__cta {
  display: inline-block;
}
.section--chuyen-de + .awards-footer-teaser {
  border-top: none;
}
.awards-footer-teaser + .newsletter {
  padding-top: 28px;
}
.section--chuyen-de + .newsletter {
  margin-top: 0;
}
.site-header--chuyende .site-header__manchette,
.site-header--chuyende .site-nav {
  display: none;
}
.site-header--chuyende {
  position: relative;
  background: var(--paper);
}
.chuyende-header__utility-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 20px;
}
.chuyende-header__home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
}
.chuyende-header__home:hover {
  color: var(--red);
}
.chuyende-header__home-icon {
  font-size: 14px;
  line-height: 1;
}
.chuyende-header__social {
  justify-content: center;
}
.chuyende-subnav {
  position: sticky;
  top: 0;
  z-index: 300;
  border-block: 2px solid var(--red);
  background: var(--paper);
  margin-bottom: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.chuyende-subnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.chuyende-subnav__link {
  display: block;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid transparent;
}
.chuyende-subnav__link:hover,
.chuyende-subnav__link--active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.article-share__list--icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.article-share__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--surface-line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.article-share__icon i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.article-share__icon:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
.article-share__icon--instagram:hover {
  background: #c13584;
  border-color: #c13584;
}
.article-share__copy-hint {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.article-share__toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.article-share__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.article-bottom--longform {
  padding: 24px 0 48px;
  border-top: 1px solid var(--surface-line);
  margin-top: 24px;
}
.chuyen-de-drawer__wrap {
  position: relative;
}
.chuyen-de-drawer__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0 20px;
  cursor: default;
}
.chuyen-de-drawer__title {
  margin: 0;
  flex-shrink: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.chuyen-de__rule {
  flex: 1;
  height: 1px;
  background: var(--surface-line);
  min-width: 24px;
}
.chuyen-de-drawer__caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--ink);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.chuyen-de-drawer__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    padding 0.35s ease;
  border-top: 0 solid var(--surface-line);
  padding-bottom: 0;
}
.chuyen-de-drawer:hover .chuyen-de-drawer__panel,
.chuyen-de-drawer:focus-within .chuyen-de-drawer__panel {
  max-height: 920px;
  opacity: 1;
  padding-bottom: 28px;
}
.chuyen-de-drawer:hover .chuyen-de-drawer__title,
.chuyen-de-drawer:focus-within .chuyen-de-drawer__title {
  color: var(--red);
}
.chuyen-de-drawer:hover .chuyen-de-drawer__caret,
.chuyen-de-drawer:focus-within .chuyen-de-drawer__caret {
  transform: rotate(180deg);
  border-top-color: var(--red);
}
.chuyen-de-drawer__list {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}
.chuyen-de-drawer__link {
  display: grid;
  /* grid-template-columns: 140px minmax(0, 1fr) auto; */
  /* gap: 20px; */
  align-items: center;
  justify-content: center;
  /* padding: 16px 4px; */
  height: 100px;
  color: inherit;
}
.chuyen-de-drawer__logo {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.28s ease;
  will-change: transform;
}
.chuyen-de-drawer__body {
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.chuyen-de-drawer__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.chuyen-de-drawer__preview {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.chuyen-de-drawer__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}
.chuyen-de-drawer__preview-title {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.chuyen-de-drawer__go {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  text-align: center;
}
.chuyen-de-drawer__link:hover .chuyen-de-drawer__name,
.chuyen-de-drawer__link:hover .chuyen-de-drawer__preview-title {
  color: var(--red);
}
.chuyen-de-drawer__link:hover .chuyen-de-drawer__logo,
.chuyen-de-drawer__link:focus-visible .chuyen-de-drawer__logo {
  transform: scale(1.05);
}
.chuyen-de-drawer__all {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.chuyen-de-drawer__all:hover {
  color: var(--ink);
}
.chuyende-hero {
  padding: 36px 0 28px;
  /* background: var(--paper); */
  border-bottom: none;
  position: relative;
  z-index: 2;
}
.chuyende-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.chuyende-hero__headline-img{max-width: 40%; margin: 0 auto;}
.chuyende-hero__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.chuyende-hero__brand-mark {
  color: var(--red);
}
.chuyende-hero__logo {
  width: min(520px, 92vw);
  height: auto;
  object-fit: contain;
  position: relative;
}
.chuyende-hero__desc {
  margin: 0;
  /* max-width: 62ch; */
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.chuyende-hero__desc strong {
  color: var(--ink);
  font-weight: 600;
}
.chuyende-main__content {
  padding-top: 40px;
}
.chuyende-aside-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.chuyende-aside-list li + li {
  margin-top: 10px;
}
.chuyende-aside-list a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.chuyende-aside-list a:hover {
  color: var(--red);
}
.footer-top {
  display: grid;
  align-items: start;
  /* padding-bottom: 8px; */
  position: relative;
}
.footer-top__caption {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 36ch;
}
.footer-top__org-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.footer-top__org-name {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 40ch;
}
.footer-legal__ads {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 21, 21, 0.12);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-top__brand{
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.x-icon{width: 20px;}
.footer-legal__dev{
  display: flex;
    gap: 5px;
    justify-content: end;
    align-items: center;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px){
  .chuyende-hero__headline-img{max-width: 100%;}
  .chuyende-header__social{display: none;}
  .chuyende-subnav__list{flex-wrap: nowrap;}
  .category-layout--chuyende aside{order: 2}
  .footer-legal__ads{display: grid;}
  .footer-legal__dev{justify-content: center;}
}