.main-grid-wrapper {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  gap: 1.5rem;
}@media (min-width: 1024px) {.main-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}.main-grid-wrapper {
  width: min(100%, 72rem);
}

.navigation-wrapper {
  position: fixed;
  top: 0px;
  z-index: 10;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: 100%;
  padding: 0.75rem 0;
  background: rgba(250, 249, 245, 0.92);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--md-outline);
}
.page-infos {
  grid-column: span 12 / span 12;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 5rem;
}
@media (min-width: 640px) {
  @media not all and (min-width: 768px) {
    .page-infos {
      padding-top: 6rem;
    }
  }
}
@media (min-width: 768px) {
  .page-infos {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  @media not all and (min-width: 1280px) {
    .page-infos {
      padding-top: 7rem;
    }
  }
}
@media (min-width: 1280px) {
  @media not all and (min-width: 1536px) {
    .page-infos {
      padding-top: 8rem;
    }
  }
}
@media (min-width: 1536px) {
  .page-infos {
    padding-top: 9rem;
  }
}
.page-infos {
  max-width: 72rem;
}
.page-infos h1 {
  margin-bottom: 0px;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .page-infos h1 {
    margin-top: 1rem;
  }
}
.page-infos h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 14ch;
}
.page-infos h1::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--md-primary);
}
.page-infos-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
/* Bố cục chính nè */
.content-wrapper {
  grid-column: span 8 / span 8;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.content-wrapper {
  min-width: 0;
}
.sidebar-wrapper {
  grid-column: span 4 / span 4;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .sidebar-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.sidebar-wrapper {
  min-width: 0;
}
.full-width-wrapper {
  grid-column: span 12 / span 12;
  min-height: 100vh;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .full-width-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.navigation-content {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}@media (min-width: 768px) {.navigation-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}.navigation-content {
  width: min(100%, 72rem);
}
.navi-web-wrapper {
  display: none;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {@media not all and (min-width: 1536px) {.navi-web-wrapper {
      display: flex;
    }
  }
}
@media (min-width: 1536px) {.navi-web-wrapper {
    display: flex;
  }
}
.navi-web-wrapper {
  min-height: 2.75rem;
}
.navi-web-main {
  display: flex;
  min-width: 0px;
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
}
.navi-web-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navi-local-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navi-local-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  min-height: 2.35rem;
  padding: 0.48rem 0.85rem;
  border-radius: var(--tyt-radius-md);
  text-decoration: none;
  color: var(--tyt-body);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--md-outline);
  box-shadow: none;
  transition:
    color 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard),
    background-color 0.18s var(--md-easing-standard),
    box-shadow 0.18s var(--md-easing-standard),
    transform 0.18s var(--md-easing-standard);
}
.navi-local-link:hover {
  color: var(--md-primary);
  border-color: rgba(165, 214, 167, 0.7);
  background: #f4fbf4;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(73, 47, 30, 0.08);
}
.navi-local-link.seo {
  color: #ffffff;
  background: var(--md-primary);
  border-color: transparent;
  box-shadow: none;
}
.navi-local-link.seo:hover {
  color: #ffffff;
  background: var(--tyt-primary-active);
  box-shadow: 0 6px 14px rgba(63, 127, 69, 0.18);
}
.navi-mobile-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {.navi-mobile-wrapper {
    display: none;
  }
}
.navi-logo {
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--tyt-ink);
}

.navi-logo img {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.navi-icon-mobile {
  display: none;
  cursor: pointer;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.navi-icon-mobile:hover {
  --tw-text-opacity: 1;
  color: rgb(0 160 233 / var(--tw-text-opacity));
}
.navi-links-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  color: var(--tyt-body);
  font-size: 0.95rem;
  font-weight: 500;
}
.navi-mobile-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--tyt-radius-md);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  color: var(--md-on-surface);
}

.navi-mobile-icon-btn:hover {
  border-color: var(--md-primary);
  color: var(--md-primary);
}

.navi-mobile-search-shell {
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {.navi-mobile-search-shell {
    display: none;
  }
}

.topbar-search-wrapper {
  position: relative;
}

.topbar-search-wrapper-desktop {
  width: min(100%, 21rem);
}

.topbar-search-wrapper-modal {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.topbar-search-wrapper-mobile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.topbar-search-input-shell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--md-outline);
  border-radius: var(--tyt-radius-md);
  background: #fffdf8;
  padding: 0 0.75rem;
  min-height: 2.5rem;
}

.topbar-search-input-shell svg {
  flex-shrink: 0;
  color: var(--md-on-surface-variant);
}

.topbar-search-input {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.45rem 0;
  min-width: 0;
}

.topbar-search-input:hover,
.topbar-search-input:focus-visible {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.topbar-search-input-shell:focus-within {
  border-color: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.35);
}

.topbar-search-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--tyt-radius-md);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  color: var(--md-on-surface);
}

.topbar-search-close-btn:hover {
  border-color: var(--md-primary);
  color: var(--md-primary);
}

.topbar-search-dropdown {
  position: absolute;
  left: 0px;
  right: 0px;
  margin-top: 0.5rem;
  overflow: hidden;
  z-index: 30;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  box-shadow: 0 16px 32px rgba(73, 47, 30, 0.12);
}

.topbar-search-feedback {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--md-on-surface-variant);
  padding: 0.85rem 0.9rem;
}

.topbar-search-results {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.topbar-search-result-item + .topbar-search-result-item {
  border-top: 1px solid var(--md-outline);
}

.topbar-search-result-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.78rem 0.9rem;
  text-decoration: none;
}

.topbar-search-result-link:hover {
  background: var(--tyt-surface-soft);
}

.topbar-search-result-type {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--md-primary);
}

.topbar-search-result-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--tyt-ink);
  line-height: 1.45;
}

.search-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.search-modal-backdrop {
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: rgba(24, 23, 21, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.search-modal-panel {
  width: min(100%, 52rem);
  margin: 0 auto;
  margin-top: clamp(4.5rem, 12vh, 8rem);
  border-radius: var(--tyt-radius-xl);
  border: 1px solid var(--md-outline);
  background: var(--tyt-canvas);
  box-shadow: 0 24px 64px rgba(24, 23, 21, 0.24);
  padding: 1rem;
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.search-modal-header h2 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

@media (min-width: 768px) {.search-modal-header h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.search-modal-header h2 {
  color: var(--tyt-ink);
}

.search-modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--tyt-radius-md);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  color: var(--md-on-surface);
}

.search-modal-close-btn:hover {
  border-color: var(--md-primary);
  color: var(--md-primary);
}

.search-modal-panel .topbar-search-dropdown {
  position: static;
  margin-top: 0.75rem;
  max-height: min(58vh, 26rem);
  overflow: auto;
}

.site-footer {
  margin-top: 3rem;
  background: var(--tyt-surface-dark);
  border-top: 1px solid rgba(250, 249, 245, 0.08);
}

.footer-shell {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {.footer-shell {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.footer-shell {
  width: min(100%, 72rem);
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
}

.footer-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tyt-primary);
}

.footer-description {
  max-width: 34ch;
  color: #c9c1b5;
  line-height: 1.55;
  font-size: 0.95rem;
}

.footer-main-row {
  padding: 1rem;
}

@media (min-width: 768px) {.footer-main-row {
    padding: 1.5rem;
  }
}

.footer-main-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1rem 1.25rem;
  align-items: center;
  background: var(--tyt-surface-dark-elevated);
  border: 1px solid rgba(250, 249, 245, 0.1);
  border-radius: var(--tyt-radius-lg);
}

.footer-brand-mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--tyt-radius-lg);
  background: var(--tyt-canvas);
  border: 1px solid rgba(250, 249, 245, 0.12);
}

.footer-brand-copy {
  min-width: 0;
}

.footer-inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.footer-nav-chip {
  display: inline-flex;
  align-items: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: var(--tyt-radius-md);
  color: #ddd7cc;
  text-decoration: none;
  background: rgba(250, 249, 245, 0.04);
  border: 1px solid rgba(250, 249, 245, 0.1);
  transition:
    background-color 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard),
    color 0.18s var(--md-easing-standard);
}

.footer-nav-chip:hover {
  color: #ffffff;
  background: rgba(165, 214, 167, 0.16);
  border-color: rgba(165, 214, 167, 0.44);
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
  min-width: 0;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #d6d0c6;
  text-decoration: none;
  line-height: 1.45;
  min-width: 0;
}

.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-contact-item span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {.footer-bottom-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom-row p {
  margin: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--tyt-muted-soft);
}

.footer-dmca-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: var(--tyt-radius-md);
  background: rgba(250, 249, 245, 0.08);
  border: 1px solid rgba(250, 249, 245, 0.12);
}

@media (max-width: 1023px) {
  .footer-main-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-inline-nav {
    justify-content: flex-start;
  }

  .footer-bottom-row {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 2.25rem;
  }

  .footer-shell {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .footer-main-row {
    padding: 0.95rem;
    gap: 0.9rem;
  }

  .footer-brand-link {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.95rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }
}

.overlay-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20;
  height: 100%;
  width: 100%;
  background: rgba(24, 23, 21, 0.62);
}
.overlay-content {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mobile-menu-wrapper {
  grid-column: span 1 / span 1;
  height: 100%;
  min-width: min(82vw, 22rem);
  background: var(--tyt-canvas);
  border-right: 1px solid var(--md-outline);
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
}
.mobile-menu-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--md-outline);
  color: var(--tyt-ink);
  transition: color 0.18s var(--md-easing-standard);
}
.mobile-menu-item:hover {
  color: var(--md-primary);
}
.mobile-menu-icon-drop {
  position: relative;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.mobile-menu-icons-hide {
  visibility: hidden;
  display: flex;
  display: none;
  width: 100%;
  flex-direction: column;
  opacity: 0;
}
.mobile-menu-icons-hide > * {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
}
.mobile-menu-icon-hide p {
  margin-left: 1rem;
}
.mobile-menu-item:active + .mobile-menu-icons-hide,
.mobile-menu-item:hover + .mobile-menu-icons-hide,
.mobile-menu-icons-hide:hover {
  visibility: visible;
  display: flex;
  opacity: 1;
}
.nenDenConLai-wrapper {
  grid-column: span 2 / span 2;
  height: 100%;
  cursor: not-allowed;
}
.nenDenConLai-wrapper:hover::after {
  content: "Đóng";
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 0;
  color: var(--tyt-canvas);
  font-weight: bold;
  padding: 5px 1rem;
  border: 1px solid rgba(250, 249, 245, 0.72);
  border-radius: var(--tyt-radius-md);
}

.home-editorial-hero {
  grid-column: span 12 / span 12;
  padding-left: 1rem;
  padding-right: 1rem;
}@media (min-width: 768px) {.home-editorial-hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}.home-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(5.8rem, 8vw, 7.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.home-editorial-intro {
  max-width: 48rem;
}

.home-editorial-intro h1 {
  margin-top: 0.85rem;
  max-width: 12ch;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.04;
}

.home-editorial-intro > p:not(.home-section-eyebrow) {
  max-width: 39rem;
  margin-top: 1rem;
  color: var(--tyt-body);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.68;
}

.home-section-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--md-primary);
}

.home-hero-trust-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.home-hero-mini-avatar {
  width: 2.55rem;
  height: 2.55rem;
  overflow: hidden;
  border: 3px solid var(--tyt-highlight);
  border-radius: 999px;
  background: var(--tyt-surface-soft);
}

.home-hero-mini-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-hero-trust-copy {
  margin-top: 0.12rem;
  color: var(--tyt-muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.home-hero-primary,
.home-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: var(--tyt-radius-md);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.home-hero-primary {
  border: 1px solid var(--md-primary);
  background: var(--md-primary);
  color: #ffffff;
}

.home-hero-primary:hover {
  border-color: var(--tyt-primary-active);
  background: var(--tyt-primary-active);
}

.home-hero-secondary {
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  color: var(--tyt-ink);
}

.home-hero-secondary:hover {
  border-color: rgba(165, 214, 167, 0.82);
  background: var(--tyt-primary-soft);
  color: var(--md-primary);
}

.home-hero-visual {
  min-width: 0;
}

.home-avatar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px dashed rgba(63, 127, 69, 0.24);
  border-radius: 30px 30px var(--tyt-radius-lg) var(--tyt-radius-lg);
  background: #f1f6ee;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 0 24px rgba(63, 127, 69, 0.04);
}

.home-avatar-card::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px dashed rgba(255, 255, 255, 0.78);
  border-radius: 24px 24px var(--tyt-radius-md) var(--tyt-radius-md);
  transform: rotate(0.12deg);
  pointer-events: none;
}

.home-avatar-card > * {
  position: relative;
  z-index: 1;
}

.home-avatar-frame {
  width: min(100%, 14.75rem);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 8px solid #fffdf8;
  border-radius: 999px 999px 2.25rem 999px;
  background: var(--tyt-surface-soft);
  box-shadow: 0 18px 34px rgba(63, 127, 69, 0.16);
}

.home-avatar-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-avatar-copy {
  min-width: 0;
  text-align: center;
}

.home-avatar-name {
  color: var(--tyt-ink);
  font-weight: 700;
  line-height: 1.25;
}

.home-avatar-copy p:not(.home-avatar-name) {
  max-width: 18rem;
  margin: 0.35rem auto 0;
  color: var(--tyt-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-avatar-link {
  display: inline-flex;
  margin-top: 0.55rem;
  border-bottom: 1px solid currentColor;
  color: var(--md-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.home-topic-section,
.home-featured-section,
.home-latest-section {
  grid-column: span 12 / span 12;
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {.home-topic-section,
.home-featured-section,
.home-latest-section {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.home-topic-section {
  margin-top: 0.5rem;
}

.home-topic-heading-row,
.home-latest-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.home-section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-section-heading h2 {
  font-size: clamp(1.72rem, 3vw, 2.35rem);
}

.home-topic-lead {
  max-width: 38rem;
  margin-top: 0.25rem;
  color: var(--tyt-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-text-link {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--md-primary);
  font-weight: 600;
  text-decoration: none;
}

.home-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.home-topic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 12.5rem;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--md-outline);
  border-radius: var(--tyt-radius-lg);
  background: #fffdf8;
  color: var(--tyt-ink);
  text-decoration: none;
  transition:
    transform 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard),
    background-color 0.18s var(--md-easing-standard);
}

.home-topic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 214, 167, 0.82);
  background: #fffefa;
  box-shadow: 0 12px 24px rgba(73, 47, 30, 0.07);
}

.home-topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(20, 20, 19, 0.06);
  border-radius: 1.15rem 1.15rem 1.15rem 0.42rem;
  transition: transform 0.2s var(--md-easing-standard);
}

.home-topic-card:hover .home-topic-icon {
  transform: rotate(-4deg) translateY(-2px);
}

.home-topic-icon-mint {
  background: #e3f3e4;
  color: #397942;
}

.home-topic-icon-butter {
  background: #fff0c9;
  color: #9a6815;
}

.home-topic-icon-lavender {
  background: #e9e4f5;
  color: #65539a;
}

.home-topic-icon-peach {
  background: #f6e2db;
  color: #a75f45;
}

.home-topic-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.home-topic-copy strong {
  color: var(--tyt-ink);
  font-family: var(--tyt-display-font);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.1;
}

.home-topic-copy small {
  color: var(--md-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-topic-note {
  max-width: 24ch;
  color: var(--tyt-muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.home-topic-arrow {
  position: absolute;
  right: 0.95rem;
  bottom: 0.85rem;
  color: var(--md-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.home-featured-section,
.home-latest-section {
  margin-top: clamp(2rem, 4.5vw, 3.5rem);
}

.home-featured-card {
  max-width: 72rem;
  margin-top: 1rem;
}

.home-featured-card .post-card-wrapper-featured {
  display: grid;
  grid-template-columns: minmax(18rem, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1rem;
}

.home-featured-card .post-card-image-wrapper {
  height: 100%;
  min-height: 17rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--tyt-radius-lg);
}

.home-featured-card .post-card-content-wrapper {
  justify-content: center;
  gap: 0.7rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.home-featured-card .post-card-title {
  max-width: 19ch;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.home-featured-card .post-card-excerpt {
  max-width: 48ch;
  -webkit-line-clamp: 4;
}

.home-latest-section {
  margin-bottom: 2rem;
}

.home-latest-heading-row {
  margin-bottom: 1rem;
}

.home-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-latest-grid .post-card-wrapper-compact {
  gap: 0.7rem;
  padding: 0.7rem;
}

.home-latest-grid .post-card-image-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: var(--tyt-radius-md);
}

.home-latest-grid .thumbnail-overlay {
  top: 0.45rem;
  left: 0.45rem;
  right: 0.45rem;
}

.home-latest-grid .post-card-badge {
  padding: 0.2rem 0.45rem;
  font-size: 0.67rem;
}

.home-latest-grid .post-card-content-wrapper {
  gap: 0.45rem;
}

.home-latest-grid .post-card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: clamp(1.13rem, 1.65vw, 1.38rem);
  line-height: 1.18;
}

.home-latest-grid .post-card-meta {
  font-size: 0.77rem;
  line-height: 1.4;
}

.home-latest-grid .post-card-footer {
  margin-top: auto;
  gap: 0.5rem;
}

.home-latest-grid .post-card-reading-time,
.home-latest-grid .post-card-action {
  font-size: 0.77rem;
}

.home-course-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--tyt-radius-lg);
  background: var(--tyt-surface-dark);
  color: #faf9f5;
}

.home-course-band h2 {
  margin-top: 0.25rem;
  color: #faf9f5;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.home-course-band p:not(.home-section-eyebrow) {
  max-width: 46rem;
  margin-top: 0.4rem;
  color: #c9c1b5;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-course-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 21rem;
  padding: 0.72rem 0.9rem;
  border-radius: var(--tyt-radius-md);
  background: var(--md-primary);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.home-course-link:hover {
  background: var(--tyt-primary-active);
}

@media (max-width: 1023px) {
  .home-editorial-hero {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
  }

  .home-topic-grid,
  .home-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .home-featured-card .post-card-wrapper-featured {
    grid-template-columns: 1fr;
  }

  .home-featured-card .post-card-image-wrapper {
    min-height: 0;
  }

  .home-featured-card .post-card-content-wrapper {
    padding: 0.1rem 0.25rem 0.25rem;
  }
}

@media (max-width: 767px) {
  .home-editorial-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 5.4rem;
    padding-bottom: 0.8rem;
  }

  .home-editorial-intro h1 {
    max-width: 13ch;
    font-size: 2.25rem;
  }

  .home-hero-actions {
    margin-top: 1rem;
  }

  .home-avatar-card {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
  }

  .home-avatar-frame {
    width: 5rem;
    border-width: 4px;
    border-radius: 999px;
    box-shadow: none;
  }

  .home-avatar-copy {
    text-align: left;
  }

  .home-avatar-copy p:not(.home-avatar-name) {
    margin-left: 0;
  }

  .home-topic-heading-row,
  .home-latest-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-topic-grid {
    display: flex;
    gap: 0.55rem;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-topic-grid::-webkit-scrollbar {
    display: none;
  }

  .home-topic-card {
    flex: 0 0 10.8rem;
    min-height: 11.5rem;
  }

  .home-latest-grid {
    grid-template-columns: 1fr;
  }

  .home-course-band {
    grid-template-columns: 1fr;
  }

  .home-course-link {
    width: 100%;
    max-width: none;
  }
}

.posts-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {

  .posts-list-wrapper {
    gap: 1.75rem;
  }
}

.post-card-item {
  min-width: 0;
}

.post-card-link {
  display: block;
}

.post-card-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .post-card-wrapper {
    padding: 1.25rem;
  }
}

.post-card-wrapper {
  border-radius: var(--md-radius-card);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  box-shadow: none;
  content-visibility: auto;
  contain-intrinsic-size: 0 34rem;
  transition:
    transform 0.2s var(--md-easing-standard),
    border-color 0.2s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard);
}

.post-card-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 214, 167, 0.75);
  box-shadow: 0 8px 18px rgba(73, 47, 30, 0.08);
}

.post-card-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--tyt-radius-lg);
  background: var(--tyt-surface-card);
  border: 1px solid var(--md-outline);
}

.thumbnail-overlay {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  pointer-events: none;
}

.post-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.post-card-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--md-radius-chip);
  padding: 0.28rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid transparent;
}

.post-card-badge-primary {
  color: var(--tyt-ink);
  background: rgba(250, 249, 245, 0.92);
  border-color: rgba(230, 223, 216, 0.9);
}

.post-card-badge-success {
  color: #2f6f38;
  background: rgba(231, 241, 226, 0.94);
  border-color: rgba(93, 155, 99, 0.32);
}

.post-card-badge-secondary {
  color: #8a5336;
  background: rgba(244, 229, 204, 0.92);
  border-color: rgba(216, 154, 82, 0.35);
}

.post-card-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s var(--md-easing-standard);
}

.post-card-wrapper:hover .post-card-image-wrapper img {
  transform: scale(1.04);
}

.post-card-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.post-card-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {

  .post-card-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.post-card-title {
  color: var(--tyt-ink);
  font-family: var(--tyt-display-font);
  font-weight: 400;
  line-height: 1.16;
  transition: color 0.2s var(--md-easing-standard);
}

.post-card-wrapper:hover .post-card-title {
  color: var(--tyt-primary-active);
}

.post-card-meta {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--md-on-surface-variant);
}

.post-card-excerpt {
  color: var(--tyt-body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.post-card-reading-time {
  font-size: 0.82rem;
  color: var(--md-on-surface-variant);
}

.post-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--md-primary);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Phần bài viết chi tiết */
.detail-article-wrapper {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {

  .detail-article-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {

  .detail-article-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.detail-article-wrapper {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.blog-reading-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 4.56rem;
  height: 3px;
  z-index: 9;
  background: rgba(230, 223, 216, 0.72);
  pointer-events: none;
}

.blog-reading-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: var(--md-primary);
}

.detail-post-infos {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {

  .detail-post-infos {
    padding-bottom: 1.5rem;
  }
}

.detail-post-infos {
  border-bottom: 1px solid var(--md-outline);
}

.detail-post-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.detail-post-actions {
  display: flex;
  align-items: center;
}

.detail-post-infos h1 {
  width: 100%;
  max-width: none;
  line-height: 1.18;
}

.post-trust-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 768px) {

  .post-trust-wrapper {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.post-trust-wrapper {
  border-radius: var(--tyt-radius-lg);
  background: var(--tyt-surface-soft);
  border: 1px solid var(--md-outline);
  color: var(--md-on-surface-variant);
}

.post-trust-wrapper p {
  line-height: 1.65;
}

.post-author-link {
  color: var(--md-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-post-content-wrapper {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.25rem;
  color: var(--tyt-body);
}

.blog-reading-prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 72ch;
}

.detail-post-content-wrapper a {
  color: var(--md-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.detail-post-content-wrapper .markdown-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.18rem 0.62rem;
  margin: 0 0.08rem;
  border-radius: 999px;
  border: 1px solid rgba(165, 214, 167, 0.55);
  background: #f1faf1;
  color: var(--tyt-primary-active) !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1.45;
  transition:
    border-color 0.18s var(--md-easing-standard),
    background-color 0.18s var(--md-easing-standard),
    color 0.18s var(--md-easing-standard);
}

.detail-post-content-wrapper .markdown-link-badge::after {
  content: "↗";
  font-size: 0.8em;
  opacity: 0.65;
}

.detail-post-content-wrapper .markdown-link-badge:hover {
  background: #dcefdc;
  border-color: rgba(165, 214, 167, 0.8);
  color: var(--tyt-primary-active) !important;
}

.detail-post-content-wrapper p {
  line-height: 1.8;
}

.detail-post-content-wrapper h2,
.detail-post-content-wrapper h3 {
  margin-top: 0.85rem;
}

.detail-post-content-wrapper .md-list {
  margin: 0.45rem 0 1rem;
}

.detail-post-content-wrapper .md-list-ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-post-content-wrapper .md-list-ul > .md-list-item {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.72;
}

.detail-post-content-wrapper .md-list-ul > .md-list-item::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.72em;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.35);
}

.detail-post-content-wrapper .md-list-ol {
  padding-left: 1.45rem;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-post-content-wrapper .md-list-ol > .md-list-item {
  line-height: 1.72;
}

.detail-post-content-wrapper .md-list-ol > .md-list-item::marker {
  color: var(--md-primary);
  font-weight: 700;
}

.detail-post-content-wrapper .md-list-item > .md-list {
  margin-top: 0.55rem;
  margin-bottom: 0.15rem;
}

.detail-post-content-wrapper pre {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid #2f2c27;
  background: var(--tyt-surface-dark);
  color: #f6f1e8;
  padding: 1rem;
  overflow-x: auto;
}

.detail-post-content-wrapper code {
  background: var(--tyt-surface-soft);
  border-radius: var(--tyt-radius-sm);
  padding: 0.08rem 0.38rem;
  font-size: 0.9em;
}

.detail-post-content-wrapper pre code {
  background: transparent;
  padding: 0;
}

.blog-image-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-card);
}

.blog-image-wrapper p {
  margin-top: 0.6rem;
  color: var(--md-on-surface-variant);
}

.post-content-video-wrapper {
  height: 12rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}

@media (min-width: 768px) {

  .post-content-video-wrapper {
    height: 25rem;
  }
}

.post-content-video-wrapper {
  border: 1px solid var(--md-outline);
}

.blog-inline-next {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {

  .blog-inline-next {
    padding: 1.5rem;
  }
}

.blog-inline-next {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid rgba(165, 214, 167, 0.58);
  background: var(--tyt-surface-card);
  box-shadow: none;
}

.blog-inline-next-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--md-primary);
}

.blog-inline-next-copy {
  color: var(--tyt-body);
}

.blog-inline-next-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--tyt-radius-md);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  text-decoration: none !important;
  transition:
    transform 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard),
    box-shadow 0.18s var(--md-easing-standard);
}

.blog-inline-next-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 214, 167, 0.82);
  box-shadow: 0 8px 16px rgba(73, 47, 30, 0.08);
}

.blog-inline-next-card strong {
  color: var(--tyt-ink);
  font-size: 1.08rem;
  line-height: 1.45;
}

.blog-inline-next-card span:last-child {
  color: var(--tyt-body);
  line-height: 1.65;
}

.blog-inline-next-category {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--md-secondary);
}

.category-hub-wrapper,
.related-posts-wrapper {
  padding: 1.25rem;
}

@media (min-width: 768px) {

  .category-hub-wrapper,
.related-posts-wrapper {
    padding: 1.5rem;
  }
}

.category-hub-wrapper,
.related-posts-wrapper {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
  box-shadow: none;
}

.category-hub-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {

  .category-hub-wrapper {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.category-hub-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 1024px) {

  .category-hub-copy {
    grid-column: span 5 / span 5;
  }
}

.category-hub-panel {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {

  .category-hub-panel {
    grid-column: span 7 / span 7;
  }
}

.category-hub-eyebrow,
.related-posts-eyebrow,
.category-hub-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--md-primary);
}

.category-hub-featured {
  margin-top: 0.25rem;
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {

  .category-hub-featured {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.category-hub-featured {
  color: var(--tyt-ink);
}

.category-hub-focus-list {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-hub-focus-list span {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  border-radius: var(--tyt-radius-md);
  color: #6e4b35;
  background: rgba(250, 249, 245, 0.78);
  border: 1px solid var(--md-outline);
}

.category-hub-latest {
  margin-top: 0.5rem;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0px;
}

.category-hub-latest a,
.category-hub-featured:hover {
  color: var(--md-primary);
}

/* Category archive hub: a compact editorial orientation strip. */
.category-page-hub-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  overflow: hidden;
  padding: 1.2rem 1.3rem 1.25rem;
  border-color: rgba(165, 214, 167, 0.7);
  background: #fffdf8;
}

.category-page-hub-wrapper::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  background: var(--tyt-highlight);
  content: "";
}

.category-page-hub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.category-page-hub-wrapper .category-hub-copy,
.category-page-hub-wrapper .category-hub-panel {
  grid-column: auto;
}

.category-page-hub-wrapper .category-hub-copy {
  display: block;
}

.category-page-hub-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.category-page-hub-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(20, 20, 19, 0.06);
  border-radius: 1.05rem 1.05rem 1.05rem 0.35rem;
}

.category-page-hub-icon-mint {
  background: #e3f3e4;
  color: #397942;
}

.category-page-hub-icon-butter {
  background: #fff0c9;
  color: #9a6815;
}

.category-page-hub-icon-lavender {
  background: #e9e4f5;
  color: #65539a;
}

.category-page-hub-icon-peach {
  background: #f6e2db;
  color: #a75f45;
}

.category-page-hub-title-row h2 {
  margin-top: 0.18rem;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.12;
}

.category-page-hub-label {
  margin-top: 0.28rem;
  color: var(--md-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-page-hub-intro {
  max-width: 68ch;
  margin-top: 0.85rem;
  color: var(--tyt-body);
  line-height: 1.65;
}

.category-page-hub-count {
  flex-shrink: 0;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(165, 214, 167, 0.58);
  border-radius: var(--md-radius-chip);
  background: var(--tyt-primary-soft);
  color: var(--tyt-primary-active);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.category-page-hub-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding-top: 1rem;
  border-top: 1px solid var(--md-outline);
}

.category-page-hub-featured {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.52rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--md-primary);
  border-radius: 0 var(--tyt-radius-md) var(--tyt-radius-md) 0;
  background: var(--tyt-primary-soft);
  text-decoration: none;
  transition:
    background-color 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard),
    transform 0.18s var(--md-easing-standard);
}

.category-page-hub-featured:hover {
  transform: translateX(2px);
  border-color: var(--tyt-primary-active);
  background: #e3f3e4;
}

.category-page-hub-featured:focus-visible {
  outline: 3px solid rgba(165, 214, 167, 0.58);
  outline-offset: 3px;
}

.category-page-hub-featured-title {
  color: var(--tyt-ink);
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  font-weight: 700;
  line-height: 1.42;
}

.category-page-hub-featured-action {
  color: var(--md-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.category-page-hub-focus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.4rem;
  padding: 0;
  list-style: none;
}

.category-page-hub-focus-list li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: baseline;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--md-outline);
  color: var(--tyt-body);
  font-size: 0.92rem;
  line-height: 1.45;
}

.category-page-hub-focus-list li > span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.category-page-hub-focus-list li:first-child {
  border-top: 1px solid var(--md-outline);
}

.category-page-hub-focus-number {
  color: var(--md-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.related-posts-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.related-posts-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-posts-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {

  .related-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.related-post-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--tyt-radius-md);
  background: #fffdf8;
  border: 1px solid var(--md-outline);
  transition:
    transform 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard),
    box-shadow 0.18s var(--md-easing-standard);
}

.related-post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 214, 167, 0.78);
  box-shadow: 0 8px 16px rgba(73, 47, 30, 0.08);
}

.related-post-card h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--tyt-ink);
  font-family: var(--tyt-display-font);
  font-weight: 400;
}

.related-post-card p {
  color: var(--tyt-body);
  line-height: 1.55;
}

.related-post-category,
.related-post-meta {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: var(--md-on-surface-variant);
}

.related-post-category {
  color: var(--tyt-primary-active);
}

.imageContainer {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 60rem;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--md-outline);
}

@media (max-width: 1100px) {
  .category-page-hub-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-reading-progress {
    top: 4rem;
  }

  .category-page-hub-wrapper {
    gap: 1rem;
    padding: 1rem 0.95rem 1.05rem;
  }

  .category-page-hub-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .category-page-hub-count {
    align-self: flex-start;
  }

  .category-page-hub-title-row {
    gap: 0.65rem;
  }

  .category-page-hub-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .category-page-hub-title-row h2 {
    font-size: 1.55rem;
  }

  .category-page-hub-intro {
    margin-top: 0.7rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .category-page-hub-panel {
    gap: 0.9rem;
    padding-top: 0.9rem;
  }

  .category-page-hub-featured {
    padding: 0.78rem 0.85rem;
  }

  .category-page-hub-focus-list li {
    padding: 0.56rem 0;
    font-size: 0.88rem;
  }

  .post-card-wrapper {
    border-radius: 18px;
    padding: 0.82rem;
  }

  .post-card-title {
    font-size: 1.25rem;
  }

  .detail-post-infos h1 {
    line-height: 1.2;
  }

  .post-card-footer {
    flex-wrap: wrap;
  }

  .detail-post-content-wrapper {
    padding-top: 1rem;
  }
}

.pagination-wrapper {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-width: 3rem;
  border: 1px solid var(--md-outline-strong);
  border-radius: var(--tyt-radius-md);
  background: #fffdf8;
  color: var(--md-on-surface);
  font-weight: 600;
  transition:
    transform 0.18s var(--md-easing-standard),
    border-color 0.2s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard),
    color 0.2s var(--md-easing-standard),
    background-color 0.2s var(--md-easing-standard);
}

.pagination-item:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 214, 167, 0.82);
  color: var(--md-primary);
  box-shadow: 0 6px 12px rgba(73, 47, 30, 0.08);
}

.pagination-actived-item {
  background: var(--md-primary);
  color: #ffffff;
  border-color: var(--md-primary);
  box-shadow: none;
}

.info-card-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  box-shadow: none;
}
.info-card-image-wrapper {
  height: 5rem;
  width: 5rem;
  cursor: pointer;
  overflow: hidden;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .info-card-image-wrapper {
    height: 10rem;
    width: 10rem;
  }
}
.info-card-image-wrapper {
  border: 6px double var(--tyt-surface-strong);
}
.info-card-socials-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.page-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border-radius: var(--md-radius-chip);
  border: 1px solid var(--md-outline);
  padding: 0.42rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  transition:
    transform 0.18s var(--md-easing-standard),
    box-shadow 0.18s var(--md-easing-standard),
    border-color 0.2s var(--md-easing-standard),
    background-color 0.2s var(--md-easing-standard),
    color 0.2s var(--md-easing-standard);
}

.page-tag-chip-prefix {
  opacity: 0.66;
}

.page-tag-chip-primary {
  background: var(--tyt-surface-card);
  border-color: var(--md-outline);
  color: var(--tyt-body);
}

.page-tag-chip-secondary {
  background: #f1faf1;
  border-color: rgba(165, 214, 167, 0.55);
  color: var(--tyt-primary-active);
}

.page-tag-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(73, 47, 30, 0.08);
}

.page-tag-chip-primary:hover {
  background: var(--tyt-surface-strong);
  border-color: rgba(165, 214, 167, 0.62);
}

.page-tag-chip-secondary:hover {
  background: #dcefdc;
  border-color: rgba(165, 214, 167, 0.8);
}

.page-tag-chip-active {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(73, 47, 30, 0.08);
}

.page-tag-chip-primary.page-tag-chip-active {
  background: var(--tyt-surface-strong);
  border-color: rgba(165, 214, 167, 0.75);
  color: var(--tyt-ink);
}

.page-tag-chip-secondary.page-tag-chip-active {
  background: #dcefdc;
  border-color: rgba(165, 214, 167, 0.9);
}

.page-hot-course-line {
  padding-top: 0.15rem;
  min-width: 0;
}

.page-hot-course-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--md-primary);
  transition: filter 0.2s var(--md-easing-standard);
}

.page-hot-course-link:hover {
  filter: brightness(1.08);
}

.page-hot-course-icon {
  flex-shrink: 0;
  font-size: 1.05em;
}

.home-hot-course-aside {
  display: none;
  position: relative;
  margin-top: 1rem;
  padding: 1.05rem 1rem 1rem;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
  box-shadow: none;
  overflow: hidden;
}

.home-hot-course-aside::after {
  content: "";
  position: absolute;
  top: 0.68rem;
  right: 0.78rem;
  font-size: 0.92rem;
  color: #ce4b84;
  opacity: 0.85;
  animation: homeHotCourseSpark 2.6s ease-in-out infinite;
}

.home-hot-course-aside-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tyt-primary-active);
  border: 1px solid rgba(165, 214, 167, 0.55);
  background: #fffdf8;
}

.home-hot-course-aside-heading {
  margin-top: 0.58rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--tyt-ink);
}

.home-hot-course-aside-title-link {
  display: block;
  text-decoration: none;
}

.home-hot-course-aside-title-link:focus-visible {
  outline: 3px solid rgba(165, 214, 167, 0.55);
  outline-offset: 2px;
  border-radius: 12px;
}

.home-hot-course-aside-title {
  margin-top: 0.58rem;
  color: var(--tyt-ink);
  line-height: 1.52;
  font-size: 1.03rem;
  font-weight: 800;
  transition: color 0.2s var(--md-easing-standard);
}

.home-hot-course-aside-title-link:hover .home-hot-course-aside-title {
  color: var(--tyt-primary-active);
}

.home-hot-course-aside-benefits {
  list-style: none;
  padding: 0;
  margin: 0.74rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.home-hot-course-aside-benefits li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.85rem;
  line-height: 1.48;
  color: var(--tyt-body);
}

.home-hot-course-aside-benefits li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.58em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.35);
}

.home-hot-course-aside-cta {
  margin-top: 0.86rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.62rem 0.85rem;
  border-radius: var(--tyt-radius-md);
  border: 1px solid var(--md-primary);
  color: #ffffff;
  font-weight: 600;
  background: var(--md-primary);
  box-shadow: none;
  text-decoration: none;
  transition:
    transform 0.18s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard),
    filter 0.2s var(--md-easing-standard);
}

.home-hot-course-aside-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 8px 16px rgba(63, 127, 69, 0.14);
}

.home-hot-course-aside-cta:focus-visible {
  outline: 3px solid rgba(165, 214, 167, 0.5);
  outline-offset: 2px;
}

/* Service conversion card */
.service-cta-section {
  grid-column: span 12 / span 12;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (min-width: 768px) {

  .service-cta-section {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.service-cta-card {
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px dashed rgba(63, 127, 69, 0.42);
  border-radius: var(--tyt-radius-xl);
  background: #dcefdc;
  color: #29452d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 0 28px rgba(63, 127, 69, 0.08);
  text-decoration: none;
  transition:
    transform 0.2s var(--md-easing-standard),
    border-color 0.2s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard);
  isolation: isolate;
}

.service-cta-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px dashed rgba(255, 255, 255, 0.62);
  border-radius: calc(var(--tyt-radius-xl) - 0.25rem);
  transform: rotate(-0.12deg);
  pointer-events: none;
}

.service-cta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 127, 69, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    inset 0 0 28px rgba(63, 127, 69, 0.1),
    0 14px 28px rgba(63, 127, 69, 0.12);
}

.service-cta-card:focus-visible {
  outline: 3px solid rgba(63, 127, 69, 0.42);
  outline-offset: 3px;
}

.service-cta-intro,
.service-cta-services {
  position: relative;
  z-index: 1;
}

.service-cta-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.service-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--tyt-primary-active);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-cta-kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(63, 127, 69, 0.25);
  border-radius: 999px;
  background: #fffdf8;
}

.service-cta-intro h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: #29452d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.service-cta-copy {
  max-width: 31rem;
  margin-top: 0.7rem;
  color: var(--tyt-body);
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: 1.05rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid currentColor;
  color: var(--tyt-primary-active);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-cta-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-left: clamp(0rem, 2vw, 1.2rem);
}

.service-cta-service {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.92rem 0;
}

.service-cta-service + .service-cta-service {
  border-top: 1px solid rgba(63, 127, 69, 0.18);
}

.service-cta-service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border: 2px solid rgba(208, 155, 57, 0.62);
  border-radius: 999px;
  background: #fff8df;
  color: #9a6a17;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-cta-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  flex-shrink: 0;
  border: 2px solid rgba(63, 127, 69, 0.28);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.38);
  color: #376f3e;
  box-shadow: 0 2px 0 rgba(63, 127, 69, 0.1);
}

.service-cta-service-copy {
  min-width: 0;
}

.service-cta-service-copy h3 {
  color: #29452d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem 0.65rem;
  margin-top: 0.38rem;
}

.service-cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  color: #3d5d40;
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-cta-points svg {
  flex-shrink: 0;
  color: #376f3e;
}

.service-cta-card-compact {
  grid-template-columns: minmax(13rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.2rem;
  padding: 1.1rem 1.25rem;
}

.service-cta-card-compact .service-cta-intro h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.service-cta-card-compact .service-cta-copy {
  font-size: 0.88rem;
}

.service-cta-card-compact .service-cta-service {
  padding: 0.72rem 0;
}

@media (max-width: 767px) {
  .service-cta-card,
  .service-cta-card-compact {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.15rem 1rem 1.15rem 1.15rem;
    border-radius: var(--tyt-radius-lg);
  }

  .service-cta-intro h2 {
    font-size: 1.85rem;
  }

  .service-cta-copy {
    font-size: 0.92rem;
  }

  .service-cta-action {
    margin-top: 0.9rem;
    font-size: 0.88rem;
  }

  .service-cta-services {
    padding-left: 0;
  }

  .service-cta-service {
    gap: 0.58rem;
    padding: 0.75rem 0;
  }

  .service-cta-service-number {
    width: 2rem;
    height: 2rem;
  }

  .service-cta-service-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .service-cta-service-copy h3 {
    font-size: 0.94rem;
  }

  .service-cta-points span {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-cta-card {
    transition: none;
  }
}

/* BreadScrumb */
.breadscrumb-wrapper {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--tyt-muted);
  flex-wrap: wrap;
}

.breadscrumb-wrapper > * {
  border-radius: 0.75rem;
  border-right-width: 2px;
  padding-right: 0.75rem;
}

.breadscrumb-wrapper > *:last-child {
  border-right-width: 0px;
}

.breadscrumb-wrapper > * {
  border-color: var(--md-outline);
  transition: color 0.2s var(--md-easing-standard);
}

.breadscrumb-wrapper > *:hover {
  color: var(--md-primary);
}

.facebook-share-icon {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  gap: 0.5rem;
  border-width: 1px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: var(--tyt-radius-md);
  background: var(--md-primary);
  border-color: var(--md-primary);
  color: #fffdf8;
  transition:
    transform 0.18s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard),
    background-color 0.2s var(--md-easing-standard),
    color 0.2s var(--md-easing-standard);
}

.facebook-share-icon:hover {
  background: #fffdf8;
  color: var(--md-primary);
  box-shadow: 0 8px 16px rgba(73, 47, 30, 0.08);
  transform: translateY(-1px);
}

.heart-share-icon {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  gap: 0.5rem;
  border-width: 1px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: var(--tyt-radius-md);
  background: #fffdf8;
  color: var(--tyt-primary-active);
  border-color: rgba(165, 214, 167, 0.55);
}

/* Nút */
.btn {
  width: 100%;
  border-width: 1px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  border-radius: var(--tyt-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.35;
  transition:
    transform 0.18s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard),
    background-color 0.2s var(--md-easing-standard),
    color 0.2s var(--md-easing-standard),
    border-color 0.2s var(--md-easing-standard);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-messenger {
  background: #fffdf8;
  color: var(--md-primary);
  border-color: rgba(165, 214, 167, 0.7);
}

.btn-messenger,
.btn-messenger * {
  color: var(--md-primary);
}

.btn-messenger:hover {
  background: var(--md-primary-soft);
  border-color: rgba(165, 214, 167, 0.85);
}

.btn-order {
  background: var(--md-primary);
  color: #ffffff;
  border-color: var(--md-primary);
  box-shadow: none;
}

.btn-order,
.btn-order * {
  color: #ffffff;
}

.btn-order:hover {
  background: var(--tyt-primary-active);
  border-color: var(--tyt-primary-active);
  box-shadow: 0 8px 16px rgba(63, 127, 69, 0.14);
}

/* Table of contents */
.toc-wrapper {
  width: 100%;
  padding: 1.25rem;
}
@media (min-width: 768px) {

  .toc-wrapper {
    padding: 1.5rem;
  }
}
.toc-wrapper {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
}

.toc-head-wrapper {
  margin-bottom: 1rem;
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.toc-head-wrapper button {
  border: 1px solid var(--md-outline-strong);
  background: var(--tyt-canvas);
  color: var(--md-on-surface-variant);
  border-radius: var(--tyt-radius-md);
  padding: 0.26rem 0.8rem;
  font-size: 0.85rem;
  transition:
    border-color 0.18s var(--md-easing-standard),
    color 0.18s var(--md-easing-standard),
    background-color 0.18s var(--md-easing-standard);
}

.toc-head-wrapper button:hover {
  color: var(--md-primary);
  border-color: rgba(165, 214, 167, 0.8);
  background: #fffdf8;
}

.toc-list-wrapper {
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0px;
}

@media (min-width: 768px) {

  .toc-list-wrapper {
    gap: 0.5rem;
  }
}

.toc-list-wrapper[hidden] {
  display: none;
}

.toc-list-item {
  line-height: 1.375;
}

.toc-list-item a {
  color: var(--tyt-body);
  text-decoration: none;
}

.toc-list-item a:hover {
  color: var(--md-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.toc-list-item-sub {
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--md-on-surface-variant);
}

/* Tiêu đề trong markdown */
.deco-heading {
  border-left: 3px solid var(--md-primary);
  padding-left: 0.7rem;
  scroll-margin-top: 6.8rem;
}

@media (max-width: 767px) {
  .page-tag-chip {
    font-size: 0.72rem;
    padding: 0.42rem 0.7rem;
  }

  .page-hot-course-link {
    font-size: 0.82rem;
  }

  .deco-heading {
    scroll-margin-top: 5.25rem;
  }
}

@media (min-width: 1024px) {
  .page-hot-course-line {
    display: none;
  }

  .home-hot-course-aside {
    display: block;
  }
}

@keyframes homeHotCourseSpark {
  0%,
  100% {
    transform: scale(0.88) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08) rotate(8deg);
    opacity: 1;
  }
}

@keyframes hotCourseGradientRun {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes hotCoursePulseSoft {
  0%,
  100% {
    opacity: 0.86;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hot-course-link {
    animation: none;
  }

  .home-hot-course-aside::after {
    animation: none;
  }
}

.courses-wrapper {
  grid-column: span 12 / span 12;
}

.one-course-wrapper {
  grid-column: span 4 / span 4;
  content-visibility: auto;
  contain-intrinsic-size: 0 32rem;
}

.courses-infos-wrapper {
  margin-bottom: 1rem;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {

  .courses-infos-wrapper {
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.courses-infos-wrapper {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
  box-shadow: none;
}

.course-search-input {
  width: min(100%, 36rem);
}

.courses-list-grid {
  margin-bottom: 1rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {

  .courses-list-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {

  .courses-list-grid {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.courses-list-grid {
  align-content: start;
}

.course-card-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-card-wrapper {
    padding: 1.25rem;
  }
}

.course-card-wrapper {
  border-radius: var(--md-radius-card);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  box-shadow: none;
  min-width: 0;
  transition:
    transform 0.2s var(--md-easing-standard),
    border-color 0.2s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard);
}

.course-card-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 214, 167, 0.75);
  box-shadow: 0 8px 18px rgba(73, 47, 30, 0.08);
}

.course-card-wrapper:hover .post-card-title {
  color: var(--tyt-primary-active);
}

.course-card-wrapper:hover .post-card-image-wrapper img {
  transform: scale(1.04);
}

.course-card-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.course-infos-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-infos-wrapper {
    width: 90%;
  }
}

@media (min-width: 1024px) {

  .course-infos-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.course-infos-wrapper {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
}

.course-features {
  grid-column: span 2 / span 2;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

.course-feature {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.course-price-item {
  list-style: none;
  margin-top: 0.25rem;
}

.course-feature-price {
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--tyt-primary-active);
}

.course-feature-price-sub {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  text-decoration-line: line-through;
  color: var(--md-on-surface-variant);
}

.course-actions {
  grid-column: span 1 / span 1;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.course-actions .btn.btn-order {
  background: var(--md-primary);
  border-color: var(--md-primary);
  color: #ffffff !important;
  box-shadow: none;
  font-weight: 700;
}

.course-actions .btn.btn-order:hover {
  background: var(--tyt-primary-active);
  border-color: var(--tyt-primary-active);
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(63, 127, 69, 0.14);
}

.course-actions .btn.btn-order span {
  color: inherit;
}

.course-image-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-card);
}

.course-image-wrapper p {
  margin-top: 0.6rem;
  color: var(--md-on-surface-variant);
}

.course-payment-wrapper {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
}

.course-payment-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {

  .course-payment-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.course-payment-bank-info {
  grid-column: span 5 / span 5;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0px;
  padding-right: 0px;
}

@media (min-width: 768px) {

  .course-payment-bank-info {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.course-payment-contact {
  grid-column: span 4 / span 4;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {

  .course-payment-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.course-payment-contact {
  border-top: 1px solid var(--md-outline);
  border-bottom: 1px solid var(--md-outline);
}

@media (min-width: 768px) {
  .course-payment-contact {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--md-outline);
    border-right: 1px solid var(--md-outline);
  }
}

.course-payment-confirm {
  grid-column: span 3 / span 3;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0px;
  padding-right: 0px;
}

@media (min-width: 768px) {

  .course-payment-confirm {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.bank-info-card {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--tyt-radius-lg);
  background: var(--tyt-surface-soft);
  border: 1px solid var(--md-outline);
}

/* Course detail landing */
.course-detail-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {

  .course-detail-page {
    padding-bottom: 2rem;
  }
}

.course-detail-page .btn.btn-order {
  background: var(--md-primary);
  border-color: var(--md-primary);
  color: #ffffff !important;
  border-radius: 12px;
  box-shadow: none;
}

.course-detail-page .btn.btn-order:hover {
  background: var(--tyt-primary-active);
  border-color: var(--tyt-primary-active);
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(63, 127, 69, 0.14);
}

.course-detail-page .btn.btn-order span,
.course-detail-page .btn.btn-order svg {
  color: #ffffff !important;
}

.course-landing-hero {
  display: grid;
  gap: 1.25rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-landing-hero {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {

  .course-landing-hero {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 2rem;
  }
}

.course-landing-hero {
  border-radius: var(--tyt-radius-xl);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
  box-shadow: none;
}

.course-landing-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {

  .course-landing-main {
    grid-column: span 8 / span 8;
  }
}

.course-landing-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--md-primary);
}

.course-landing-excerpt {
  max-width: 72ch;
}

.course-outcomes-surface {
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-outcomes-surface {
    padding: 1.25rem;
  }
}

.course-outcomes-surface {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
}

.course-outcomes-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {

  .course-outcomes-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.course-outcomes-title {
  color: var(--tyt-ink);
}

.course-outcomes-list {
  margin-top: 0.75rem;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0px;
}

.course-outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
  color: var(--tyt-body);
}

.course-outcomes-list svg {
  color: var(--md-primary);
  margin-top: 0.18rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {

  .course-cta-column {
    grid-column: span 4 / span 4;
  }
}

.course-cta-card {
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-cta-card {
    padding: 1.25rem;
  }
}

.course-cta-card {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid rgba(165, 214, 167, 0.66);
  background: #fffdf8;
  box-shadow: 0 8px 18px rgba(73, 47, 30, 0.08);
}

@media (min-width: 1024px) {
  .course-cta-card {
    position: sticky;
    top: 104px;
  }
}

.course-cta-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--md-primary);
}

.course-price-stack {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.course-hero-price {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {

  .course-hero-price {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.course-hero-price {
  color: var(--tyt-primary-active);
}

.course-hero-price-sub {
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration-line: line-through;
  color: var(--md-on-surface-variant);
}

.course-meta-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.course-meta-grid span {
  color: var(--md-on-surface-variant);
}

.course-meta-grid strong {
  color: var(--tyt-ink);
  font-weight: 700;
}

.course-cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-cta-primary-btn,
.course-cta-secondary-btn {
  width: 100%;
}

.course-cta-actions > * {
  width: 100%;
  min-width: 0;
}

.course-risk-reducer {
  margin-top: 1rem;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--tyt-body);
}

.course-risk-reducer li {
  position: relative;
  padding-left: 1.25rem;
}

.course-risk-reducer li::before {
  content: '';
  position: absolute;
  left: 0.28rem;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--md-success);
  box-shadow: 0 0 0 3px rgba(93, 155, 99, 0.15);
}

.course-content-shell {
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-content-shell {
    padding: 1.5rem;
  }
}

.course-content-shell {
  border-radius: var(--tyt-radius-xl);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
  box-shadow: none;
}

.course-feature-image {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--md-outline);
  margin-bottom: 1.1rem;
}

.course-reading-prose {
  max-width: 74ch;
  margin-top: 1rem;
}

.course-reading-prose h1 {
  margin-top: 1.1rem;
  margin-bottom: 0.75rem;
}

.course-reading-prose p {
  line-height: 1.8;
}

.course-reading-prose p + p {
  margin-top: 0.95rem;
}

.course-reading-prose h2,
.course-reading-prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.55rem;
}

.course-reading-prose .course-image-wrapper,
.course-reading-prose blockquote,
.course-reading-prose pre {
  margin-top: 1rem;
}

.course-reading-prose .course-image-wrapper {
  margin-top: 1.35rem;
  margin-bottom: 1.45rem;
}

.course-reading-prose .markdown-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.18rem 0.62rem;
  margin: 0 0.08rem;
  border-radius: 999px;
  border: 1px solid rgba(165, 214, 167, 0.55);
  background: #f1faf1;
  color: var(--tyt-primary-active) !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1.45;
  transition:
    border-color 0.18s var(--md-easing-standard),
    background-color 0.18s var(--md-easing-standard),
    color 0.18s var(--md-easing-standard);
}

.course-reading-prose .markdown-link-badge::after {
  content: "↗";
  font-size: 0.8em;
  opacity: 0.65;
}

.course-reading-prose .markdown-link-badge:hover {
  background: #dcefdc;
  border-color: rgba(165, 214, 167, 0.8);
  color: var(--tyt-primary-active) !important;
}

.course-reading-prose .md-list {
  margin: 0.85rem 0 1.05rem;
}

.course-reading-prose .md-list-ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.course-reading-prose .md-list-ul > .md-list-item {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.75;
}

.course-reading-prose .md-list-ul > .md-list-item::before {
  content: '';
  position: absolute;
  left: 0.34rem;
  top: 0.68em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.35);
}

.course-reading-prose .md-list-ol {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.course-reading-prose .md-list-ol > .md-list-item {
  line-height: 1.75;
}

.course-reading-prose .md-list-ol > .md-list-item::marker {
  color: var(--md-primary);
  font-weight: 700;
}

.course-reading-prose .course-related-link-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: min(100%, 24rem);
  margin-top: 0.3rem;
  padding: 0.8rem 0.95rem;
  border-radius: var(--tyt-radius-lg);
  border: 1px solid rgba(165, 214, 167, 0.58);
  background: #f1faf1;
  box-shadow: none;
  text-decoration: none !important;
  transition:
    transform 0.18s var(--md-easing-standard),
    box-shadow 0.18s var(--md-easing-standard),
    border-color 0.18s var(--md-easing-standard);
}

.course-reading-prose .course-related-link-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 214, 167, 0.8);
  box-shadow: 0 8px 16px rgba(73, 47, 30, 0.08);
}

.course-related-link-badge-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  color: var(--tyt-primary-active);
  background: #dcefdc;
  border: 1px solid rgba(165, 214, 167, 0.55);
}

.course-related-link-badge-title {
  color: var(--tyt-ink);
  font-weight: 700;
  line-height: 1.55;
}

.course-jump-cta {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-jump-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
  }
}

.course-jump-cta {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid rgba(165, 214, 167, 0.55);
  background: #f1faf1;
  box-shadow: none;
}

.course-jump-cta-copy {
  max-width: 40rem;
}

.course-jump-cta-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tyt-primary-active);
}

.course-jump-cta-title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {

  .course-jump-cta-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.course-jump-cta-title {
  color: var(--tyt-ink);
}

.course-jump-cta-sub {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 768px) {

  .course-jump-cta-sub {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.course-jump-cta-sub {
  color: var(--tyt-body);
}

.course-jump-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {

  .course-jump-cta-actions {
    align-items: flex-end;
  }
}

.course-jump-cta-actions {
  min-width: 0;
}

.course-jump-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  border-radius: var(--tyt-radius-md);
  min-width: min(100%, 15rem);
  background: var(--md-primary);
  border: 1px solid var(--md-primary);
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none;
  transition:
    transform 0.18s var(--md-easing-standard),
    box-shadow 0.18s var(--md-easing-standard),
    filter 0.18s var(--md-easing-standard);
}

.course-jump-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(63, 127, 69, 0.14);
  filter: saturate(1.05);
}

.course-jump-cta-button span,
.course-jump-cta-button svg {
  color: inherit !important;
}

.course-jump-cta-price {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--tyt-primary-active);
}

.course-inline-cta {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-inline-cta {
    padding: 1.25rem;
  }
}

.course-inline-cta {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid rgba(165, 214, 167, 0.66);
  background: var(--tyt-surface-soft);
}

.course-inline-cta-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {

  .course-inline-cta-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.course-inline-cta-title {
  color: var(--tyt-ink);
}

.course-inline-cta-sub {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 768px) {

  .course-inline-cta-sub {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.course-inline-cta-sub {
  color: var(--tyt-body);
}

.course-inline-cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {

  .course-inline-cta-actions {
    flex-direction: row;
  }
}

.course-inline-cta-actions .btn {
  width: 100%;
}

.course-inline-cta-actions > * {
  min-width: 0;
}

.course-faq-section {
  margin-top: 2rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-faq-section {
    padding: 1.25rem;
  }
}

.course-faq-section {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
}

.course-faq-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-faq-item {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: var(--tyt-radius-md);
  border: 1px solid var(--md-outline);
  background: #fffdf8;
}

.course-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--tyt-ink);
}

.course-faq-item p {
  margin-top: 0.7rem;
  color: var(--tyt-body);
  line-height: 1.7;
}

.course-proof-mini {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-proof-mini {
    padding: 1.25rem;
  }
}

.course-proof-mini {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background: var(--tyt-surface-soft);
}

.course-proof-mini blockquote {
  margin: 0;
}

.course-proof-author {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--tyt-muted);
}

.course-bottom-cta {
  margin-top: 2rem;
  padding: 1rem;
}

@media (min-width: 768px) {

  .course-bottom-cta {
    padding: 1.5rem;
  }
}

.course-bottom-cta {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid rgba(165, 214, 167, 0.66);
  background: var(--tyt-surface-dark);
  color: #faf9f5;
}

.course-bottom-cta-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {

  .course-bottom-cta-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.course-bottom-cta-title {
  color: #faf9f5;
}

.course-bottom-cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {

  .course-bottom-cta-actions {
    flex-direction: row;
  }
}

.course-bottom-cta-actions .btn {
  width: 100%;
}

.course-bottom-cta-actions > * {
  min-width: 0;
}

.course-mobile-sticky-cta {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.75rem;
}

@media (min-width: 1024px) {

  .course-mobile-sticky-cta {
    display: none;
  }
}

.course-mobile-sticky-cta {
  background: rgba(250, 249, 245, 0.95);
  border-top: 1px solid var(--md-outline);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 25;
}

.course-mobile-sticky-cta .btn {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.course-mobile-sticky-cta > * {
  min-width: 0;
}

@media (max-width: 1023px) {
  .course-content-shell {
    padding-bottom: 1.2rem;
  }
}

.about-content-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0px;
}@media (min-width: 768px) {.about-content-wrapper {
    padding: 1.5rem;
  }
}.about-content-wrapper {
  border-radius: var(--tyt-radius-lg);
  background: #fffdf8;
  border: 1px solid var(--md-outline);
}
.about-content-wrapper a {
  color: var(--md-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-content-wrapper .avatar-wrapper {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 9rem;
  overflow: hidden;
  border-radius: 9999px;
}
@media (min-width: 768px) {.about-content-wrapper .avatar-wrapper {
    width: 12rem;
  }
}
.about-content-wrapper .avatar-wrapper {
  aspect-ratio: 1 / 1;
  border: 6px double var(--tyt-surface-strong);
}
.about-content-wrapper .image-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {.about-content-wrapper .image-wrapper {
    width: 75%;
  }
}
.about-content-wrapper .image-wrapper {
  border-radius: var(--tyt-radius-lg);
  border: 1px solid var(--md-outline);
  background-color: var(--tyt-surface-card);
}

.about-actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.error-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}
/*
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Roboto, Arial, Helvetica, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.flex {
  display: flex;
}
.hidden {
  display: none;
}
.shrink-0 {
  flex-shrink: 0;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.text-center {
  text-align: center;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.text-mau2light {
  --tw-text-opacity: 1;
  color: rgb(233 102 160 / var(--tw-text-opacity));
}
.text-mauTextPhu {
  --tw-text-opacity: 1;
  color: rgb(113 128 150 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto/Roboto-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto/Roboto-Italic-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --tyt-canvas: #faf9f5;
  --tyt-surface-soft: #f5f0e8;
  --tyt-surface-card: #efe9de;
  --tyt-surface-strong: #e8e0d2;
  --tyt-surface-dark: #181715;
  --tyt-surface-dark-elevated: #252320;
  --tyt-ink: #141413;
  --tyt-body: #3d3d3a;
  --tyt-body-strong: #252523;
  --tyt-muted: #6c6a64;
  --tyt-muted-soft: #8e8b82;
  --tyt-hairline: #e6dfd8;
  --tyt-hairline-soft: #ebe6df;
  --tyt-highlight: #a5d6a7;
  --tyt-primary: var(--tyt-highlight);
  --tyt-primary-active: #3f7f45;
  --tyt-primary-soft: #edf7ed;
  --tyt-accent-amber: #6fa977;
  --tyt-accent-teal: #4f9f90;
  --tyt-success: #5d9b63;
  --tyt-warning: #b88216;
  --tyt-error: #c64545;
  --tyt-display-font: Georgia, "Times New Roman", serif;
  --tyt-body-font: "Roboto", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tyt-radius-sm: 6px;
  --tyt-radius-md: 8px;
  --tyt-radius-lg: 12px;
  --tyt-radius-xl: 16px;

  --md-surface: var(--tyt-canvas);
  --md-surface-container: #fffdf8;
  --md-surface-container-soft: var(--tyt-surface-soft);
  --md-primary: var(--tyt-primary-active);
  --md-primary-soft: var(--tyt-primary-soft);
  --md-secondary: var(--tyt-accent-amber);
  --md-secondary-soft: #e8f4e8;
  --md-outline: var(--tyt-hairline);
  --md-outline-strong: #d7cbbb;
  --md-success: var(--tyt-success);
  --md-warning: var(--tyt-warning);
  --md-error: var(--tyt-error);
  --md-on-surface: var(--tyt-body);
  --md-on-surface-variant: var(--tyt-muted);
  --md-radius-card: var(--tyt-radius-lg);
  --md-radius-chip: 999px;
  --md-easing-standard: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 768px) {

  body {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

body {
  background: var(--tyt-canvas);
  color: var(--md-on-surface);
  font-family: var(--tyt-body-font);
}

h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {

  h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

h2 {
  color: var(--tyt-ink);
  font-family: var(--tyt-display-font);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 768px) {

  h1 {
    font-size: 3rem;
    line-height: 1;
  }
}

h1 {
  color: var(--tyt-ink);
  font-family: var(--tyt-display-font);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.text-note {
  font-size: 1rem;
  line-height: 1.5rem;
  font-style: italic;
  color: var(--md-on-surface-variant);
}

.link-item {
  text-decoration-line: none;
  color: var(--md-on-surface);
  transition: color 0.2s var(--md-easing-standard);
}

.link-item:hover {
  color: var(--md-primary);
}

a {
  color: inherit;
  transition:
    color 0.2s var(--md-easing-standard),
    opacity 0.2s var(--md-easing-standard);
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-color: var(--md-outline);
  opacity: 0.85;
}

button,
input,
textarea,
select {
  font: inherit;
}

input {
  width: min(100%, 36rem);
  border: 1px solid var(--md-outline-strong);
  border-radius: var(--tyt-radius-md);
  background: var(--md-surface-container);
  color: var(--md-on-surface);
  padding: 0.68rem 1rem;
  outline: none;
  transition:
    border-color 0.2s var(--md-easing-standard),
    box-shadow 0.2s var(--md-easing-standard),
    background-color 0.2s var(--md-easing-standard);
}

input::-moz-placeholder {
  color: var(--tyt-muted-soft);
}

input::placeholder {
  color: var(--tyt-muted-soft);
}

input:hover {
  border-color: #c4b7a5;
  background: var(--md-surface-container-soft);
}

input:focus-visible {
  border-color: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.35);
  background: #fffdf8;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(165, 214, 167, 0.55);
  outline-offset: 2px;
  border-radius: var(--tyt-radius-md);
}

* {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

blockquote {
  padding: 1rem;
  font-style: italic;
  background: var(--tyt-surface-soft);
  border-left: 4px solid var(--md-primary);
  border-radius: var(--tyt-radius-lg);
}

ul {
  padding-left: 1rem;
}

ol {
  padding-left: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--tyt-body-strong);
}

::-moz-selection {
  background: #dcefdc;
  color: var(--tyt-ink);
}

::selection {
  background: #dcefdc;
  color: var(--tyt-ink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.yt-lite {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: 50%;
  background-size: cover;
  cursor: pointer;
}

.yt-lite.lyt-activated::before {
  content: "";
  box-sizing: content-box;
  display: block;
  position: absolute;
  top: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  background-position: top;
  background-repeat: repeat-x;
  height: 60px;
  padding-bottom: 50px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.yt-lite::after {
  content: "";
  display: block;
  padding-bottom: var(--aspect-ratio);
}
.yt-lite > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.yt-lite > .lty-playbtn {
  width: 70px;
  height: 46px;
  background-color: #212121;
  z-index: 1;
  opacity: 0.8;
  border-radius: 14%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.yt-lite:hover > .lty-playbtn {
  background-color: red;
  opacity: 1;
}
.yt-lite > .lty-playbtn::before {
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 11px 0 11px 19px;
}
.yt-lite > .lty-playbtn,
.yt-lite > .lty-playbtn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.yt-lite.lyt-activated {
  cursor: unset;
}
.yt-lite.lyt-activated::before,
.yt-lite.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

