/* TMM Brand UI Layer
 * Keeps Bopea structure but enforces AGENTS.md brand tokens and local fonts.
 */

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/fonts/Poppins-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Apple Garamond";
  src: url("/wp-content/uploads/fonts/AppleGaramond.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Apple Garamond";
  src: url("/wp-content/uploads/fonts/AppleGaramond-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Li Ador Noirrit";
  src: url("/wp-content/uploads/fonts/Ador%20Noirrit%20Web.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bornomala";
  src: url("/wp-content/uploads/fonts/Bornomala-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bornomala";
  src: url("/wp-content/uploads/fonts/Bornomala-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --tmm-white: #FFFFFF;
  --tmm-azure: #0066E0;
  --tmm-yellow: #FCD722;
  --tmm-royal: #0554C7;
  --tmm-ivory: #F5F1DC;
  --tmm-sky: #33C1FF;

  --tmm-space-xs: 0.5rem;
  --tmm-space-sm: 0.875rem;
  --tmm-space-md: 1.25rem;
  --tmm-space-lg: 1.875rem;
  --tmm-space-xl: 2.75rem;
  --tmm-radius-md: 12px;
  --tmm-shadow-soft: 0 14px 34px rgba(5, 84, 199, 0.12);
  --tmm-shadow-card: 0 10px 26px rgba(5, 84, 199, 0.1);

  /* Bopea variable overrides */
  --jl-main-color: var(--tmm-azure);
  --jl-bg-color: var(--tmm-white);
  --jl-txt-color: var(--tmm-royal);
  --jl-menu-bg: var(--tmm-white);
  --jl-menu-color: var(--tmm-royal);
  --jl-menu-hcolor: var(--tmm-azure);
  --jl-menu-ac-color: var(--tmm-yellow);
  --jl-sub-bg-color: var(--tmm-white);
  --jl-sub-menu-color: var(--tmm-royal);
  --jl-sub-item-bg: rgba(51, 193, 255, 0.2);
  --jl-single-link-color: var(--tmm-azure);
  --jl-single-link-hcolor: var(--tmm-royal);
  --jl-button-radius: 999px;
  --jl-btn-bg: var(--tmm-royal);
  --jl-border-rounded: 14px;
  --jl-top-rounded: 14px;
  --jl-body-font: "Poppins", "Segoe UI", sans-serif;
  --jl-title-font: "Poppins", "Segoe UI", sans-serif;
  --jl-menu-font: "Li Ador Noirrit", "Bornomala", sans-serif;
  --jl-body-font-weight: 400;
  --jl-title-font-weight: 800;
  --jl-menu-font-weight: 600;
  --jl-button-font-size: 0.95rem;
  --jl-button-font-weight: 600;
  --jl-button-transform: none;
  --jl-button-space: 0.02em;
}

body {
  background: var(--tmm-white);
  color: var(--tmm-royal);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
}

.tmm-page-preloader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.34s ease, visibility 0s linear 0.34s;
}

.tmm-page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tmm-page-preloader__logo-wrap {
  width: clamp(136px, 16vw, 220px);
  animation: tmm-preloader-heartbeat 2.1s ease-in-out infinite;
  transform-origin: center;
}

.tmm-page-preloader__logo {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

@keyframes tmm-preloader-heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  22% {
    transform: scale(1.04);
  }

  34% {
    transform: scale(1);
  }

  52% {
    transform: scale(1.08);
  }

  66% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tmm-page-preloader__logo-wrap {
    animation: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--jl-title-font);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--tmm-royal);
}

h1 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2rem); }

p,
li,
label {
  color: var(--tmm-royal);
  line-height: 1.68;
}

a {
  color: var(--tmm-azure);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--tmm-royal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--tmm-yellow);
  outline-offset: 2px;
}

.jlc-container {
  padding-right: clamp(14px, 2.4vw, 24px);
  padding-left: clamp(14px, 2.4vw, 24px);
}

.site-header.jl_base_menu,
.menu_sticky.stick,
#jl_sb_nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

/* Replace the theme header with the MU custom magazine header. */
header.jlc-hmain-w,
.jlc-stick-main-w,
.jl_blank_nav {
  display: none !important;
}

:root {
  --tmm-header-admin-offset: 0px;
  --tmm-header-space: 0px;
}

body.admin-bar {
  --tmm-header-admin-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --tmm-header-admin-offset: 46px;
  }
}

.tmm-site-header {
  position: fixed;
  top: var(--tmm-header-admin-offset);
  left: 0;
  right: 0;
  z-index: 9998;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(5, 84, 199, 0.15);
  box-shadow: 0 4px 14px rgba(5, 84, 199, 0.08);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.tmm-site-header.is-animated {
  transition: transform 0.32s ease, opacity 0.32s ease !important;
}

.tmm-site-header.is-hiding {
  transition: transform 0.32s ease, opacity 0.32s ease !important;
}

body {
  padding-top: var(--tmm-header-space, 0px);
}

html.tmm-search-open,
body.tmm-search-open {
  overflow: hidden;
}

.tmm-site-header.is-floating {
  box-shadow: 0 12px 30px rgba(5, 84, 199, 0.14);
}

.tmm-site-header.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.tmm-site-header.is-hidden {
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.tmm-site-header__inner {
  max-width: var(--jl-main-width, 1260px);
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 10px;
  position: relative;
  overflow: visible;
  transition: padding-top 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.tmm-site-header__notice {
  margin-top: -8px;
  margin-bottom: 8px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding: 4px 12px;
  border-radius: 0;
  background: #03399ef2;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(252, 215, 34, 0.32);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.tmm-site-header__notice-scroll {
  display: flex;
  justify-content: center;
  overflow: visible;
  scrollbar-width: none;
}

.tmm-site-header__notice-scroll::-webkit-scrollbar {
  display: none;
}

.tmm-site-header__notice-text {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  font-family: "Li Ador Noirrit", "Bornomala", "Poppins", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  color: rgba(255, 255, 255, 0.96);
}

.tmm-site-header__notice-lead {
  color: rgba(255, 255, 255, 0.96);
}

.tmm-site-header__notice-lead::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #FCD722;
  box-shadow: 0 0 0 3px rgba(252, 215, 34, 0.24);
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
}

.tmm-site-header__notice-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.tmm-site-header__notice-mobile {
  display: none;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Poppins", "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.tmm-site-header__notice-mobile:hover,
.tmm-site-header__notice-mobile:focus-visible {
  color: #FCD722;
}

.tmm-site-header__notice-chip {
  display: inline;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #FCD722;
  font-family: "Li Ador Noirrit", "Bornomala", "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.18s ease;
}

.tmm-site-header__notice-chip:hover {
  color: #fff;
}

.tmm-site-header__notice-cta {
  color: #0554C7;
  background: #FCD722;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font-family: "Li Ador Noirrit", "Bornomala", "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 7px 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.tmm-site-header__notice-cta:hover,
.tmm-site-header__notice-cta:focus-visible {
  color: #0554C7;
  transform: translateY(-1px);
  box-shadow: 0 9px 16px rgba(0, 0, 0, 0.22);
  filter: brightness(1.03);
}

.tmm-site-header__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "main logo tools";
  align-items: center;
  column-gap: 18px;
  row-gap: 8px;
  position: relative;
  z-index: 8;
}

.tmm-site-header__main-nav {
  grid-area: main;
  min-width: 0;
}

.tmm-main-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  gap: 6px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
  white-space: nowrap;
}

.tmm-main-menu--left {
  gap: 2px 6px;
  overflow: visible;
}

.tmm-site-header__main-nav--left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tmm-site-header__main-nav--left > .tmm-main-menu--left {
  flex: 1 1 auto;
  min-width: 0;
}

.tmm-topics-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 40px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: #FFFFFF !important;
  color: #000000 !important;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif !important;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: none !important;
  transform: none !important;
  white-space: nowrap;
  margin-left: 0;
  flex: 0 0 auto;
  transition: color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.tmm-mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #000000 !important;
  cursor: pointer;
  box-shadow: none !important;
  transform: none !important;
}

.tmm-mobile-menu-toggle__bars {
  display: inline-grid;
  gap: 3px;
}

.tmm-mobile-menu-toggle__bars span {
  display: block;
  width: 14px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
}

.tmm-site-header.is-mobile-menu-open .tmm-mobile-menu-toggle {
  color: var(--tmm-royal) !important;
}

.tmm-topics-toggle__bars {
  display: inline-grid;
  gap: 3px;
}

.tmm-topics-toggle__bars span {
  display: block;
  width: 13px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
}

.tmm-topics-toggle:hover,
.tmm-topics-toggle:focus-visible {
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.tmm-site-header.is-topics-open .tmm-topics-toggle {
  color: #000000 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.tmm-main-menu > li {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
}

.tmm-main-menu--right {
  justify-content: flex-end;
  gap: 6px 12px;
}

.tmm-main-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #000000 !important;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif !important;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-decoration: none;
  padding: 6px 2px;
}

.tmm-main-menu > li > a .tmm-menu-label {
  font-size: 1.18rem;
  line-height: 1.08;
}

.tmm-site-header__top .tmm-main-menu > li > a {
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 8px 9px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease, background-color 0.2s ease;
}

.tmm-main-menu > li:hover > a,
.tmm-main-menu > li:focus-within > a,
.tmm-main-menu > li.current-menu-item > a,
.tmm-main-menu > li.current-menu-parent > a {
  color: var(--tmm-royal) !important;
}

.tmm-site-header__top .tmm-main-menu > li:hover > a,
.tmm-site-header__top .tmm-main-menu > li:focus-within > a,
.tmm-site-header__top .tmm-main-menu > li.current-menu-item > a,
.tmm-site-header__top .tmm-main-menu > li.current-menu-parent > a,
.tmm-site-header__top .tmm-main-menu > li.current-menu-ancestor > a,
.tmm-site-header__top .tmm-main-menu > li.current_page_parent > a {
  border-bottom-color: var(--tmm-azure);
  background: rgba(0, 102, 224, 0.08);
  box-shadow: none;
  border-radius: 0;
}

.tmm-main-menu > li.menu-item-has-children > a::after {
  content: "\25BE";
  display: inline-block;
  font-size: 0.58em;
  line-height: 1;
  margin-left: 2px;
}

.tmm-main-menu .sub-menu {
  display: block;
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  margin: 0;
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(5, 84, 199, 0.12);
  z-index: 10020;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transform-origin: top center;
  transition: none !important;
  will-change: opacity, transform;
}

.tmm-main-menu > li:hover > .sub-menu,
.tmm-main-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .tmm-main-menu .sub-menu,
  .tmm-main-menu > li:hover > .sub-menu,
  .tmm-main-menu > li:focus-within > .sub-menu {
    transition: none;
  }
}

.tmm-main-menu .sub-menu li {
  margin: 0;
}

.tmm-main-menu .sub-menu a {
  display: block;
  padding: 8px 14px;
  color: #000000 !important;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif !important;
  font-size: 1rem;
  line-height: 1.3;
  text-decoration: none;
}

.tmm-main-menu .sub-menu a:hover,
.tmm-main-menu .sub-menu a:focus-visible {
  color: var(--tmm-royal) !important;
  background: rgba(5, 84, 199, 0.06);
}

.tmm-site-header__logo {
  grid-area: logo;
  justify-self: center;
  display: inline-flex;
}

.tmm-site-header__logo img {
  width: clamp(128px, 11vw, 176px);
  min-width: 128px;
  height: auto;
  display: block;
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.tmm-site-header__tools {
  grid-area: tools;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 45%;
  transition: gap 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.tmm-site-header__main-nav--right {
  min-width: 0;
}

.tmm-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #000000 !important;
  padding: 0;
  cursor: pointer;
  box-shadow: none !important;
  transition: color 0.2s ease, opacity 0.2s ease;
  transform: none !important;
}

.tmm-search-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tmm-search-toggle:hover,
.tmm-search-toggle:focus-visible {
  background: transparent !important;
  color: var(--tmm-royal) !important;
  border-color: transparent !important;
  box-shadow: none !important;
  opacity: 0.85;
  transform: none !important;
}

.tmm-site-header__mobile-nav {
  display: none;
}

.tmm-mobile-drawer-brand {
  display: none;
}

.tmm-compact-topics {
  position: absolute;
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  width: min(320px, calc(100vw - 24px));
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(5, 84, 199, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(5, 84, 199, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: none !important;
  z-index: 10030;
}

.tmm-compact-topics-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tmm-compact-topics-menu li {
  margin: 0;
}

.tmm-compact-topics-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 10px;
  background: #FFFFFF;
  color: #000000 !important;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif !important;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: left;
}

.tmm-compact-topics-menu a:hover,
.tmm-compact-topics-menu a:focus-visible {
  border-color: rgba(5, 84, 199, 0.4);
  color: var(--tmm-royal) !important;
  background: rgba(51, 193, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .tmm-compact-topics {
    transition: none;
  }
}

.tmm-site-header__search {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--tmm-header-admin-offset) + 72px) clamp(14px, 3.5vw, 36px) 20px;
  margin: 0;
  background: rgba(3, 57, 158, 0.34);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.tmm-site-header__search[hidden] {
  display: none !important;
}

.tmm-search-form {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(5, 84, 199, 0.2);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 14px 34px rgba(5, 84, 199, 0.2);
}

.tmm-search-form input[type="text"] {
  width: 100%;
}

.tmm-search-form button {
  box-shadow: none;
}

.tmm-site-header__topics {
  border-top: 2px solid rgba(0, 102, 224, 0.34);
  margin-top: 10px;
  padding-top: 9px;
  position: relative;
  z-index: 4;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-top-color 0.28s ease;
}

.tmm-site-header__topics .tmm-topics-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px clamp(18px, 2vw, 34px);
  list-style: none;
  width: max-content;
  min-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(8px, 1.5vw, 18px) 2px;
}

.tmm-site-header__topics .tmm-topics-menu li {
  margin: 0;
  flex: 0 0 auto;
}

.tmm-site-header__topics .tmm-topics-menu a {
  position: relative;
  display: inline-block;
  padding: 5px 6px;
  color: #000000;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif !important;
  font-size: clamp(1.14rem, 1.35vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tmm-site-header__topics .tmm-topics-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--tmm-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.tmm-site-header__topics .tmm-topics-menu a:hover,
.tmm-site-header__topics .tmm-topics-menu a:focus-visible,
.tmm-site-header__topics .tmm-topics-menu .current-menu-item > a,
.tmm-site-header__topics .tmm-topics-menu a[aria-current="page"] {
  color: var(--tmm-royal);
  background: rgba(0, 102, 224, 0.08);
}

.tmm-site-header__topics .tmm-topics-menu a:hover::after,
.tmm-site-header__topics .tmm-topics-menu a:focus-visible::after,
.tmm-site-header__topics .tmm-topics-menu .current-menu-item > a::after,
.tmm-site-header__topics .tmm-topics-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.tmm-site-header.is-compact .tmm-site-header__inner {
  padding-top: 5px;
  padding-bottom: 6px;
}

.tmm-site-header.is-compact .tmm-site-header__notice {
  margin-top: -5px;
  margin-bottom: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.tmm-site-header.is-compact .tmm-site-header__logo img {
  width: clamp(104px, 8vw, 132px);
  min-width: 104px;
}

.tmm-site-header.is-compact .tmm-site-header__topics {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  margin-top: 0;
  padding-top: 0;
  border-top-color: transparent;
  pointer-events: none;
}

.tmm-site-header.is-compact .tmm-topics-toggle {
  display: inline-flex;
}

.tmm-site-header.is-compact .tmm-site-header__tools {
  gap: 12px;
}

.tmm-site-header.is-topics-open .tmm-compact-topics {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.tmm-site-header:not(.is-compact) .tmm-compact-topics {
  display: none;
}

@media (max-width: 1200px) {
  .tmm-site-header__top {
    column-gap: 12px;
  }

  .tmm-main-menu {
    gap: 4px 12px;
  }

  .tmm-main-menu--left {
    gap: 2px 4px;
  }

  .tmm-main-menu > li > a .tmm-menu-label {
    font-size: 1.1rem;
  }

  .tmm-compact-topics-menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .tmm-site-header__notice {
    margin-top: -8px;
    margin-bottom: 7px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    padding: 4px 8px;
  }

  .tmm-site-header__notice-text {
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    gap: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
  }

  .tmm-site-header__notice-lead,
  .tmm-site-header__notice-stats,
  .tmm-site-header__notice-cta {
    display: none;
  }

  .tmm-site-header__notice-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 0.82rem;
  }

  .tmm-site-header__top {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "menu logo tools";
    column-gap: 10px;
    row-gap: 6px;
  }

  .tmm-mobile-menu-toggle {
    display: inline-flex;
    grid-area: menu;
    justify-self: start;
  }

  .tmm-site-header__logo {
    justify-self: center;
  }

  .tmm-site-header__logo img {
    width: clamp(112px, 34vw, 148px);
    min-width: 112px;
  }

  .tmm-site-header__main-nav--left,
  .tmm-site-header__main-nav--right {
    display: none;
  }

  .tmm-topics-toggle,
  .tmm-compact-topics {
    display: none !important;
  }

  .tmm-site-header__mobile-nav {
    display: block;
    position: fixed;
    top: var(--tmm-header-admin-offset);
    left: 0;
    bottom: auto;
    height: calc(100dvh - var(--tmm-header-admin-offset));
    width: min(82vw, 340px);
    margin: 0;
    padding: 14px 16px 22px;
    border: 0;
    border-right: 1px solid rgba(5, 84, 199, 0.16);
    background: #FFFFFF;
    box-shadow: 12px 0 32px rgba(5, 84, 199, 0.16);
    overflow-y: auto;
    transform: translate3d(-104%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    z-index: 10010;
  }

  .tmm-site-header.is-mobile-menu-open .tmm-site-header__mobile-nav {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  html.tmm-mobile-drawer-open,
  body.tmm-mobile-drawer-open {
    overflow: hidden;
  }

  .tmm-main-menu--mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    overflow: visible;
    white-space: normal;
    padding-bottom: 0;
  }

  .tmm-mobile-drawer-brand {
    display: block;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(5, 84, 199, 0.14);
  }

  .tmm-mobile-drawer-brand__logo {
    display: inline-flex;
    text-decoration: none;
  }

  .tmm-mobile-drawer-brand__logo img {
    width: clamp(120px, 40vw, 164px);
    min-width: 120px;
    height: auto;
    display: block;
  }

  .tmm-main-menu--mobile > li > a {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(5, 84, 199, 0.12);
    text-align: left;
  }

  .tmm-main-menu--mobile > li:last-child > a {
    border-bottom: 0;
  }

  .tmm-main-menu--mobile > li > a .tmm-menu-label {
    font-size: 1.14rem;
    line-height: 1.2;
  }

  .tmm-main-menu--mobile > li.menu-item-has-children > a {
    justify-content: space-between;
  }

  .tmm-main-menu--mobile > li.menu-item-has-children > a::after {
    font-size: 0.7em;
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .tmm-main-menu--mobile > li.is-submenu-open > a::after {
    transform: rotate(180deg);
  }

  .tmm-main-menu--mobile .sub-menu {
    display: block !important;
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0 0 4px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: auto;
    max-height: 0;
    opacity: 0;
    visibility: visible;
    transform: none;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.26s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  }

  .tmm-main-menu--mobile > li.is-submenu-open > .sub-menu {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }

  .tmm-main-menu--mobile .sub-menu li a {
    display: block;
    color: #000000 !important;
    font-family: "Li Ador Noirrit", "Bornomala", sans-serif !important;
    font-size: 1.04rem;
    line-height: 1.25;
    text-decoration: none;
    padding: 8px 0;
  }

  .tmm-main-menu--mobile .sub-menu li a:hover,
  .tmm-main-menu--mobile .sub-menu li a:focus-visible {
    color: var(--tmm-royal) !important;
  }

  .tmm-site-header__tools {
    gap: 0;
    max-width: none;
  }

  .tmm-mobile-menu-toggle,
  .tmm-search-toggle {
    width: 36px;
    height: 36px;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .tmm-mobile-menu-toggle:hover,
  .tmm-mobile-menu-toggle:focus-visible,
  .tmm-search-toggle:hover,
  .tmm-search-toggle:focus-visible {
    border-color: transparent !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .tmm-search-form {
    width: min(660px, 100%);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
  }

  .tmm-search-form input[type="text"] {
    width: 100%;
  }

  .tmm-site-header__topics .tmm-topics-menu {
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
    width: max-content;
    min-width: 100%;
    margin: 0 auto;
    padding: 0 10px 2px;
  }

  .tmm-site-header__topics .tmm-topics-menu a {
    white-space: nowrap;
    font-size: 1.04rem;
  }

  .tmm-site-header.is-compact .tmm-site-header__topics {
    max-height: 160px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
    padding-top: 9px;
    border-top-color: rgba(0, 102, 224, 0.34);
    pointer-events: auto;
  }

}

@media (max-width: 575px) {
  .tmm-site-header__notice {
    padding: 5px 8px;
  }

  .tmm-site-header__notice-mobile {
    font-size: 0.76rem;
    line-height: 1.25;
    letter-spacing: 0.012em;
  }

  .tmm-site-header__search {
    padding-top: calc(var(--tmm-header-admin-offset) + 62px);
    padding-inline: 10px;
  }

  .tmm-search-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .tmm-site-header__inner {
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .tmm-main-menu--mobile > li > a .tmm-menu-label {
    font-size: 0.98rem;
  }
}

/* Donation page: standalone full-screen mode */
body.tmm-donation-screen {
  background: #fff !important;
  --jl-bg-color: #fff;
}

/* Keep normal site header/footer, but make donation content use full main column */
body.tmm-donation-screen .jl_pc_sec_title {
  display: none !important;
}

body.tmm-donation-screen .jl_smmain_side {
  display: none !important;
}

body.tmm-donation-screen .jlc-row.main_content {
  display: block !important;
}

body.tmm-donation-screen .options_layout_wrapper .jlc-container {
  width: min(1680px, 98vw) !important;
  max-width: min(1680px, 98vw) !important;
}

body.tmm-donation-screen .jlc-col-md-8.jl_smmain_con,
body.tmm-donation-screen .content_single_page.jl_content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

body.tmm-donation-screen .tmm-donate {
  background: #fff !important;
  color: var(--tmm-royal) !important;
  box-shadow: none !important;
  max-width: min(1560px, 97vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.tmm-donation-screen .tmm-donate::before {
  display: none !important;
}

body.tmm-donation-screen .tmm-donate-kicker {
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-kicker::before,
body.tmm-donation-screen .tmm-donate-kicker::after {
  background: rgba(5, 84, 199, 0.35) !important;
}

body.tmm-donation-screen .tmm-donate-hero__lead h1 {
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-hero__lead h1 em {
  color: var(--tmm-azure) !important;
}

body.tmm-donation-screen .tmm-donate-hero__lead p,
body.tmm-donation-screen .tmm-donation-page__intro-content {
  color: rgba(0, 0, 0, 0.8) !important;
}

body.tmm-donation-screen .tmm-donate-hero__visual {
  border-color: rgba(5, 84, 199, 0.2) !important;
}

body.tmm-donation-screen .tmm-donate-tracker,
body.tmm-donation-screen .tmm-donate-form-area,
body.tmm-donation-screen .tmm-donor-wall {
  background: #fff !important;
  border-color: rgba(5, 84, 199, 0.2) !important;
}

body.tmm-donation-screen .tmm-donor-wall {
  width: min(100%, 900px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
}

body.tmm-donation-screen .tmm-donor-wall:hover {
  border-color: rgba(5, 84, 199, 0.34) !important;
  box-shadow: 0 14px 28px rgba(5, 84, 199, 0.1) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick {
  border-top-color: rgba(5, 84, 199, 0.24) !important;
  margin-top: 14px !important;
  padding: 14px !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(245, 241, 220, 0.58) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-label {
  color: var(--tmm-royal) !important;
  letter-spacing: 0.1em !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-grid {
  gap: 10px !important;
}

body.tmm-donation-screen .tmm-donate-tracker__stats span,
body.tmm-donation-screen .tmm-donate-goal,
body.tmm-donation-screen .tmm-donate-form-area__head p,
body.tmm-donation-screen .tmm-donate-label,
body.tmm-donation-screen .tmm-donate-field-label,
body.tmm-donation-screen .tmm-donate-payment-info p,
body.tmm-donation-screen .tmm-donate-submit-note,
body.tmm-donation-screen .tmm-donate-instruction,
body.tmm-donation-screen .tmm-donate-method-card em,
body.tmm-donation-screen .tmm-donor-wall__table-head {
  color: rgba(17, 24, 39, 0.72) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__stats strong,
body.tmm-donation-screen .tmm-donate-form-area__head h2,
body.tmm-donation-screen .tmm-donate-selected-amount,
body.tmm-donation-screen .tmm-donor-wall__head h2,
body.tmm-donation-screen .tmm-donor-wall__empty {
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-progress {
  background: rgba(5, 84, 199, 0.16) !important;
}

body.tmm-donation-screen .tmm-donate-progress__fill {
  background: var(--tmm-yellow) !important;
}

body.tmm-donation-screen .tmm-donate-amount-btn,
body.tmm-donation-screen .tmm-donate-method-tab,
body.tmm-donation-screen .tmm-donate-method-card,
body.tmm-donation-screen .tmm-donate-choice,
body.tmm-donation-screen .tmm-donate-form input[type="text"],
body.tmm-donation-screen .tmm-donate-form input[type="email"],
body.tmm-donation-screen .tmm-donate-form input[type="number"],
body.tmm-donation-screen .tmm-donate-form textarea {
  background: #fff !important;
  color: rgba(17, 24, 39, 0.94) !important;
  border-color: rgba(5, 84, 199, 0.28) !important;
}

body.tmm-donation-screen .tmm-donate-form input::placeholder,
body.tmm-donation-screen .tmm-donate-form textarea::placeholder {
  color: rgba(17, 24, 39, 0.5) !important;
}

body.tmm-donation-screen .tmm-donate-method-card strong,
body.tmm-donation-screen .tmm-donate-method-card span,
body.tmm-donation-screen .tmm-donate-choice span,
body.tmm-donation-screen .tmm-donate-form-area__head h2 {
  color: rgba(17, 24, 39, 0.94) !important;
}

body.tmm-donation-screen .tmm-donate-anon {
  color: rgba(17, 24, 39, 0.94) !important;
}

body.tmm-donation-screen .tmm-donate-amount-btn.is-active,
body.tmm-donation-screen .tmm-donate-method-tab.is-active,
body.tmm-donation-screen .tmm-donate-submit {
  background: var(--tmm-yellow) !important;
  border-color: var(--tmm-yellow) !important;
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-btn {
  min-height: 52px !important;
  border: 1px solid rgba(5, 84, 199, 0.26) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--tmm-royal) !important;
  box-shadow: 0 8px 18px rgba(5, 84, 199, 0.1) !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-btn:hover,
body.tmm-donation-screen .tmm-donate-tracker__quick-btn:focus-visible {
  background: var(--tmm-azure) !important;
  border-color: var(--tmm-azure) !important;
  color: var(--tmm-white) !important;
  box-shadow: 0 12px 24px rgba(5, 84, 199, 0.2) !important;
  transform: translateY(-1px) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-btn.is-active {
  background: var(--tmm-royal) !important;
  border-color: var(--tmm-royal) !important;
  color: var(--tmm-white) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-link {
  color: var(--tmm-royal) !important;
  border-bottom-color: rgba(5, 84, 199, 0.52) !important;
}

body.tmm-donation-screen .tmm-donate-tracker__quick-link:hover,
body.tmm-donation-screen .tmm-donate-tracker__quick-link:focus-visible {
  color: var(--tmm-azure) !important;
  border-bottom-color: var(--tmm-azure) !important;
}

body.tmm-donation-screen .tmm-donate-selected-amount {
  color: var(--tmm-yellow) !important;
}

body.tmm-donation-screen .tmm-donate-amount-btn:hover,
body.tmm-donation-screen .tmm-donate-amount-btn:focus-visible,
body.tmm-donation-screen .tmm-donate-method-tab:hover,
body.tmm-donation-screen .tmm-donate-method-tab:focus-visible {
  border-color: var(--tmm-yellow) !important;
  background: rgba(252, 215, 34, 0.16) !important;
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-submit:hover,
body.tmm-donation-screen .tmm-donate-submit:focus-visible {
  background: var(--tmm-yellow) !important;
  border-color: var(--tmm-yellow) !important;
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-payment-info {
  background: rgba(5, 84, 199, 0.06) !important;
  border-color: rgba(5, 84, 199, 0.2) !important;
}

body.tmm-donation-screen .tmm-donate-payment-info strong {
  color: var(--tmm-royal) !important;
}

body.tmm-donation-screen .tmm-donate-payment-info em {
  color: rgba(5, 84, 199, 0.86) !important;
}

body.tmm-donation-screen .tmm-donate-submit-note a {
  color: var(--tmm-royal) !important;
  border-bottom-color: rgba(5, 84, 199, 0.5) !important;
}

body.tmm-donation-screen .tmm-donor-wall__table-head {
  background: rgba(5, 84, 199, 0.08) !important;
}

body.tmm-donation-screen .tmm-donor-row {
  border-bottom-color: rgba(5, 84, 199, 0.11) !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

body.tmm-donation-screen .tmm-donor-row__identity {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
}

body.tmm-donation-screen .tmm-donor-row__avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(5, 84, 199, 0.34) !important;
  background: rgba(5, 84, 199, 0.12) !important;
  color: var(--tmm-royal) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 44px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
}

body.tmm-donation-screen .tmm-donor-row__avatar.is-anonymous {
  background: rgba(252, 215, 34, 0.2) !important;
  border-color: rgba(252, 215, 34, 0.88) !important;
}

body.tmm-donation-screen .tmm-donor-row__text {
  min-width: 0 !important;
  text-align: left !important;
}

body.tmm-donation-screen .tmm-donor-row strong {
  color: #0f172a !important;
  font-size: 1.01rem !important;
  font-weight: 800 !important;
  text-align: left !important;
}

body.tmm-donation-screen .tmm-donor-row small {
  color: rgba(17, 24, 39, 0.64) !important;
  margin-top: 4px !important;
  line-height: 1.45 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
}

body.tmm-donation-screen .tmm-donor-row__amount {
  color: var(--tmm-yellow) !important;
  font-size: 1.26rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: right !important;
  text-shadow: none !important;
}

body.tmm-donation-screen .tmm-donor-row__date {
  color: rgba(17, 24, 39, 0.56) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-align: right !important;
}

body.tmm-donation-screen .tmm-donor-wall__table {
  border: 1px solid rgba(5, 84, 199, 0.16) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

body.tmm-donation-screen .tmm-donor-wall__list {
  max-height: 370px !important;
}

body.tmm-donation-screen .tmm-donor-row:hover {
  background: rgba(245, 241, 220, 0.62) !important;
  transform: translateX(2px) !important;
}

body.tmm-donation-screen #tmm-footer-scroll-top,
body.tmm-donation-screen #go-top a {
  background: var(--tmm-yellow) !important;
  color: var(--tmm-royal) !important;
  border-color: var(--tmm-yellow) !important;
}

@media (max-width: 640px) {
  body.tmm-donation-screen .tmm-donate {
    padding: 16px !important;
  }
}

/* Logo constraints: keep approved logo readable and >=100px */
.logo_small_wrapper_table .logo_small_wrapper a img,
.footer-logo-holder .logo_link img,
#jl_sb_nav .logo_link img {
  min-width: 100px;
  height: auto;
}

.logo_small_wrapper_table .logo_small_wrapper .logo_link,
.footer-logo-holder .logo_link {
  padding: 10px;
}

input[type="submit"],
button,
.button,
.wp-block-button .wp-block-button__link,
.wp-block-file__button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--tmm-azure) !important;
  color: var(--tmm-white) !important;
  border: 2px solid transparent;
  border-radius: var(--jl-button-radius);
  box-shadow: var(--tmm-shadow-soft);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="submit"]:hover,
button:hover,
.button:hover,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file__button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--tmm-royal) !important;
  transform: translateY(-1px);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea,
select {
  border: 1px solid rgba(5, 84, 199, 0.3);
  border-radius: var(--tmm-radius-md);
  background: var(--tmm-white);
  color: var(--tmm-royal);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: var(--tmm-azure);
  box-shadow: 0 0 0 3px rgba(51, 193, 255, 0.24);
}

.jl_ov_el,
.jl_ft_mini .jl_ft_cw,
.widget,
.woocommerce ul.products li.product,
.jl_achv_tpl_list .jl_achv_w {
  border-radius: var(--jl-border-rounded);
}

.widget,
.woocommerce ul.products li.product,
.jl_achv_tpl_list .jl_achv_w {
  background: var(--tmm-white);
  border: 1px solid rgba(5, 84, 199, 0.15);
  box-shadow: var(--tmm-shadow-card);
}

.jl_foot_wrap,
.jl_ft_mini .jl_ft_cw {
  background: linear-gradient(180deg, var(--tmm-ivory) 0%, var(--tmm-white) 86%);
}

.jl-menu-footer li a,
.jl_ft_mini .cp_txt,
.jl_foot_wrap .footer-menu-bottom ul li a {
  color: var(--tmm-royal) !important;
}

.jl-menu-footer li a:hover,
.jl_foot_wrap .footer-menu-bottom ul li a:hover {
  color: var(--tmm-azure) !important;
}

/* Bangla typography rules */
html[lang^="bn"] body,
body.tmm-lang-bn {
  font-family: "Bornomala", "Poppins", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.003em;
}

html[lang^="bn"] h1,
html[lang^="bn"] h2,
html[lang^="bn"] h3,
html[lang^="bn"] h4,
html[lang^="bn"] h5,
html[lang^="bn"] h6,
body.tmm-lang-bn h1,
body.tmm-lang-bn h2,
body.tmm-lang-bn h3,
body.tmm-lang-bn h4,
body.tmm-lang-bn h5,
body.tmm-lang-bn h6 {
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

/* Formal/institutional context */
.tmm-formal,
.tmm-formal p,
.tmm-formal li,
.tmm-formal h1,
.tmm-formal h2,
.tmm-formal h3,
.tmm-formal h4,
.tmm-formal h5,
.tmm-formal h6 {
  font-family: "Apple Garamond", "Poppins", serif !important;
}

/* Homepage-specific brand composition */
body.home .jl_home_bw {
  background: var(--tmm-white);
  padding-top: clamp(10px, 2.2vw, 24px);
}

/* Homepage trim mode: keep only the first top-level Elementor container (hero). */
body.home.page-id-13574 .elementor.elementor-13574 > .e-parent:nth-of-type(n+2) {
  display: none !important;
}

body.home.page-id-13574 .tmm-featured-section {
  width: min(var(--jl-main-width, 1260px), calc(100vw - 30px));
  margin: clamp(20px, 2.5vw, 34px) auto 0;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(5, 84, 199, 0.15);
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 16px 36px rgba(5, 84, 199, 0.1);
}

body.home.page-id-13574 .tmm-featured-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 12px 18px;
  margin-bottom: 16px;
}

body.home.page-id-13574 .tmm-featured-section__title {
  margin: 0;
  justify-self: start;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  position: relative;
  padding-bottom: 8px;
}

body.home.page-id-13574 .tmm-featured-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(64px, 9vw, 118px);
  height: 4px;
  background: var(--tmm-yellow);
  border-radius: 999px;
}

body.home.page-id-13574 .tmm-featured-section__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

body.home.page-id-13574 .tmm-featured-topics {
  min-width: 0;
  align-self: end;
  justify-self: center;
  display: flex;
  justify-content: center;
  padding-top: 12px;
  overflow: visible;
}

body.home.page-id-13574 .tmm-featured-topics__viewport {
  width: min(100%, clamp(640px, 66vw, 980px));
  margin: 0 auto;
  overflow: hidden;
  display: block;
  padding: 20px 0 8px;
}

body.home.page-id-13574 .tmm-featured-topics__track {
  display: flex;
  align-items: flex-end;
  gap: clamp(22px, 2.8vw, 38px);
  width: max-content;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.home.page-id-13574 .tmm-featured-topic {
  border: 0;
  border-radius: 0 !important;
  background: transparent !important;
  margin: 0;
  padding: 0;
  color: #1f1f1f !important;
  box-shadow: none !important;
  opacity: 1;
  transform: scale(0.8) !important;
  transform-origin: center bottom;
  transition: transform 0.28s ease, opacity 0.28s ease, color 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
}

body.home.page-id-13574 .tmm-featured-topic__label {
  display: block;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  position: relative;
  font-size: clamp(1.34rem, 1.82vw, 1.92rem);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0;
  padding-bottom: 8px;
}

body.home.page-id-13574 .tmm-featured-topic.is-near {
  transform: scale(0.9) !important;
}

body.home.page-id-13574 .tmm-featured-topic.is-mid {
  transform: scale(0.84) !important;
}

body.home.page-id-13574 .tmm-featured-topic.is-far {
  transform: scale(0.78) !important;
}

body.home.page-id-13574 .tmm-featured-topic.is-active {
  opacity: 1;
  transform: scale(1.13) !important;
  color: var(--tmm-azure) !important;
}

body.home.page-id-13574 .tmm-featured-topic.is-active .tmm-featured-topic__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--tmm-yellow);
  border-radius: 999px;
}

body.home.page-id-13574 .tmm-featured-topic:hover,
body.home.page-id-13574 .tmm-featured-topic:focus-visible {
  background: transparent !important;
  border-color: transparent !important;
  opacity: 1;
  color: #1f1f1f !important;
}

body.home.page-id-13574 .tmm-featured-topic.is-active:hover,
body.home.page-id-13574 .tmm-featured-topic.is-active:focus-visible {
  color: var(--tmm-azure) !important;
}

body.home.page-id-13574 .tmm-featured-topic:focus,
body.home.page-id-13574 .tmm-featured-topic:active,
body.home.page-id-13574 .tmm-featured-topic:focus-visible {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.home.page-id-13574 .tmm-featured-topic::-moz-focus-inner {
  border: 0;
}

body.home.page-id-13574 .tmm-featured-nav {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(5, 84, 199, 0.14) !important;
  border-radius: 10px;
  background: var(--tmm-white) !important;
  color: transparent !important;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: none !important;
  transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

body.home.page-id-13574 .tmm-featured-nav::before {
  content: none;
}

body.home.page-id-13574 .tmm-featured-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(5, 84, 199, 0.56);
  border-right: 3px solid rgba(5, 84, 199, 0.56);
  transform: translate(-58%, -50%) rotate(45deg);
  pointer-events: none;
}

body.home.page-id-13574 .tmm-featured-nav--prev::after {
  transform: translate(-42%, -50%) rotate(-135deg);
}

body.home.page-id-13574 .tmm-featured-nav:hover,
body.home.page-id-13574 .tmm-featured-nav:focus-visible {
  background: rgba(0, 102, 224, 0.12) !important;
  border-color: rgba(0, 102, 224, 0.34) !important;
  transform: none;
}

body.home.page-id-13574 .tmm-featured-nav:hover::after,
body.home.page-id-13574 .tmm-featured-nav:focus-visible::after {
  border-top-color: var(--tmm-azure);
  border-right-color: var(--tmm-azure);
}

body.home.page-id-13574 .tmm-featured-nav[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  background: var(--tmm-white) !important;
  border-color: rgba(5, 84, 199, 0.1) !important;
}

body.home.page-id-13574 .tmm-featured-nav[disabled]::before {
  background: transparent;
}

body.home.page-id-13574 .tmm-featured-nav[disabled]::after {
  border-top-color: rgba(5, 84, 199, 0.28);
  border-right-color: rgba(5, 84, 199, 0.28);
}

body.home.page-id-13574 .tmm-featured-view-more {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: auto;
  padding: 0 0 2px;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--tmm-royal) !important;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(5, 84, 199, 0.24) !important;
  box-shadow: none;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

body.home.page-id-13574 .tmm-featured-view-more::before {
  content: none;
}

body.home.page-id-13574 .tmm-featured-view-more::after {
  content: "→";
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

body.home.page-id-13574 .tmm-featured-view-more:hover,
body.home.page-id-13574 .tmm-featured-view-more:focus-visible {
  color: var(--tmm-azure) !important;
  border-bottom-color: var(--tmm-azure);
}

body.home.page-id-13574 .tmm-featured-view-more:hover::before,
body.home.page-id-13574 .tmm-featured-view-more:focus-visible::before {
  content: none;
}

body.home.page-id-13574 .tmm-featured-view-more:hover::after,
body.home.page-id-13574 .tmm-featured-view-more:focus-visible::after {
  transform: translateX(3px);
}

body.home.page-id-13574 .tmm-featured-view-more--bottom {
  display: none;
}

body.home.page-id-13574 .tmm-featured-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

body.home.page-id-13574 .tmm-featured-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

body.home.page-id-13574 .tmm-featured-track {
  position: relative;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.home.page-id-13574 .tmm-featured-page {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "main mini"
    "profiles mini";
  gap: 12px;
}

body.home.page-id-13574 .tmm-featured-page > * {
  min-width: 0;
}

body.home.page-id-13574 .tmm-featured-main-column {
  grid-area: main;
}

body.home.page-id-13574 .tmm-featured-mini-grid {
  grid-area: mini;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.home.page-id-13574 .tmm-featured-card {
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(5, 84, 199, 0.08);
}

body.home.page-id-13574 .tmm-featured-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

body.home.page-id-13574 .tmm-featured-card__media {
  position: relative;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home.page-id-13574 .tmm-featured-card--main .tmm-featured-card__media {
  aspect-ratio: 21 / 10;
  min-height: clamp(180px, 24vw, 242px);
}

body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__media {
  aspect-ratio: 16 / 10;
  min-height: clamp(108px, 10vw, 142px);
}

body.home.page-id-13574 .tmm-featured-card__content {
  padding: 12px 14px 14px;
  color: #000000;
}

body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__content {
  padding: 10px 12px 12px;
}

body.home.page-id-13574 .tmm-featured-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-bottom: 8px;
}

body.home.page-id-13574 .tmm-featured-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #1F2C44;
  color: #F8FBFF;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}

body.home.page-id-13574 .tmm-featured-author::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(248, 251, 255, 0.82);
}

body.home.page-id-13574 .tmm-featured-date {
  color: #000000;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.78rem;
  line-height: 1.25;
}

body.home.page-id-13574 .tmm-featured-card__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-weight: 700;
  line-height: 1.34;
}

body.home.page-id-13574 .tmm-featured-card--main .tmm-featured-card__title {
  font-size: clamp(1.2rem, 1.75vw, 1.58rem);
}

body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__title {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

body.home.page-id-13574 .tmm-featured-card__excerpt {
  margin: 8px 0 0;
  color: #000000;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-featured-card--main .tmm-featured-card__excerpt {
  -webkit-line-clamp: 3;
}

body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__excerpt {
  -webkit-line-clamp: 2;
  font-size: 0.86rem;
}

body.home.page-id-13574 .tmm-featured-profiles {
  grid-area: profiles;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

body.home.page-id-13574 .tmm-featured-profiles__title {
  margin: 0 0 10px;
  color: #1F2C44;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.3;
}

body.home.page-id-13574 .tmm-featured-profiles__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 8px;
}

body.home.page-id-13574 .tmm-featured-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #121826;
  text-decoration: none;
}

body.home.page-id-13574 .tmm-featured-profile__avatar {
  width: clamp(64px, 7vw, 84px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #F2F6FD;
  border: 2px solid rgba(5, 84, 199, 0.2);
}

body.home.page-id-13574 .tmm-featured-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home.page-id-13574 .tmm-featured-profile__name {
  display: block;
  width: 100%;
  text-align: center;
  color: #141B2D;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

body.home.page-id-13574 .tmm-featured-profile:hover .tmm-featured-profile__avatar,
body.home.page-id-13574 .tmm-featured-profile:focus-visible .tmm-featured-profile__avatar {
  border-color: var(--tmm-azure);
  background: rgba(0, 102, 224, 0.1);
}

body.home.page-id-13574 .tmm-featured-profile:hover .tmm-featured-profile__name,
body.home.page-id-13574 .tmm-featured-profile:focus-visible .tmm-featured-profile__name {
  color: var(--tmm-royal);
}

@media (max-width: 991px) {
  body.home.page-id-13574 .tmm-featured-section {
    width: min(100%, calc(100vw - 24px));
    padding: 14px;
    border-radius: 14px;
  }

  body.home.page-id-13574 .tmm-featured-section__header {
    grid-template-columns: 1fr;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  body.home.page-id-13574 .tmm-featured-topics {
    width: 100%;
  }

  body.home.page-id-13574 .tmm-featured-topics__viewport {
    width: 100%;
    padding: 12px 0 4px;
  }

  body.home.page-id-13574 .tmm-featured-topics__track {
    gap: 16px;
  }

  body.home.page-id-13574 .tmm-featured-section__actions {
    width: 100%;
    justify-content: flex-end;
  }

  body.home.page-id-13574 .tmm-featured-view-more--header {
    margin-left: auto;
  }

  body.home.page-id-13574 .tmm-featured-page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "mini"
      "profiles";
    gap: 10px;
  }

  body.home.page-id-13574 .tmm-featured-main-column {
    gap: 10px;
  }

  body.home.page-id-13574 .tmm-featured-card--main .tmm-featured-card__media {
    min-height: clamp(180px, 46vw, 240px);
  }

  body.home.page-id-13574 .tmm-featured-mini-grid {
    gap: 10px;
  }

  body.home.page-id-13574 .tmm-featured-profiles__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.home.page-id-13574 .tmm-featured-section__header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title actions"
      "topics topics";
    align-items: end;
    gap: 10px;
  }

  body.home.page-id-13574 .tmm-featured-section__title {
    grid-area: title;
  }

  body.home.page-id-13574 .tmm-featured-section__actions {
    grid-area: actions;
    width: auto;
    gap: 6px;
  }

  body.home.page-id-13574 .tmm-featured-topics {
    grid-area: topics;
    width: 100%;
    justify-self: center;
  }

  body.home.page-id-13574 .tmm-featured-topics__viewport {
    width: 100%;
    padding: 8px 0 2px;
  }

  body.home.page-id-13574 .tmm-featured-topics__track {
    gap: 12px;
  }

  body.home.page-id-13574 .tmm-featured-topic__label {
    font-size: clamp(1.02rem, 4.2vw, 1.2rem);
    line-height: 1.22;
    padding-bottom: 6px;
  }

  body.home.page-id-13574 .tmm-featured-topic.is-active {
    transform: scale(1.04) !important;
  }

  body.home.page-id-13574 .tmm-featured-nav {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  body.home.page-id-13574 .tmm-featured-nav::after {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  body.home.page-id-13574 .tmm-featured-view-more--header {
    display: none !important;
  }

  body.home.page-id-13574 .tmm-featured-view-more--bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    height: 46px;
    margin: 16px 0 4px;
    padding: 0 18px;
    border: 0 !important;
    border-radius: 999px !important;
    border-bottom: 0 !important;
    background: var(--tmm-yellow) !important;
    color: var(--tmm-royal) !important;
    font-family: "Poppins", "Li Ador Noirrit", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  body.home.page-id-13574 .tmm-featured-view-more--bottom::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  body.home.page-id-13574 .tmm-featured-view-more--bottom:hover,
  body.home.page-id-13574 .tmm-featured-view-more--bottom:focus-visible {
    border-bottom: 0 !important;
    background: #FFE15A !important;
    color: var(--tmm-royal) !important;
    transform: translateY(-1px);
  }

  body.home.page-id-13574 .tmm-featured-view-more--bottom:hover::after,
  body.home.page-id-13574 .tmm-featured-view-more--bottom:focus-visible::after {
    transform: translateX(2px) rotate(45deg);
  }

  body.home.page-id-13574 .tmm-featured-mini-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  body.home.page-id-13574 .tmm-featured-mini-grid .tmm-featured-card {
    width: 100%;
    max-width: 100%;
  }

  body.home.page-id-13574 .tmm-featured-card--mini {
    height: clamp(126px, 24vw, 148px);
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__link {
    flex-direction: row;
    align-items: stretch;
    min-height: 100%;
    height: 100%;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__media {
    flex: 0 0 38%;
    width: 38%;
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding: 8px 10px 10px;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__meta {
    margin-bottom: 6px;
    flex-wrap: nowrap;
    gap: 6px 8px;
    overflow: hidden;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__title {
    font-size: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__excerpt {
    margin-top: 6px;
    -webkit-line-clamp: 2;
    font-size: 0.86rem;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  body.home.page-id-13574 .tmm-featured-view-more--bottom {
    width: 100%;
    max-width: 100%;
    height: 44px;
  }

  body.home.page-id-13574 .tmm-featured-card--mini {
    height: clamp(118px, 31vw, 132px);
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__media {
    flex-basis: 38%;
    width: 38%;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__link {
    min-height: 100%;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__title {
    font-size: 0.95rem;
  }

  body.home.page-id-13574 .tmm-featured-card--mini .tmm-featured-card__excerpt {
    font-size: 0.82rem;
  }

  body.home.page-id-13574 .tmm-featured-profiles__title {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  body.home.page-id-13574 .tmm-featured-profiles__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 6px;
  }

  body.home.page-id-13574 .tmm-featured-profile__avatar {
    width: clamp(56px, 18vw, 70px);
  }

  body.home.page-id-13574 .tmm-featured-profile__name {
    font-size: 0.74rem;
  }
}

body.home.page-id-13574 .tmm-research-section {
  --tmm-research-gap: clamp(10px, 1.2vw, 16px);
  --tmm-research-visible: 5;
  position: relative;
  width: min(var(--jl-main-width, 1260px), calc(100vw - 30px));
  max-width: min(var(--jl-main-width, 1260px), calc(100vw - 30px));
  margin-top: clamp(24px, 4vw, 42px);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

body.home.page-id-13574 .tmm-research-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.home.page-id-13574 .tmm-research-section__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.52rem, 3.3vw, 2.62rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 8px;
}

body.home.page-id-13574 .tmm-research-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(64px, 9vw, 118px);
  height: 4px;
  background: var(--tmm-yellow);
  border-radius: 999px;
}

body.home.page-id-13574 .tmm-research-section__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.home.page-id-13574 .tmm-research-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 84, 199, 0.2) !important;
  border-radius: 10px;
  background: transparent !important;
  color: var(--tmm-royal) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

body.home.page-id-13574 .tmm-research-nav:hover,
body.home.page-id-13574 .tmm-research-nav:focus-visible {
  background: rgba(0, 102, 224, 0.08) !important;
  border-color: rgba(0, 102, 224, 0.42) !important;
}

body.home.page-id-13574 .tmm-research-nav[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
}

body.home.page-id-13574 .tmm-research-view-more {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  border: 0 !important;
  color: var(--tmm-royal) !important;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

body.home.page-id-13574 .tmm-research-view-more::after {
  content: "→";
  font-family: "Poppins", sans-serif;
}

body.home.page-id-13574 .tmm-research-view-more--bottom {
  display: none;
}

body.home.page-id-13574 .tmm-research-carousel {
  width: 100%;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-research-viewport {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 10px;
}

body.home.page-id-13574 .tmm-research-track {
  display: flex;
  align-items: stretch;
  gap: var(--tmm-research-gap);
  will-change: transform;
}

body.home.page-id-13574 .tmm-research-card {
  flex: 0 0 calc((100% - ((var(--tmm-research-visible) - 1) * var(--tmm-research-gap))) / var(--tmm-research-visible));
  min-width: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transform: scale(0.9);
  transform-origin: center center;
  opacity: 0.72;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

body.home.page-id-13574 .tmm-research-card.is-focused {
  transform: scale(1.03);
  opacity: 1;
  z-index: 2;
}

body.home.page-id-13574 .tmm-research-card__link {
  position: relative;
  display: block;
  height: 100%;
  min-height: clamp(320px, 38vw, 460px);
  color: inherit;
  text-decoration: none;
}

body.home.page-id-13574 .tmm-research-card__media,
body.home.page-id-13574 .tmm-research-card__media img {
  width: 100%;
  height: 100%;
}

body.home.page-id-13574 .tmm-research-card__media img {
  display: block;
  object-fit: cover;
}

body.home.page-id-13574 .tmm-research-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 12px 14px;
  background: linear-gradient(180deg, rgba(15, 22, 39, 0.02) 0%, rgba(15, 22, 39, 0.88) 62%, rgba(15, 22, 39, 0.96) 100%);
  color: #FFFFFF;
}

body.home.page-id-13574 .tmm-research-card__title {
  margin: 0;
  color: #FFFFFF;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(0.95rem, 1.02vw, 1.12rem);
  font-weight: 700;
  line-height: 1.3;
}

body.home.page-id-13574 .tmm-research-card__author {
  margin-top: 6px;
  color: rgba(252, 215, 34, 0.94);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.26;
}

body.home.page-id-13574 .tmm-research-card__meta,
body.home.page-id-13574 .tmm-research-card__excerpt {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease;
}

body.home.page-id-13574 .tmm-research-card__meta {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.75rem;
  line-height: 1.25;
}

body.home.page-id-13574 .tmm-research-card__excerpt {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body.home.page-id-13574 .tmm-research-card.is-focused .tmm-research-card__meta,
body.home.page-id-13574 .tmm-research-card.is-focused .tmm-research-card__excerpt {
  opacity: 1;
  max-height: 160px;
  transform: translateY(0);
}

@media (max-width: 991px) {
  body.home.page-id-13574 .tmm-research-section {
    --tmm-research-visible: 3;
    --tmm-research-gap: 10px;
    width: min(100%, calc(100vw - 24px));
    max-width: min(100%, calc(100vw - 24px));
    padding: 0;
  }

  body.home.page-id-13574 .tmm-research-section__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
  }

  body.home.page-id-13574 .tmm-research-section__actions {
    width: 100%;
    justify-content: flex-end;
  }

  body.home.page-id-13574 .tmm-research-card__link {
    min-height: clamp(300px, 50vw, 400px);
  }
}

@media (max-width: 640px) {
  body.home.page-id-13574 .tmm-research-section {
    --tmm-research-visible: 1;
    --tmm-research-gap: 10px;
    margin-top: 20px;
    width: min(100%, calc(100vw - 24px));
    max-width: min(100%, calc(100vw - 24px));
    padding: 0;
  }

  body.home.page-id-13574 .tmm-research-section__title {
    font-size: clamp(1.34rem, 6.1vw, 1.9rem);
  }

  body.home.page-id-13574 .tmm-research-section__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
    margin-bottom: 10px;
  }

  body.home.page-id-13574 .tmm-research-section__actions {
    width: auto;
    justify-content: flex-end;
    gap: 6px;
  }

  body.home.page-id-13574 .tmm-research-view-more--header {
    display: none !important;
  }

  body.home.page-id-13574 .tmm-research-view-more--bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    height: 44px;
    margin: 14px 0 2px;
    padding: 0 18px;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--tmm-yellow) !important;
    color: var(--tmm-royal) !important;
    font-family: "Poppins", "Li Ador Noirrit", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  body.home.page-id-13574 .tmm-research-view-more--bottom::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  body.home.page-id-13574 .tmm-research-view-more--bottom:hover,
  body.home.page-id-13574 .tmm-research-view-more--bottom:focus-visible {
    background: #FFE15A !important;
    color: var(--tmm-royal) !important;
    transform: translateY(-1px);
  }

  body.home.page-id-13574 .tmm-research-view-more--bottom:hover::after,
  body.home.page-id-13574 .tmm-research-view-more--bottom:focus-visible::after {
    transform: translateX(2px) rotate(45deg);
  }

  body.home.page-id-13574 .tmm-research-nav {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(5, 84, 199, 0.14) !important;
    border-radius: 8px;
    background: #FFFFFF !important;
    color: transparent !important;
    font-size: 0;
    line-height: 1;
    box-shadow: none !important;
  }

  body.home.page-id-13574 .tmm-research-nav::before {
    content: none;
  }

  body.home.page-id-13574 .tmm-research-nav::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(5, 84, 199, 0.56);
    border-right: 2px solid rgba(5, 84, 199, 0.56);
    transform: translate(-58%, -50%) rotate(45deg);
    pointer-events: none;
  }

  body.home.page-id-13574 .tmm-research-nav--prev::after {
    transform: translate(-42%, -50%) rotate(-135deg);
  }

  body.home.page-id-13574 .tmm-research-nav:hover,
  body.home.page-id-13574 .tmm-research-nav:focus-visible {
    background: rgba(0, 102, 224, 0.12) !important;
    border-color: rgba(0, 102, 224, 0.34) !important;
  }

  body.home.page-id-13574 .tmm-research-nav:hover::after,
  body.home.page-id-13574 .tmm-research-nav:focus-visible::after {
    border-top-color: var(--tmm-azure);
    border-right-color: var(--tmm-azure);
  }

  body.home.page-id-13574 .tmm-research-nav[disabled] {
    background: #FFFFFF !important;
    border-color: rgba(5, 84, 199, 0.1) !important;
  }

  body.home.page-id-13574 .tmm-research-nav[disabled]::after {
    border-top-color: rgba(5, 84, 199, 0.28);
    border-right-color: rgba(5, 84, 199, 0.28);
  }

  body.home.page-id-13574 .tmm-research-card {
    flex: 0 0 clamp(236px, 74vw, 320px);
    max-width: clamp(236px, 74vw, 320px);
    transform: scale(0.9);
    opacity: 0.58;
  }

  body.home.page-id-13574 .tmm-research-card.is-focused {
    transform: scale(1.03);
    opacity: 1;
  }

  body.home.page-id-13574 .tmm-research-card__link {
    min-height: clamp(210px, 58vw, 262px);
  }

  body.home.page-id-13574 .tmm-research-card__title {
    font-size: 0.88rem;
  }

  body.home.page-id-13574 .tmm-research-card__author {
    font-size: 0.74rem;
  }

  body.home.page-id-13574 .tmm-research-card__meta {
    font-size: 0.7rem;
  }

  body.home.page-id-13574 .tmm-research-card__excerpt {
    font-size: 0.76rem;
  }
}

body.home .elementor-13574 .elementor-element-639679af .jl-stab-w {
  display: grid;
  grid-template-columns: minmax(0, 1.84fr) minmax(0, 0.68fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl {
  grid-column: 1;
}

body.home .elementor-13574 .elementor-element-639679af .jl_ov_layout {
  background: #FFFFFF;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  padding: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.home .elementor-13574 .elementor-element-639679af .jl_ov_layout:hover {
  transform: none;
  box-shadow: none;
}

/* Remove theme dark backing/stroke artifacts around main carousel media */
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_cs_overlay .jl_ov_layout,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .swiper-slide,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .slide-inner,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_el,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_img_holder,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_imgw,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_imgin {
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl_img_holder {
  position: relative;
  min-height: clamp(300px, 42vw, 490px);
  border-radius: 0;
  overflow: hidden;
  clip-path: none;
  box-shadow: none;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_imgw,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_imgin,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_img_holder img {
  border-radius: 0 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl_img_holder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(5, 84, 199, 0.06), rgba(5, 84, 199, 0.36));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

body.home .elementor-13574 .elementor-element-639679af .jl_img_holder .jl_imgw,
body.home .elementor-13574 .elementor-element-639679af .jl_img_holder .jl_imgin,
body.home .elementor-13574 .elementor-element-639679af .jl_img_holder img {
  height: 100%;
}

body.home .elementor-13574 .elementor-element-639679af .jl_img_holder img {
  display: block;
  width: 100%;
  object-fit: cover;
}

body.home .elementor-13574 .elementor-element-639679af .jl_ov_el .jl_imgl {
  background: transparent !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl:hover .jl_imgin img {
  transform: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl_ov_layout:hover .jl_img_holder::after {
  opacity: 0.44;
}

body.home .elementor-13574 .elementor-element-639679af .jl_fe_text {
  position: static !important;
  margin-top: 18px;
}

/* Main carousel caption: show at image bottom on hover */
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_el .jl_fe_text {
  position: absolute !important;
  inset: auto 0 0 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 4;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_el .jl_fe_inner {
  width: 100%;
  max-width: none;
  padding: 30px 24px 16px !important;
  background: linear-gradient(180deg, rgba(9, 24, 56, 0), rgba(9, 24, 56, 0.78));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_layout:hover .jl_fe_text,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_layout:focus-within .jl_fe_text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_fe_des {
  display: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_f_cat {
  display: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_fe_title a {
  color: #FFFFFF;
  font-size: clamp(1.52rem, 2.2vw, 2.12rem);
  line-height: 1.28;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta a,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta .post-date:before {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: "Bor", "Bornomala", "TMM Bornomala", "Poppins", sans-serif !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta .jl_author_img_w,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta .jl_author_img_w a,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta .jl_author_img_w a[rel="author"] {
  font-family: "Bor", "Bornomala", "TMM Bornomala", sans-serif !important;
  font-weight: 400 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_post_meta {
  gap: 8px 14px;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_author_img_w .jl_aimg_in {
  display: none;
}

body.home .elementor-13574 .elementor-element-639679af .jl_fe_inner {
  padding: 0 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl_fe_title {
  margin-bottom: 8px;
}

body.home .elementor-13574 .elementor-element-639679af .jl_fe_title a {
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 2.08rem);
  line-height: 1.34;
}

body.home .elementor-13574 .elementor-element-639679af .jl_fe_des {
  display: block !important;
  color: rgba(5, 84, 199, 0.9);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  margin-top: 10px;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home .elementor-13574 .elementor-element-639679af .jl_post_meta,
body.home .elementor-13574 .elementor-element-639679af .jl_post_meta a,
body.home .elementor-13574 .elementor-element-639679af .jl_post_meta .post-date:before {
  color: rgba(5, 84, 199, 0.92) !important;
  font-family: "Bor", "Bornomala", "TMM Bornomala", "Poppins", sans-serif !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl_post_meta .jl_author_img_w,
body.home .elementor-13574 .elementor-element-639679af .jl_post_meta .jl_author_img_w a,
body.home .elementor-13574 .elementor-element-639679af .jl_post_meta .jl_author_img_w a[rel="author"] {
  font-family: "Bor", "Bornomala", "TMM Bornomala", sans-serif !important;
  font-weight: 400 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl_post_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 10px;
}

body.home .elementor-13574 .elementor-element-639679af .jl_post_meta .jl_fot_share_i {
  display: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s {
  grid-column: 2;
  position: static;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  height: auto;
  max-width: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  max-width: 340px;
  justify-self: end;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s::before {
  content: none;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tmm-latest-heading {
  margin: 0 0 14px;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl-eb-sltab,
body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .swiper-container {
  overflow: visible;
  width: 100%;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .swiper-wrapper {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100% !important;
  transform: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_tabses {
  width: auto !important;
  margin: 0 !important;
  cursor: pointer;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_tabses:nth-child(n+3) {
  display: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.17);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(5, 84, 199, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(5, 84, 199, 0.05), rgba(5, 84, 199, 0.22));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 0;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(5, 84, 199, 0.14);
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout:hover::before {
  opacity: 1;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_li_in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_mmlist_layout,
body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_li_in > div,
body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_fe_text {
  position: relative;
  z-index: 1;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_img_holder {
  position: relative;
  clip-path: none;
  min-height: auto;
  border-radius: 0;
  box-shadow: none;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_mmlist_layout .jl_img_holder,
body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .swiper-slide .tab_labout .jl_img_holder {
  width: 100% !important;
  max-width: none !important;
  -webkit-flex: 0 0 100% !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  border: 0 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_mmlist_layout .jl_imgw {
  width: 100% !important;
  border-radius: 0 !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_img_holder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 84, 199, 0), rgba(5, 84, 199, 0.38));
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout:hover .jl_img_holder::after {
  opacity: 0.86;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_imgw {
  height: clamp(98px, 10vw, 130px) !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_img_holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_fe_title {
  margin: 0;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_fe_text {
  margin-top: 0;
  padding: 10px 12px 12px;
  background: #FFFFFF;
  transition: background 0.24s ease;
  color: #111111;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout:hover .jl_fe_text {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(5, 84, 199, 0.08) 100%);
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_fe_title span {
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.14rem, 1.38vw, 1.32rem);
  font-weight: 700;
  line-height: 1.42;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_fe_text .tmm-tab-meta {
  display: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tmm-tab-meta-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 18px 10px 10px;
  color: #FFFFFF;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.84rem;
  line-height: 1.56;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 3;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tab_labout:hover .tmm-tab-meta-overlay {
  opacity: 1;
  transform: translateY(0);
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tmm-tab-meta-overlay .tmm-tab-author,
body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tmm-tab-meta-overlay .tmm-tab-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tmm-tab-meta-overlay .tmm-tab-date::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .tmm-tab-excerpt {
  margin-top: 4px;
  color: #111111;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.86rem;
  line-height: 1.56;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home .elementor-13574 .jl_f_cat .jl_cat_lbl,
body.home .elementor-13574 .jl_f_cat .jl_cat_txt {
  background: transparent !important;
  color: var(--tmm-royal) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(5, 84, 199, 0.26) !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.015em;
  font-size: 0.84rem;
  line-height: 1.2;
  padding: 0 0 3px !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_f_cat {
  display: none !important;
}

body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_f_cat .jl_cat_lbl,
body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_f_cat .jl_cat_txt {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 0 !important;
  padding: 0 0 3px !important;
}

body.home .elementor-13574 .jlcus_sec_title {
  --sect-t-color: var(--tmm-royal);
  --sect-line-color: rgba(5, 84, 199, 0.18);
}

body.home .elementor-13574 .jlcus_sec_title .jl-heading-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--tmm-royal);
}

body.home .elementor-13574 .jlcus_sec_title .jl-heading-text i {
  color: var(--tmm-azure);
}

body.home .elementor-13574 .jlcus_sec_title .jl_sct_bt .jlopt-text-link {
  background: var(--tmm-azure);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: 0 10px 24px rgba(5, 84, 199, 0.2);
}

body.home .elementor-13574 .jlcus_sec_title .jl_sct_bt .jlopt-text-link:hover {
  background: var(--tmm-royal);
}

body.home .elementor-13574 .elementor-element-5bce7e06 .jl_cat_opt_w {
  border: 1px solid rgba(5, 84, 199, 0.18);
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(5, 84, 199, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.home .elementor-13574 .elementor-element-5bce7e06 .jl_cat_opt_w:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(5, 84, 199, 0.16);
}

body.home .elementor-13574 .elementor-element-5bce7e06 .jl_cat_opt3 .jl_cat_lbw .jl_cm_name {
  color: var(--tmm-royal) !important;
  font-weight: 700;
}

body.home .elementor-13574 .elementor-element-5bce7e06 .jl_cat_opt3 .jl_cm_count {
  color: rgba(5, 84, 199, 0.74) !important;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout {
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(5, 84, 199, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(5, 84, 199, 0.16);
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_fe_text {
  padding: 14px 16px 18px;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_fe_title {
  margin-bottom: 10px;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_fe_title a {
  color: var(--tmm-royal);
  font-weight: 700;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_fe_des {
  color: rgba(5, 84, 199, 0.85);
  font-size: 0.97rem;
  line-height: 1.65;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_post_meta {
  border-top: 1px dashed rgba(5, 84, 199, 0.25);
  margin-top: 10px;
  padding-top: 10px;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_post_meta,
body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_post_meta a {
  color: rgba(5, 84, 199, 0.9) !important;
  font-family: "Bor", "Bornomala", "TMM Bornomala", "Poppins", sans-serif !important;
}

body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_post_meta .jl_author_img_w,
body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_post_meta .jl_author_img_w a,
body.home .elementor-13574 .elementor-element-13357eeb .jl_cgrid_layout .jl_post_meta .jl_author_img_w a[rel="author"] {
  font-family: "Bor", "Bornomala", "TMM Bornomala", sans-serif !important;
  font-weight: 400 !important;
}

@media (max-width: 991px) {
  .logo_small_wrapper_table .logo_small_wrapper a img {
    max-width: min(48vw, 190px);
  }

  .jlc-row > * {
    padding-right: 14px;
    padding-left: 14px;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-stab-w {
    grid-template-columns: 1fr;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s {
    margin-top: 8px;
    max-width: 100%;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl_img_holder {
    clip-path: none;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_el .jl_fe_text {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_layout .jl_img_holder::after {
    opacity: 0.44;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-eb-tabsl .jl_ov_el .jl_fe_inner {
    padding: 22px 14px 12px !important;
    border-radius: 0;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_imgw {
    height: clamp(100px, 16vw, 130px) !important;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl_fe_title a {
    font-size: clamp(1.15rem, 4.7vw, 1.55rem);
  }

  body.home .elementor-13574 .elementor-element-639679af .jl_fe_des {
    -webkit-line-clamp: 2;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_fe_title span {
    font-size: 1.18rem;
  }
}

@media (max-width: 767px) {
  body.home .elementor-13574 .elementor-element-639679af .jl_img_holder {
    min-height: 250px;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .swiper-wrapper {
    grid-template-columns: 1fr;
  }

  body.home .elementor-13574 .elementor-element-639679af .jl-sltab-s .jl_imgw {
    height: clamp(110px, 40vw, 150px) !important;
  }
}

body.home.page-id-13574 .tmm-video-section {
  width: min(var(--jl-main-width, 1260px), calc(100vw - 30px));
  margin: clamp(20px, 2.5vw, 34px) auto 0;
  padding: clamp(16px, 2vw, 24px);
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.15);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(5, 84, 199, 0.1);
  box-sizing: border-box;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-video-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 10px 14px;
  margin-bottom: 14px;
}

body.home.page-id-13574 .tmm-video-section__title {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
}

body.home.page-id-13574 .tmm-video-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(68px, 9.2vw, 122px);
  height: 4px;
  background: var(--tmm-yellow);
  border-radius: 999px;
}

body.home.page-id-13574 .tmm-video-topics {
  min-width: 0;
  justify-self: center;
  align-self: end;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

body.home.page-id-13574 .tmm-video-topics__viewport {
  width: min(100%, clamp(560px, 56vw, 840px));
  overflow: hidden;
  padding: 12px 0 8px;
}

body.home.page-id-13574 .tmm-video-topics__track {
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 28px);
  width: max-content;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.home.page-id-13574 .tmm-video-topic {
  border: 0;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1f1f1f !important;
  opacity: 1;
  transform: scale(0.88) !important;
  transform-origin: center bottom;
  transition: transform 0.26s ease, color 0.2s ease;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

body.home.page-id-13574 .tmm-video-topic__label {
  position: relative;
  display: block;
  padding-bottom: 8px;
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.12rem, 1.36vw, 1.48rem);
  font-weight: 800;
  line-height: 1.32;
}

body.home.page-id-13574 .tmm-video-topic.is-near {
  transform: scale(0.96) !important;
}

body.home.page-id-13574 .tmm-video-topic.is-mid {
  transform: scale(0.91) !important;
}

body.home.page-id-13574 .tmm-video-topic.is-far {
  transform: scale(0.86) !important;
}

body.home.page-id-13574 .tmm-video-topic.is-active {
  transform: scale(1.06) !important;
  color: var(--tmm-azure) !important;
}

body.home.page-id-13574 .tmm-video-topic.is-active .tmm-video-topic__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: var(--tmm-yellow);
}

body.home.page-id-13574 .tmm-video-topic:focus,
body.home.page-id-13574 .tmm-video-topic:active,
body.home.page-id-13574 .tmm-video-topic:focus-visible {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.home.page-id-13574 .tmm-video-topic::-moz-focus-inner {
  border: 0;
}

body.home.page-id-13574 .tmm-video-section__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

body.home.page-id-13574 .tmm-video-nav {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(5, 84, 199, 0.14) !important;
  border-radius: 10px;
  background: var(--tmm-white) !important;
  color: transparent !important;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

body.home.page-id-13574 .tmm-video-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(5, 84, 199, 0.56);
  border-right: 3px solid rgba(5, 84, 199, 0.56);
  transform: translate(-50%, -50%) rotate(45deg);
}

body.home.page-id-13574 .tmm-video-nav--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

body.home.page-id-13574 .tmm-video-nav:hover,
body.home.page-id-13574 .tmm-video-nav:focus-visible {
  background: rgba(0, 102, 224, 0.08) !important;
  border-color: rgba(0, 102, 224, 0.34) !important;
}

body.home.page-id-13574 .tmm-video-nav:hover::after,
body.home.page-id-13574 .tmm-video-nav:focus-visible::after {
  border-top-color: var(--tmm-azure);
  border-right-color: var(--tmm-azure);
}

body.home.page-id-13574 .tmm-video-nav[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
  border-color: rgba(5, 84, 199, 0.1) !important;
}

body.home.page-id-13574 .tmm-video-view-more,
body.home.page-id-13574 .tmm-video-list-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 0 4px;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(5, 84, 199, 0.24) !important;
  color: var(--tmm-azure) !important;
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.16rem, 1.3vw, 1.36rem);
  font-weight: 700;
  text-decoration: none !important;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

body.home.page-id-13574 .tmm-video-view-more::after,
body.home.page-id-13574 .tmm-video-list-more::after {
  content: "\2192";
  font-size: 1.04em;
  line-height: 1;
  transition: transform 0.2s ease;
}

body.home.page-id-13574 .tmm-video-view-more:hover,
body.home.page-id-13574 .tmm-video-view-more:focus-visible,
body.home.page-id-13574 .tmm-video-list-more:hover,
body.home.page-id-13574 .tmm-video-list-more:focus-visible {
  color: var(--tmm-royal) !important;
  border-bottom-color: var(--tmm-azure) !important;
}

body.home.page-id-13574 .tmm-video-view-more:hover::after,
body.home.page-id-13574 .tmm-video-view-more:focus-visible::after,
body.home.page-id-13574 .tmm-video-list-more:hover::after,
body.home.page-id-13574 .tmm-video-list-more:focus-visible::after {
  transform: translateX(2px);
}

body.home.page-id-13574 .tmm-video-view-more--bottom {
  display: none;
}

body.home.page-id-13574 .tmm-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.92fr);
  gap: clamp(12px, 1.5vw, 20px);
  align-items: stretch;
}

body.home.page-id-13574 .tmm-video-player {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.home.page-id-13574 .tmm-video-player__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
}

body.home.page-id-13574 .tmm-video-player__stage iframe,
body.home.page-id-13574 .tmm-video-player__stage video,
body.home.page-id-13574 .tmm-video-player__stage img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

body.home.page-id-13574 .tmm-video-player__empty {
  height: 100%;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 1rem;
}

body.home.page-id-13574 .tmm-video-player__info {
  margin-top: 12px;
}

body.home.page-id-13574 .tmm-video-player__title {
  margin: 0 0 8px;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.46rem, 1.9vw, 2.1rem);
  font-weight: 800;
  line-height: 1.22;
}

body.home.page-id-13574 .tmm-video-player__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin: 0 0 8px;
  color: #1f1f1f;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
}

body.home.page-id-13574 .tmm-video-player__dot {
  color: rgba(5, 84, 199, 0.54);
}

body.home.page-id-13574 .tmm-video-player__excerpt {
  margin: 0;
  color: #1f1f1f;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 1rem;
  line-height: 1.62;
}

body.home.page-id-13574 .tmm-video-list-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-video-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 8px 4px;
  overflow-y: auto;
  max-height: 100%;
}

body.home.page-id-13574 .tmm-video-list__item {
  appearance: none;
  -webkit-appearance: none;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 148px minmax(0, 1fr) 20px !important;
  gap: 10px;
  align-items: flex-start !important;
  text-align: left !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: #1f1f1f !important;
  box-shadow: none !important;
  text-shadow: none !important;
  padding: 8px 8px 9px !important;
  margin: 0 !important;
  transform: none !important;
  min-height: 96px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

body.home.page-id-13574 .tmm-video-list__item:hover,
body.home.page-id-13574 .tmm-video-list__item:focus-visible {
  background: rgba(0, 102, 224, 0.08) !important;
  color: #1f1f1f !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.home.page-id-13574 .tmm-video-list__item.is-active {
  background: rgba(0, 102, 224, 0.12) !important;
  color: #1f1f1f !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.home.page-id-13574 .tmm-video-list__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 84, 199, 0.08);
  flex-shrink: 0;
}

body.home.page-id-13574 .tmm-video-list__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.home.page-id-13574 .tmm-video-list__content {
  position: static !important;
  inset: auto !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 5px;
  padding-top: 1px;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-video-list__title {
  display: block;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.1rem);
  font-weight: 700;
  line-height: 1.34 !important;
  white-space: normal;
  max-height: calc(1.34em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home.page-id-13574 .tmm-video-list__channel {
  display: block;
  color: #3a465b;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home.page-id-13574 .tmm-video-list__stats {
  display: block;
  color: #59647a;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.home.page-id-13574 .tmm-video-list__more {
  position: static !important;
  inset: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-height: auto;
  align-self: center;
  color: rgba(5, 84, 199, 0.72);
  font-size: 18px;
  line-height: 1;
}

body.home.page-id-13574 .tmm-video-list__more::before {
  content: "\22EE";
}

body.home.page-id-13574 .tmm-video-list-more {
  margin: 8px 12px 12px auto;
  color: var(--tmm-azure) !important;
  border-bottom-color: rgba(5, 84, 199, 0.32) !important;
}

.single-tmm_video .tmm-single-video {
  max-width: 1080px;
  margin: 24px auto;
  padding: 16px;
  border: 1px solid rgba(5, 84, 199, 0.15);
  border-radius: 16px;
  background: #FFFFFF;
}

.single-tmm_video .tmm-single-video__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
}

.single-tmm_video .tmm-single-video__frame iframe,
.single-tmm_video .tmm-single-video__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.single-tmm_video .tmm-single-video__info {
  margin-top: 12px;
}

.single-tmm_video .tmm-single-video__title {
  margin: 0 0 8px;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.single-tmm_video .tmm-single-video__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  color: #1f1f1f;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.single-tmm_video .tmm-single-video__dot {
  color: rgba(5, 84, 199, 0.6);
}

.single-tmm_video .tmm-single-video__excerpt {
  margin: 0;
  color: #1f1f1f;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  body.home.page-id-13574 .tmm-video-section__header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  body.home.page-id-13574 .tmm-video-topics {
    width: 100%;
    justify-self: stretch;
  }

  body.home.page-id-13574 .tmm-video-topics__viewport {
    width: 100%;
  }

  body.home.page-id-13574 .tmm-video-section__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  body.home.page-id-13574 .tmm-video-section {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  body.home.page-id-13574 .tmm-video-layout {
    grid-template-columns: 1fr;
  }

  body.home.page-id-13574 .tmm-video-player__stage {
    border-radius: 12px;
  }

  body.home.page-id-13574 .tmm-video-list {
    max-height: 420px;
  }

  body.home.page-id-13574 .tmm-video-list__item {
    grid-template-columns: 124px minmax(0, 1fr) 18px !important;
    min-height: 86px;
  }
}

@media (max-width: 767px) {
  body.home.page-id-13574 .tmm-video-section__header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title actions"
      "topics topics";
    align-items: end;
    gap: 10px;
  }

  body.home.page-id-13574 .tmm-video-section__title {
    grid-area: title;
  }

  body.home.page-id-13574 .tmm-video-section__actions {
    grid-area: actions;
    width: auto;
    justify-content: flex-end;
    gap: 6px;
  }

  body.home.page-id-13574 .tmm-video-topics {
    grid-area: topics;
    width: 100%;
    justify-self: center;
  }

  body.home.page-id-13574 .tmm-video-topics__viewport {
    width: 100%;
    padding: 8px 0 2px;
  }

  body.home.page-id-13574 .tmm-video-section__title {
    font-size: clamp(1.58rem, 8.2vw, 2.16rem);
  }

  body.home.page-id-13574 .tmm-video-topic__label {
    font-size: 1.02rem;
  }

  body.home.page-id-13574 .tmm-video-nav {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  body.home.page-id-13574 .tmm-video-nav::after {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  body.home.page-id-13574 .tmm-video-view-more--header,
  body.home.page-id-13574 .tmm-video-list-more {
    display: none !important;
  }

  body.home.page-id-13574 .tmm-video-view-more--bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    height: 44px;
    margin: 14px 0 2px;
    padding: 0 18px;
    border: 0 !important;
    border-radius: 999px !important;
    border-bottom: 0 !important;
    background: var(--tmm-yellow) !important;
    color: var(--tmm-royal) !important;
    font-family: "Poppins", "Li Ador Noirrit", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  body.home.page-id-13574 .tmm-video-view-more--bottom::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  body.home.page-id-13574 .tmm-video-view-more--bottom:hover,
  body.home.page-id-13574 .tmm-video-view-more--bottom:focus-visible {
    background: #FFE15A !important;
    color: var(--tmm-royal) !important;
    transform: translateY(-1px);
  }

  body.home.page-id-13574 .tmm-video-view-more--bottom:hover::after,
  body.home.page-id-13574 .tmm-video-view-more--bottom:focus-visible::after {
    transform: translateX(2px) rotate(45deg);
  }

  body.home.page-id-13574 .tmm-video-player__stage {
    margin-left: auto;
    margin-right: auto;
  }

  body.home.page-id-13574 .tmm-video-list {
    max-height: none;
    padding: 8px;
    gap: 8px;
  }

  body.home.page-id-13574 .tmm-video-list__item {
    grid-template-columns: 106px minmax(0, 1fr) 16px !important;
    grid-template-rows: auto !important;
    gap: 8px !important;
    min-height: 78px;
    padding: 6px !important;
    align-items: center !important;
    background: #FFFFFF !important;
    border-radius: 10px !important;
  }

  body.home.page-id-13574 .tmm-video-list__thumb {
    grid-column: 1;
    grid-row: 1;
    width: 106px;
    max-width: 106px;
    aspect-ratio: 16 / 9;
    position: relative !important;
    inset: auto !important;
    align-self: center;
    justify-self: start;
  }

  body.home.page-id-13574 .tmm-video-list__content {
    grid-column: 2;
    grid-row: 1;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    align-self: center;
    gap: 4px;
    padding: 0;
  }

  body.home.page-id-13574 .tmm-video-list__more {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    position: static !important;
    inset: auto !important;
  }

  body.home.page-id-13574 .tmm-video-list__title {
    position: static !important;
    margin: 0 !important;
    line-height: 1.32 !important;
    font-size: clamp(0.96rem, 3.9vw, 1.04rem);
    max-height: calc(1.32em * 2);
    white-space: normal;
  }

  body.home.page-id-13574 .tmm-video-list__channel,
  body.home.page-id-13574 .tmm-video-list__stats {
    position: static !important;
    margin: 0 !important;
    font-size: 0.86rem;
    line-height: 1.26 !important;
    white-space: nowrap;
  }

  body.home.page-id-13574 .tmm-video-player__info {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    margin-top: 10px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  body.home.page-id-13574 .tmm-video-player__title,
  body.home.page-id-13574 .tmm-video-player__meta,
  body.home.page-id-13574 .tmm-video-player__excerpt {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    background: transparent !important;
  }

  body.home.page-id-13574 .tmm-video-list-more {
    margin: 10px 8px 10px auto;
  }
}

@media (max-width: 767px) {
  body.home #tmm-video-section .tmm-video-list {
    max-height: none;
    padding: 8px;
    gap: 8px;
  }

  body.home #tmm-video-section .tmm-video-list__item {
    display: grid !important;
    grid-template-columns: 106px minmax(0, 1fr) 16px !important;
    grid-template-rows: auto !important;
    gap: 8px !important;
    min-height: 78px;
    padding: 6px !important;
    align-items: center !important;
    background: #FFFFFF !important;
  }

  body.home #tmm-video-section .tmm-video-list__thumb {
    grid-column: 1;
    grid-row: 1;
    width: 106px;
    max-width: 106px;
    aspect-ratio: 16 / 9;
    position: relative !important;
    inset: auto !important;
  }

  body.home #tmm-video-section .tmm-video-list__content {
    grid-column: 2;
    grid-row: 1;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    padding: 0;
  }

  body.home #tmm-video-section .tmm-video-list__more {
    grid-column: 3;
    grid-row: 1;
    position: static !important;
    inset: auto !important;
    align-self: center;
    justify-self: end;
  }

  body.home #tmm-video-section .tmm-video-player__info,
  body.home #tmm-video-section .tmm-video-player__title,
  body.home #tmm-video-section .tmm-video-player__meta,
  body.home #tmm-video-section .tmm-video-player__excerpt {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    background: transparent !important;
  }
}

body.home #tmm-speaker-section {
  width: min(var(--jl-main-width, 1260px), calc(100vw - 30px));
  margin: clamp(20px, 2.4vw, 34px) auto 0;
  padding: clamp(16px, 2vw, 24px);
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(5, 84, 199, 0.08);
}

body.home #tmm-speaker-section .tmm-speaker-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.home #tmm-speaker-section .tmm-speaker-section__title {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.06;
}

body.home #tmm-speaker-section .tmm-speaker-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(70px, 8.8vw, 118px);
  height: 4px;
  border-radius: 999px;
  background: var(--tmm-yellow);
}

body.home #tmm-speaker-section .tmm-speaker-section__view-more,
body.home #tmm-speaker-section .tmm-speaker-row__view-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 3px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.24);
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  text-decoration: none;
}

body.home #tmm-speaker-section .tmm-speaker-section__view-more::after,
body.home #tmm-speaker-section .tmm-speaker-row__view-more::after {
  content: "\2192";
  line-height: 1;
}

body.home #tmm-speaker-section .tmm-speaker-section__view-more:hover,
body.home #tmm-speaker-section .tmm-speaker-section__view-more:focus-visible,
body.home #tmm-speaker-section .tmm-speaker-row__view-more:hover,
body.home #tmm-speaker-section .tmm-speaker-row__view-more:focus-visible {
  color: var(--tmm-royal);
}

body.home #tmm-speaker-section .tmm-speaker-section__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.home #tmm-speaker-section .tmm-speaker-row {
  padding: 0;
  border: 0;
  background: transparent;
}

body.home #tmm-speaker-section .tmm-speaker-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body.home #tmm-speaker-section .tmm-speaker-row__title {
  margin: 0;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  font-weight: 800;
  line-height: 1.14;
}

body.home #tmm-speaker-section .tmm-speaker-row__carousel {
  position: relative;
}

body.home #tmm-speaker-section .tmm-speaker-row__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

body.home #tmm-speaker-section .tmm-speaker-row__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 84, 199, 0.24) transparent;
}

body.home #tmm-speaker-section .tmm-speaker-row__track {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: max-content;
}

body.home #tmm-speaker-section .tmm-speaker-profile-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: clamp(112px, 8.8vw, 132px);
  padding: 0 2px;
  border: 0;
  background: transparent;
  text-decoration: none;
  transition: transform 0.2s ease;
}

body.home #tmm-speaker-section .tmm-speaker-profile-card__avatar {
  width: clamp(76px, 6.4vw, 86px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(5, 84, 199, 0.14);
  background: rgba(5, 84, 199, 0.08);
}

body.home #tmm-speaker-section .tmm-speaker-profile-card__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.home #tmm-speaker-section .tmm-speaker-profile-card__name {
  display: block;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  font-weight: 700;
  line-height: 1.26;
  text-align: center;
  min-height: calc(1.26em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home #tmm-speaker-section .tmm-speaker-profile-card__designation {
  display: block;
  color: #3d4a60;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.24;
  text-align: center;
  min-height: calc(1.24em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home #tmm-speaker-section .tmm-speaker-profile-card__link:hover,
body.home #tmm-speaker-section .tmm-speaker-profile-card__link:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  body.home #tmm-speaker-section {
    width: min(100%, calc(100vw - 24px));
    padding: 14px;
    border-radius: 14px;
  }

  body.home #tmm-speaker-section .tmm-speaker-row__track {
    gap: 10px;
  }

  body.home #tmm-speaker-section .tmm-speaker-profile-card__link {
    width: clamp(102px, 24vw, 122px);
  }
}

@media (max-width: 767px) {
  body.home #tmm-speaker-section .tmm-speaker-section__header,
  body.home #tmm-speaker-section .tmm-speaker-row__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  body.home #tmm-speaker-section .tmm-speaker-section__title {
    font-size: clamp(1.56rem, 8vw, 2.06rem);
  }

  body.home #tmm-speaker-section .tmm-speaker-row__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
    width: 100%;
    max-width: 100%;
  }

  body.home #tmm-speaker-section .tmm-speaker-row__track > *:nth-child(n + 7) {
    display: none !important;
  }

  body.home #tmm-speaker-section .tmm-speaker-profile-card__link {
    width: 100%;
    min-width: 0;
    gap: 5px;
    padding: 0;
  }

  body.home #tmm-speaker-section .tmm-speaker-profile-card__avatar {
    width: min(18vw, 62px);
  }

  body.home #tmm-speaker-section .tmm-speaker-row__viewport {
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 0;
  }

  body.home #tmm-speaker-section .tmm-speaker-row__footer {
    margin-top: 8px;
    justify-content: flex-end;
  }

  body.home #tmm-speaker-section .tmm-speaker-row__view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(50%, 170px);
    height: 40px;
    margin: 0;
    padding: 0 14px;
    border: 0 !important;
    border-radius: 999px !important;
    border-bottom: 0 !important;
    background: var(--tmm-yellow) !important;
    color: var(--tmm-royal) !important;
    font-family: "Poppins", "Li Ador Noirrit", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  body.home #tmm-speaker-section .tmm-speaker-row__view-more::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  body.home #tmm-speaker-section .tmm-speaker-row__view-more:hover,
  body.home #tmm-speaker-section .tmm-speaker-row__view-more:focus-visible {
    background: #FFE15A !important;
    color: var(--tmm-royal) !important;
    transform: translateY(-1px);
  }

  body.home #tmm-speaker-section .tmm-speaker-row__view-more:hover::after,
  body.home #tmm-speaker-section .tmm-speaker-row__view-more:focus-visible::after {
    transform: translateX(2px) rotate(45deg);
  }
}

body.home #tmm-publication-section {
  width: min(var(--jl-main-width, 1260px), calc(100vw - 30px));
  margin: clamp(20px, 2.4vw, 34px) auto 0;
  padding: clamp(16px, 2vw, 24px);
  background: #FFFFFF;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(5, 84, 199, 0.08);
}

body.home #tmm-publication-section .tmm-publication-section__header {
  margin-bottom: 14px;
}

body.home #tmm-publication-section .tmm-publication-section__title {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.06;
}

body.home #tmm-publication-section .tmm-publication-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(70px, 8.8vw, 118px);
  height: 4px;
  border-radius: 999px;
  background: var(--tmm-yellow);
}

body.home #tmm-publication-section .tmm-publication-section__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.home #tmm-publication-section .tmm-publication-row {
  --tmm-pub-card-width: clamp(210px, 20vw, 254px);
}

body.home #tmm-publication-section .tmm-publication-row--ebooks {
  --tmm-pub-card-width: clamp(170px, 16vw, 210px);
}

body.home #tmm-publication-section .tmm-publication-row__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body.home #tmm-publication-section .tmm-publication-row__title {
  margin: 0;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 800;
  line-height: 1.14;
}

body.home #tmm-publication-section .tmm-publication-row__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.home #tmm-publication-section .tmm-publication-nav {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 84, 199, 0.18) !important;
  border-radius: 10px;
  background: #FFFFFF !important;
  color: transparent !important;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

body.home #tmm-publication-section .tmm-publication-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid rgba(5, 84, 199, 0.62);
  border-right: 3px solid rgba(5, 84, 199, 0.62);
  transform: translate(-50%, -50%) rotate(45deg);
}

body.home #tmm-publication-section .tmm-publication-nav--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

body.home #tmm-publication-section .tmm-publication-nav:hover,
body.home #tmm-publication-section .tmm-publication-nav:focus-visible {
  background: rgba(0, 102, 224, 0.08) !important;
  border-color: rgba(0, 102, 224, 0.34) !important;
}

body.home #tmm-publication-section .tmm-publication-nav[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
}

body.home #tmm-publication-section .tmm-publication-row__view-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
  padding: 0 0 3px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.24);
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.04rem, 1.2vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
}

body.home #tmm-publication-section .tmm-publication-row__view-more::after {
  content: "\2192";
  line-height: 1;
}

body.home #tmm-publication-section .tmm-publication-row__view-more:hover,
body.home #tmm-publication-section .tmm-publication-row__view-more:focus-visible {
  color: var(--tmm-royal);
}

body.home #tmm-publication-section .tmm-publication-row__view-more--bottom {
  display: none;
}

body.home #tmm-publication-section .tmm-publication-row__footer {
  display: none;
}

body.home #tmm-publication-section .tmm-publication-row__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 84, 199, 0.26) transparent;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

body.home #tmm-publication-section .tmm-publication-row__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--tmm-pub-card-width);
  gap: 12px;
}

body.home #tmm-publication-section .tmm-publication-card,
body.home #tmm-publication-section .tmm-publication-book {
  min-width: 0;
  scroll-snap-align: start;
}

body.home #tmm-publication-section .tmm-publication-card__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}

body.home #tmm-publication-section .tmm-publication-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 84, 199, 0.08);
}

body.home #tmm-publication-section .tmm-publication-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.home #tmm-publication-section .tmm-publication-card__hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 10px 9px;
  background: linear-gradient(180deg, rgba(7, 18, 40, 0) 0%, rgba(7, 18, 40, 0.86) 86%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.home #tmm-publication-section .tmm-publication-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.22;
}

body.home #tmm-publication-section .tmm-publication-card__dot {
  opacity: 0.8;
}

body.home #tmm-publication-section .tmm-publication-card__excerpt {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.79rem;
  line-height: 1.32;
}

body.home #tmm-publication-section .tmm-publication-card__title {
  display: block;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.14vw, 1.14rem);
  font-weight: 700;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home #tmm-publication-section .tmm-publication-card__link:hover .tmm-publication-card__hover,
body.home #tmm-publication-section .tmm-publication-card__link:focus-visible .tmm-publication-card__hover {
  opacity: 1;
  transform: translateY(0);
}

body.home #tmm-publication-section .tmm-publication-book__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(5, 84, 199, 0.14);
  background: #FFFFFF;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.home #tmm-publication-section .tmm-publication-book__cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(5, 84, 199, 0.08);
}

body.home #tmm-publication-section .tmm-publication-book__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.home #tmm-publication-section .tmm-publication-book__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 102, 224, 0.92);
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.home #tmm-publication-section .tmm-publication-book__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.home #tmm-publication-section .tmm-publication-book__title {
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  font-weight: 700;
  line-height: 1.28;
  min-height: calc(1.28em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home #tmm-publication-section .tmm-publication-book__author {
  color: #1f1f1f;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.26;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.home #tmm-publication-section .tmm-publication-book__excerpt {
  color: #3e4a60;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.8rem;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home #tmm-publication-section .tmm-publication-book__link:hover,
body.home #tmm-publication-section .tmm-publication-book__link:focus-visible {
  border-color: rgba(0, 102, 224, 0.36);
  box-shadow: 0 10px 20px rgba(5, 84, 199, 0.13);
  transform: translateY(-1px);
}

@media (max-width: 1199px) {
  body.home #tmm-publication-section .tmm-publication-row {
    --tmm-pub-card-width: clamp(200px, 34vw, 240px);
  }

  body.home #tmm-publication-section .tmm-publication-row--ebooks {
    --tmm-pub-card-width: clamp(168px, 28vw, 196px);
  }
}

@media (max-width: 991px) {
  body.home #tmm-publication-section {
    width: min(100%, calc(100vw - 24px));
    padding: 14px;
    border-radius: 14px;
  }

  body.home #tmm-publication-section .tmm-publication-row__header {
    align-items: center;
  }

  body.home #tmm-publication-section .tmm-publication-row {
    --tmm-pub-card-width: clamp(182px, 55vw, 230px);
  }

  body.home #tmm-publication-section .tmm-publication-row--ebooks {
    --tmm-pub-card-width: clamp(156px, 45vw, 196px);
  }
}

@media (max-width: 767px) {
  body.home #tmm-publication-section .tmm-publication-section__title {
    font-size: clamp(1.56rem, 8vw, 2.06rem);
  }

  body.home #tmm-publication-section .tmm-publication-row__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
  }

  body.home #tmm-publication-section .tmm-publication-row__actions {
    width: auto;
    justify-content: flex-end;
    gap: 6px;
  }

  body.home #tmm-publication-section .tmm-publication-row {
    --tmm-pub-card-width: min(76vw, 286px);
  }

  body.home #tmm-publication-section .tmm-publication-row--ebooks {
    --tmm-pub-card-width: min(58vw, 220px);
  }

  body.home #tmm-publication-section .tmm-publication-nav {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  body.home #tmm-publication-section .tmm-publication-nav::after {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  body.home #tmm-publication-section .tmm-publication-card__hover {
    opacity: 1;
    transform: translateY(0);
    padding: 10px 9px 8px;
  }

  body.home #tmm-publication-section .tmm-publication-card__excerpt {
    display: none;
  }

  body.home #tmm-publication-section .tmm-publication-card__title {
    font-size: 1rem;
  }

  body.home #tmm-publication-section .tmm-publication-row__view-more--header {
    display: none !important;
  }

  body.home #tmm-publication-section .tmm-publication-row__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
  }

  body.home #tmm-publication-section .tmm-publication-row__view-more--bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(50%, 170px);
    max-width: min(50%, 170px);
    height: 40px;
    margin: 0;
    padding: 0 14px;
    border: 0 !important;
    border-radius: 999px !important;
    border-bottom: 0 !important;
    background: var(--tmm-yellow) !important;
    color: var(--tmm-royal) !important;
    font-family: "Poppins", "Li Ador Noirrit", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  body.home #tmm-publication-section .tmm-publication-row__view-more--bottom::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  body.home #tmm-publication-section .tmm-publication-row__view-more--bottom:hover,
  body.home #tmm-publication-section .tmm-publication-row__view-more--bottom:focus-visible {
    background: #FFE15A !important;
    color: var(--tmm-royal) !important;
    transform: translateY(-1px);
  }

  body.home #tmm-publication-section .tmm-publication-row__view-more--bottom:hover::after,
  body.home #tmm-publication-section .tmm-publication-row__view-more--bottom:focus-visible::after {
    transform: translateX(2px) rotate(45deg);
  }
}

/* Category Listing Redesign: left media list, right featured cards, load-more, recent row. */
body.archive.category .tmm-archive-legacy-hidden ,
body.tmm-archive-shared-layout .tmm-archive-legacy-hidden {
  display: none !important;
}

body.archive.category .tmm-archive-listing ,
body.tmm-archive-shared-layout .tmm-archive-listing {
  width: min(1240px, 100%);
  margin: clamp(26px, 3.3vw, 46px) auto 0;
  padding: 0 clamp(4px, 1.1vw, 12px) clamp(26px, 3vw, 40px);
}

body.archive.category .tmm-archive-listing__header ,
body.tmm-archive-shared-layout .tmm-archive-listing__header {
  margin: 0 0 18px;
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.2);
}

body.archive.category .tmm-archive-listing__title ,
body.tmm-archive-shared-layout .tmm-archive-listing__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.95rem, 3.6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.24;
}

body.archive.category .tmm-archive-listing__layout ,
body.tmm-archive-shared-layout .tmm-archive-listing__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(210px, 0.54fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: start;
}

body.archive.category .tmm-archive-main ,
body.tmm-archive-shared-layout .tmm-archive-main {
  min-width: 0;
}

body.archive.category .tmm-archive-main__list ,
body.tmm-archive-shared-layout .tmm-archive-main__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.archive.category .tmm-archive-item ,
body.tmm-archive-shared-layout .tmm-archive-item {
  margin: 0;
}

body.archive.category .tmm-archive-item__link ,
body.tmm-archive-shared-layout .tmm-archive-item__link {
  display: grid;
  grid-template-columns: minmax(210px, 34%) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(5, 84, 199, 0.16);
  background: var(--tmm-white);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(5, 84, 199, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.archive.category .tmm-archive-item__link:hover,
body.archive.category .tmm-archive-item__link:focus-visible,
body.tmm-archive-shared-layout .tmm-archive-item__link:hover,
body.tmm-archive-shared-layout .tmm-archive-item__link:focus-visible {
  border-color: rgba(5, 84, 199, 0.3);
  box-shadow: 0 14px 26px rgba(5, 84, 199, 0.11);
  transform: translateY(-1px);
}

body.archive.category .tmm-archive-item__media ,
body.tmm-archive-shared-layout .tmm-archive-item__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tmm-ivory);
}

body.archive.category .tmm-archive-item__media::before ,
body.tmm-archive-shared-layout .tmm-archive-item__media::before {
  content: "";
  display: block;
  padding-top: 67%;
}

body.archive.category .tmm-archive-item__media img ,
body.tmm-archive-shared-layout .tmm-archive-item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.archive.category .tmm-archive-item__body ,
body.tmm-archive-shared-layout .tmm-archive-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-width: 0;
}

body.archive.category .tmm-archive-item__meta ,
body.tmm-archive-shared-layout .tmm-archive-item__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-family: "Poppins", "Bornomala", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.3;
}

body.archive.category .tmm-archive-item__dot ,
body.tmm-archive-shared-layout .tmm-archive-item__dot {
  opacity: 0.7;
}

body.archive.category .tmm-archive-item__title ,
body.tmm-archive-shared-layout .tmm-archive-item__title {
  margin: 0;
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1.45vw, 1.52rem);
  font-weight: 700;
  line-height: 1.23;
}

body.archive.category .tmm-archive-item__category ,
body.tmm-archive-shared-layout .tmm-archive-item__category {
  color: #000000;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  opacity: 0.88;
}

body.archive.category .tmm-archive-item__excerpt ,
body.tmm-archive-shared-layout .tmm-archive-item__excerpt {
  margin: 0;
  color: #000000;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.98rem;
  line-height: 1.46;
  opacity: 0.92;
}

body.archive.category .tmm-archive-main__load-more ,
body.tmm-archive-shared-layout .tmm-archive-main__load-more {
  width: fit-content;
  min-width: clamp(150px, 18vw, 196px);
  max-width: 100%;
  height: 46px;
  margin: 18px auto 0;
  padding: 0 26px;
  border: 1px solid rgba(5, 84, 199, 0.28);
  border-radius: 999px;
  background: var(--tmm-white);
  color: var(--tmm-royal);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(5, 84, 199, 0.12);
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

body.archive.category .tmm-archive-main__load-more::after ,
body.tmm-archive-shared-layout .tmm-archive-main__load-more::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.archive.category .tmm-archive-main__load-more:hover,
body.archive.category .tmm-archive-main__load-more:focus-visible,
body.tmm-archive-shared-layout .tmm-archive-main__load-more:hover,
body.tmm-archive-shared-layout .tmm-archive-main__load-more:focus-visible {
  background: var(--tmm-royal);
  border-color: var(--tmm-royal);
  color: var(--tmm-white);
  box-shadow: 0 12px 24px rgba(5, 84, 199, 0.2);
  transform: translateY(-1px);
}

body.archive.category .tmm-archive-main__load-more:hover::after,
body.archive.category .tmm-archive-main__load-more:focus-visible::after,
body.tmm-archive-shared-layout .tmm-archive-main__load-more:hover::after,
body.tmm-archive-shared-layout .tmm-archive-main__load-more:focus-visible::after {
  transform: translateX(2px) rotate(45deg);
}

body.archive.category .tmm-archive-main__load-more[disabled] ,
body.tmm-archive-shared-layout .tmm-archive-main__load-more[disabled] {
  cursor: default;
  opacity: 0.72;
  box-shadow: none;
  transform: none;
}

body.archive.category .tmm-archive-main__load-more[disabled]::after ,
body.tmm-archive-shared-layout .tmm-archive-main__load-more[disabled]::after {
  opacity: 0.56;
}

body.archive.category .tmm-archive-main__load-more.is-exhausted ,
body.tmm-archive-shared-layout .tmm-archive-main__load-more.is-exhausted {
  background: rgba(5, 84, 199, 0.08);
  border-color: rgba(5, 84, 199, 0.18);
  color: rgba(0, 0, 0, 0.64);
}

body.archive.category .tmm-archive-featured ,
body.tmm-archive-shared-layout .tmm-archive-featured {
  border-radius: 12px;
  border: 1px solid rgba(5, 84, 199, 0.16);
  background: var(--tmm-white);
  padding: 10px;
}

body.archive.category .tmm-archive-featured__title ,
body.tmm-archive-shared-layout .tmm-archive-featured__title {
  margin: 0 0 10px;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.14rem, 1.45vw, 1.48rem);
  font-weight: 700;
  line-height: 1.2;
}

body.archive.category .tmm-archive-featured__list ,
body.tmm-archive-shared-layout .tmm-archive-featured__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

body.archive.category .tmm-archive-featured-card ,
body.tmm-archive-shared-layout .tmm-archive-featured-card {
  min-width: 0;
}

body.archive.category .tmm-archive-featured-card__link ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__link {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(5, 84, 199, 0.14);
  background: var(--tmm-white);
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

body.archive.category .tmm-archive-featured-card__link:hover,
body.archive.category .tmm-archive-featured-card__link:focus-visible,
body.tmm-archive-shared-layout .tmm-archive-featured-card__link:hover,
body.tmm-archive-shared-layout .tmm-archive-featured-card__link:focus-visible {
  border-color: rgba(5, 84, 199, 0.3);
  box-shadow: 0 10px 22px rgba(5, 84, 199, 0.1);
  transform: translateY(-1px);
}

body.archive.category .tmm-archive-featured-card__media ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__media {
  position: relative;
  display: block;
}

body.archive.category .tmm-archive-featured-card__media::before ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__media::before {
  content: "";
  display: block;
  padding-top: 46%;
}

body.archive.category .tmm-archive-featured-card__media img ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.archive.category .tmm-archive-featured-card__body ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

body.archive.category .tmm-archive-featured-card__title ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__title {
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.archive.category .tmm-archive-featured-card__meta ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__meta {
  color: #000000;
  font-family: "Poppins", "Bornomala", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.8;
}

body.archive.category .tmm-archive-featured-card__excerpt ,
body.tmm-archive-shared-layout .tmm-archive-featured-card__excerpt {
  color: #000000;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.78rem;
  line-height: 1.28;
  opacity: 0.86;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.archive.category .tmm-archive-recent ,
body.tmm-archive-shared-layout .tmm-archive-recent {
  margin-top: clamp(24px, 3vw, 34px);
}

body.archive.category .tmm-archive-recent__header ,
body.tmm-archive-shared-layout .tmm-archive-recent__header {
  margin-bottom: 12px;
}

body.archive.category .tmm-archive-recent__title ,
body.tmm-archive-shared-layout .tmm-archive-recent__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.28rem, 2.05vw, 1.78rem);
  font-weight: 700;
  line-height: 1.2;
}

body.archive.category .tmm-archive-recent__list ,
body.tmm-archive-shared-layout .tmm-archive-recent__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.archive.category .tmm-archive-recent-card ,
body.tmm-archive-shared-layout .tmm-archive-recent-card {
  min-width: 0;
}

body.archive.category .tmm-archive-recent-card__link ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(5, 84, 199, 0.14);
  background: var(--tmm-white);
  text-decoration: none;
  overflow: hidden;
}

body.archive.category .tmm-archive-recent-card__media ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__media {
  position: relative;
  display: block;
}

body.archive.category .tmm-archive-recent-card__media::before ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__media::before {
  content: "";
  display: block;
  padding-top: 60%;
}

body.archive.category .tmm-archive-recent-card__media img ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.archive.category .tmm-archive-recent-card__body ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

body.archive.category .tmm-archive-recent-card__author ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__author {
  color: #000000;
  font-family: "Poppins", "Bornomala", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.78;
}

body.archive.category .tmm-archive-recent-card__title ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__title {
  color: var(--tmm-azure);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

body.archive.category .tmm-archive-recent-card__excerpt ,
body.tmm-archive-shared-layout .tmm-archive-recent-card__excerpt {
  color: #000000;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
  opacity: 0.85;
}

body.archive.category .tmm-archive-empty ,
body.tmm-archive-shared-layout .tmm-archive-empty {
  margin: 0;
  color: #000000;
  font-family: "Poppins", "Bornomala", sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.8;
}

@media (max-width: 1080px) {
  body.archive.category .tmm-archive-listing__layout ,
body.tmm-archive-shared-layout .tmm-archive-listing__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  body.archive.category .tmm-archive-featured__list ,
body.tmm-archive-shared-layout .tmm-archive-featured__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.archive.category .tmm-archive-listing ,
body.tmm-archive-shared-layout .tmm-archive-listing {
    margin-top: 18px;
    padding-bottom: 24px;
  }

  body.archive.category .tmm-archive-listing__title ,
body.tmm-archive-shared-layout .tmm-archive-listing__title {
    font-size: clamp(1.62rem, 8vw, 2.05rem);
  }

  body.archive.category .tmm-archive-main__list ,
body.tmm-archive-shared-layout .tmm-archive-main__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.archive.category .tmm-archive-item__link ,
body.tmm-archive-shared-layout .tmm-archive-item__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  body.archive.category .tmm-archive-item__media::before ,
body.tmm-archive-shared-layout .tmm-archive-item__media::before {
    padding-top: 62%;
  }

  body.archive.category .tmm-archive-item__body ,
body.tmm-archive-shared-layout .tmm-archive-item__body {
    gap: 6px;
  }

  body.archive.category .tmm-archive-item__meta ,
body.tmm-archive-shared-layout .tmm-archive-item__meta {
    font-size: 0.76rem;
  }

  body.archive.category .tmm-archive-item__category ,
body.tmm-archive-shared-layout .tmm-archive-item__category {
    font-size: 0.82rem;
  }

  body.archive.category .tmm-archive-item__title ,
body.tmm-archive-shared-layout .tmm-archive-item__title {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  body.archive.category .tmm-archive-item__excerpt ,
body.tmm-archive-shared-layout .tmm-archive-item__excerpt {
    display: none;
  }

  body.archive.category .tmm-archive-featured__list ,
body.tmm-archive-shared-layout .tmm-archive-featured__list {
    grid-template-columns: minmax(0, 1fr);
  }

  body.archive.category .tmm-archive-recent__list ,
body.tmm-archive-shared-layout .tmm-archive-recent__list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  body.archive.category .tmm-archive-recent-card ,
body.tmm-archive-shared-layout .tmm-archive-recent-card {
    flex: 0 0 min(74vw, 256px);
    scroll-snap-align: start;
  }
}

#footer-container,
#jl-footer-custpl {
  display: none !important;
}

.tmm-site-footer {
  margin-top: clamp(30px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tmm-royal) 0%, var(--tmm-azure) 72%, var(--tmm-royal) 100%);
  color: var(--tmm-white);
}

.tmm-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 10%, rgba(51, 193, 255, 0.24) 0%, rgba(51, 193, 255, 0) 52%);
}

.tmm-site-footer__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(16px, 2.4vw, 24px);
}

.tmm-site-footer__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1.05fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

.tmm-site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: clamp(6px, 1vw, 12px) 0;
}

.tmm-site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.tmm-site-footer__logo img {
  width: clamp(250px, 25vw, 340px);
  min-width: 170px;
  height: auto;
  display: block;
}

.tmm-site-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tmm-site-footer__social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--tmm-white);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.tmm-site-footer__social a i,
.tmm-site-footer__social a svg {
  font-size: 1.08rem;
  line-height: 1;
}

.tmm-site-footer__social a:hover,
.tmm-site-footer__social a:focus-visible {
  color: var(--tmm-yellow);
  transform: translateY(-2px);
  opacity: 1;
}

.tmm-site-footer__nav,
.tmm-site-footer__subscribe-wrap {
  padding: clamp(6px, 1vw, 12px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tmm-site-footer__nav h3 {
  margin: 0 0 10px;
  color: var(--tmm-yellow);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.06rem, 1.2vw, 1.2rem);
  font-weight: 700;
}

.tmm-site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 18px;
}

.tmm-site-footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease, transform 0.2s ease;
}

.tmm-site-footer__nav-link-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tmm-site-footer__nav-link-icon svg {
  width: 14px;
  height: 14px;
}

.tmm-site-footer__nav a:hover,
.tmm-site-footer__nav a:focus-visible {
  color: var(--tmm-yellow);
  transform: translateX(2px);
}

.tmm-site-footer__subscribe-wrap h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tmm-white);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.tmm-site-footer__title-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tmm-yellow);
}

.tmm-site-footer__title-icon svg {
  width: 18px;
  height: 18px;
}

.tmm-site-footer__subscribe-form {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.tmm-site-footer__subscribe-form input[type="email"] {
  width: min(340px, 100%);
  height: 44px;
  padding: 0 0 0 2px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--tmm-white);
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

.tmm-site-footer__subscribe-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.tmm-site-footer__subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--tmm-yellow);
  background: transparent;
}

.tmm-site-footer__subscribe-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--tmm-yellow);
  color: var(--tmm-royal);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tmm-site-footer__subscribe-form button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tmm-site-footer__subscribe-form button:hover,
.tmm-site-footer__subscribe-form button:focus-visible {
  background: #FFE15A;
  color: var(--tmm-royal);
  transform: translateY(-1px);
}

.tmm-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 0;
}

.tmm-site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
}

.tmm-site-footer__to-top {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2.5vw, 30px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--tmm-yellow);
  color: var(--tmm-royal);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(5, 84, 199, 0.26);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.tmm-site-footer__to-top svg {
  width: 18px;
  height: 18px;
}

.tmm-site-footer__to-top:hover,
.tmm-site-footer__to-top:focus-visible {
  background: #FFE15A;
  color: var(--tmm-royal);
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .tmm-site-footer__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .tmm-site-footer__nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .tmm-site-footer__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tmm-site-footer__brand {
    align-items: center;
    text-align: center;
  }

  .tmm-site-footer__social {
    justify-content: center;
  }

  .tmm-site-footer__nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tmm-site-footer__subscribe-form {
    flex-direction: column;
  }

  .tmm-site-footer__subscribe-form input[type="email"] {
    width: 100%;
  }

  .tmm-site-footer__subscribe-form button {
    width: 100%;
  }

  .tmm-site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tmm-site-footer__to-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }
}

/* Single post layout v2 */
body.single-post .jl_single_tpl1 > .jl_smmain_side,
body.single-post .jl_relsec_wrap,
body.single-post .jl_shead_tpl1,
body.single-post .post_sw,
body.single-post .single_tag_share,
body.single-post .jl_sfoot,
body.single-post .jl_auth_single,
body.single-post .postnav_w,
body.single-post .single_section_comment {
  display: none !important;
}

body.single-post .jl_single_tpl1 > .jl_smmain_con {
  flex: 0 0 100%;
  max-width: 100%;
}

body.single-post .jls_con_w > :not(.post_content) {
  display: none !important;
}

body.single-post .post_content.jl_content {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.single-post .tmm-single-post-layout {
  max-width: min(1220px, 96vw);
  margin: clamp(16px, 1.9vw, 28px) auto clamp(26px, 3vw, 42px);
}

body.single-post .tmm-single-post-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}

body.single-post .tmm-single-article {
  min-width: 0;
}

body.single-post .tmm-single-hero {
  display: grid;
  gap: 14px;
}

body.single-post .tmm-single-hero-head {
  display: grid;
  gap: 10px;
}

body.single-post .tmm-single-hero-media-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

body.single-post .tmm-single-article__featured-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--tmm-ivory);
}

body.single-post .tmm-single-article__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-post .tmm-single-hero-card__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 8px;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 16px;
  background: var(--tmm-white);
}

body.single-post .tmm-single-hero-card__views {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--tmm-royal);
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
}

body.single-post .tmm-single-hero-card__views strong {
  font-size: 0.88rem;
  font-weight: 700;
}

body.single-post .tmm-single-hero-card__views span {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(5, 84, 199, 0.7);
}

body.single-post .tmm-single-hero-card__rail-links {
  display: grid;
  gap: 8px;
}

body.single-post .tmm-single-hero-card__rail-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(5, 84, 199, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--tmm-royal);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.single-post .tmm-single-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

body.single-post .tmm-single-social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

body.single-post .tmm-single-social-fallback {
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

body.single-post .tmm-single-hero-card__rail-link:hover,
body.single-post .tmm-single-hero-card__rail-link:focus-visible {
  background: var(--tmm-azure);
  border-color: var(--tmm-azure);
  color: var(--tmm-white);
}

/* Keep single-post hero meta font stable across template/body-class variations. */
body.single-post .tmm-single-hero-card__meta,
body.single .tmm-single-post-layout .tmm-single-hero-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(5, 84, 199, 0.78);
  font-family: "Bornomala", "Poppins", sans-serif !important;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.3;
}

body.single-post .tmm-single-hero-card__meta > *,
body.single .tmm-single-post-layout .tmm-single-hero-card__meta > * {
  font-family: inherit !important;
}

body.single-post .tmm-single-hero-card__meta a,
body.single .tmm-single-post-layout .tmm-single-hero-card__meta a {
  color: var(--tmm-royal);
  text-decoration: none;
  font-weight: 600;
}

body.single-post .tmm-single-hero-card__meta-dot,
body.single-post .tmm-single-article__meta-dot {
  color: rgba(5, 84, 199, 0.45);
}

body.single-post .tmm-single-hero-card__categories {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.single-post .tmm-single-hero-card__categories a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(252, 215, 34, 0.22);
  color: var(--tmm-royal);
  text-decoration: none;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

body.single-post .tmm-single-article__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
  text-wrap: balance;
}

body.single-post .tmm-single-article__intro {
  margin: 12px 0 0;
  color: rgba(5, 84, 199, 0.9);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

body.single-post .tmm-single-hero-card__author-row {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(5, 84, 199, 0.8);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
}

body.single-post .tmm-single-article__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tmm-royal);
  text-decoration: none;
  font-weight: 600;
}

body.single-post .tmm-single-article__author img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

body.single-post .tmm-single-hero-card__read {
  color: rgba(5, 84, 199, 0.78);
}

body.single-post .tmm-single-article__content-shell {
  margin-top: clamp(14px, 1.4vw, 22px);
}

body.single-post .tmm-single-article__meta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

body.single-post .tmm-single-article__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(5, 84, 199, 0.82);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

body.single-post .tmm-single-article__share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.single-post .tmm-single-article__share-label {
  color: rgba(5, 84, 199, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

body.single-post .tmm-single-article__share-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

body.single-post .tmm-single-article__share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(5, 84, 199, 0.18);
  color: var(--tmm-royal);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--tmm-white);
}

body.single-post .tmm-single-article__share-links a .tmm-single-social-icon {
  width: 14px;
  height: 14px;
}

body.single-post .tmm-single-article__share-links a:hover,
body.single-post .tmm-single-article__share-links a:focus-visible {
  background: var(--tmm-azure);
  border-color: var(--tmm-azure);
  color: var(--tmm-white);
}

body.single-post .tmm-single-article__content {
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.88;
}

body.single-post .tmm-single-article__content,
body.single-post .tmm-single-article__content p,
body.single-post .tmm-single-article__content li,
body.single-post .tmm-single-article__content blockquote,
body.single-post .tmm-single-article__content figcaption,
body.single-post .tmm-single-article__content td,
body.single-post .tmm-single-article__content th {
  font-family: "Bornomala", "Li Ador Noirrit", sans-serif !important;
}

body.single-post .tmm-single-article__content > :first-child {
  margin-top: 0;
}

body.single-post .tmm-single-article__content > :last-child {
  margin-bottom: 0;
}

body.single-post .tmm-single-article__content h2,
body.single-post .tmm-single-article__content h3,
body.single-post .tmm-single-article__content h4 {
  margin-top: 1.35em;
  margin-bottom: 0.46em;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
}

body.single-post .tmm-single-article__content a {
  color: var(--tmm-azure);
}

body.single-post .tmm-single-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

body.single-post .tmm-single-pagination {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(5, 84, 199, 0.16);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.single-post .tmm-single-pagination__label {
  color: rgba(5, 84, 199, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.single-post .tmm-single-pagination__item a,
body.single-post .tmm-single-pagination__item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(5, 84, 199, 0.18);
  color: var(--tmm-royal);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

body.single-post .tmm-single-post-nav {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(5, 84, 199, 0.16);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.single-post .tmm-single-post-nav__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 12px;
  background: var(--tmm-white);
  text-decoration: none;
}

body.single-post .tmm-single-post-nav__item--next {
  text-align: right;
}

body.single-post .tmm-single-post-nav__label {
  color: rgba(5, 84, 199, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.single-post .tmm-single-post-nav__title {
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

body.single-post .tmm-single-sidebar {
  min-width: 0;
  position: sticky;
  top: calc(var(--tmm-header-space, 0px) + 12px);
}

body.single-post .tmm-single-sidebar__block {
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 16px;
  background: var(--tmm-white);
  padding: 14px;
}

body.single-post .tmm-single-sidebar__title {
  margin: 0 0 12px;
  color: var(--tmm-royal);
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 700;
}

body.single-post .tmm-single-sidebar__list {
  display: grid;
  gap: 12px;
}

body.single-post .tmm-single-sidebar-card__link {
  display: block;
  text-decoration: none;
}

body.single-post .tmm-single-sidebar-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--tmm-ivory);
}

body.single-post .tmm-single-sidebar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-post .tmm-single-sidebar-card__body {
  padding: 8px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.single-post .tmm-single-sidebar-card__meta {
  color: rgba(5, 84, 199, 0.72);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.74rem;
  line-height: 1.3;
}

body.single-post .tmm-single-sidebar-card__title {
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: 1rem;
  line-height: 1.36;
  font-weight: 700;
}

body.single-post .tmm-single-sidebar-card__excerpt {
  color: rgba(5, 84, 199, 0.84);
  font-family: "Bornomala", "Li Ador Noirrit", sans-serif !important;
  font-size: 0.84rem;
  line-height: 1.45;
}

body.single-post .tmm-single-subscribe {
  margin-top: 14px;
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 16px;
  background: var(--tmm-white);
  padding: 14px;
}

body.single-post .tmm-single-subscribe__title {
  margin: 0 0 10px;
  color: var(--tmm-royal);
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

body.single-post .tmm-single-subscribe__form {
  display: grid;
  gap: 10px;
}

body.single-post .tmm-single-subscribe__form input[type="email"] {
  width: 100%;
  border: 1px solid rgba(5, 84, 199, 0.2);
  border-radius: 12px;
  padding: 11px 13px;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  color: var(--tmm-royal);
}

body.single-post .tmm-single-subscribe__form button {
  border: 1px solid var(--tmm-azure);
  background: var(--tmm-azure);
  color: var(--tmm-white);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

body.single-post .tmm-single-related {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(5, 84, 199, 0.16);
}

body.single-post .tmm-single-related__header {
  margin-bottom: 12px;
}

body.single-post .tmm-single-related__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
}

body.single-post .tmm-single-related__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.single-post .tmm-single-related-card__link {
  display: block;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: var(--tmm-white);
  height: 100%;
}

body.single-post .tmm-single-related-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--tmm-ivory);
}

body.single-post .tmm-single-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-post .tmm-single-related-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 11px 12px;
}

body.single-post .tmm-single-related-card__author {
  color: rgba(5, 84, 199, 0.74);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

body.single-post .tmm-single-related-card__title {
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.38;
}

body.single-post .tmm-single-related-card__excerpt {
  color: rgba(5, 84, 199, 0.84);
  font-family: "Bornomala", "Li Ador Noirrit", sans-serif !important;
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Force description/excerpt text to brand Bangla body font. */
body.single-post .tmm-single-article__intro,
body.single-post .tmm-single-sidebar-card__excerpt,
body.single-post .tmm-single-related-card__excerpt,
.single-tmm_video .tmm-single-video__excerpt,
body.page .tmm-profile-directory-card__excerpt,
body.page .tmm-profile-directory__intro-content {
  font-family: "Bornomala", "Li Ador Noirrit", sans-serif !important;
}

body.single-post .tmm-single-comments {
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 16px;
  background: var(--tmm-white);
}

body.single-post .tmm-single-comments__title {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.14);
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
}

body.single-post .tmm-single-comments .comments-area {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

body.single-post .tmm-single-comments .comment-list,
body.single-post .tmm-single-comments .jl_commentlist,
body.single-post .tmm-single-comments .children {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-post .tmm-single-comments .children {
  margin-top: 10px;
  padding-left: 14px;
}

body.single-post .tmm-single-comments .jl_commentlist li,
body.single-post .tmm-single-comments .comment-list li,
body.single-post .tmm-single-comments .children li {
  list-style: none;
}

body.single-post .tmm-single-comments .jl_commentlist li,
body.single-post .tmm-single-comments .comment-list li {
  border: 1px solid rgba(5, 84, 199, 0.12);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(51, 193, 255, 0.04);
}

body.single-post .tmm-single-comments .comment-body {
  display: grid;
  gap: 8px;
}

body.single-post .tmm-single-comments .comment-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-weight: 700;
}

body.single-post .tmm-single-comments .comment-author img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

body.single-post .tmm-single-comments .comment-metadata {
  color: rgba(5, 84, 199, 0.74);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  line-height: 1.3;
}

body.single-post .tmm-single-comments .comment-metadata a {
  color: inherit;
  text-decoration: none;
}

body.single-post .tmm-single-comments .comment-content,
body.single-post .tmm-single-comments .comment-content p {
  color: var(--tmm-royal);
  font-family: "Bornomala", "Li Ador Noirrit", sans-serif;
  font-size: 0.97rem;
  line-height: 1.72;
}

body.single-post .tmm-single-comments .reply a,
body.single-post .tmm-single-comments .comment-reply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(5, 84, 199, 0.22);
  border-radius: 999px;
  color: var(--tmm-royal);
  background: var(--tmm-white);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.single-post .tmm-single-comments .reply a:hover,
body.single-post .tmm-single-comments .reply a:focus-visible,
body.single-post .tmm-single-comments .comment-reply-link:hover,
body.single-post .tmm-single-comments .comment-reply-link:focus-visible {
  background: var(--tmm-azure);
  border-color: var(--tmm-azure);
  color: var(--tmm-white);
}

body.single-post .tmm-single-comments .comment-respond,
body.single-post .tmm-single-comments #respond {
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 12px;
  padding: 14px 14px 12px;
  background: rgba(51, 193, 255, 0.06);
}

body.single-post .tmm-single-comments .comment-reply-title {
  margin: 0 0 10px;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.34rem);
}

body.single-post .tmm-single-comments .comment-reply-title small a {
  margin-left: 8px;
  color: var(--tmm-azure);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

body.single-post .tmm-single-comments .comment-notes {
  margin: 0;
  color: rgba(5, 84, 199, 0.8);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
}

body.single-post .tmm-single-comments .comment-form {
  margin: 0;
  display: grid;
  gap: 12px;
}

body.single-post .tmm-single-comments .comment-form p {
  margin: 0;
}

body.single-post .tmm-single-comments .comment-form label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

body.single-post .tmm-single-comments input[type="text"],
body.single-post .tmm-single-comments input[type="email"],
body.single-post .tmm-single-comments input[type="url"],
body.single-post .tmm-single-comments textarea {
  border: 1px solid rgba(5, 84, 199, 0.2);
  border-radius: 10px;
  width: 100%;
  padding: 10px 12px;
  color: var(--tmm-royal);
  background: var(--tmm-white);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.96rem;
  line-height: 1.5;
}

body.single-post .tmm-single-comments textarea {
  min-height: 150px;
  resize: vertical;
}

body.single-post .tmm-single-comments input[type="text"]:focus,
body.single-post .tmm-single-comments input[type="email"]:focus,
body.single-post .tmm-single-comments input[type="url"]:focus,
body.single-post .tmm-single-comments textarea:focus {
  outline: none;
  border-color: var(--tmm-azure);
  box-shadow: 0 0 0 3px rgba(51, 193, 255, 0.22);
}

body.single-post .tmm-single-comments .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(5, 84, 199, 0.84);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.84rem;
  line-height: 1.45;
}

body.single-post .tmm-single-comments .comment-form-cookies-consent input[type="checkbox"] {
  margin-top: 2px;
}

body.single-post .tmm-single-comments .submit {
  border-radius: 999px;
  background: var(--tmm-azure);
  border: 1px solid var(--tmm-azure);
  color: var(--tmm-white);
  min-height: 40px;
  padding: 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.single-post .tmm-single-comments .submit:hover,
body.single-post .tmm-single-comments .submit:focus-visible {
  background: var(--tmm-royal);
  border-color: var(--tmm-royal);
  transform: translateY(-1px);
}

@media (max-width: 1199px) {
  body.single-post .tmm-single-post-layout__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.single-post .tmm-single-sidebar {
    position: static;
  }
}

@media (max-width: 991px) {
  body.single-post .tmm-single-related__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.single-post .tmm-single-hero-media-row {
    grid-template-columns: 1fr;
  }

  body.single-post .tmm-single-hero-card__rail {
    order: 2;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 12px;
  }

  body.single-post .tmm-single-hero-card__views {
    align-items: flex-start;
  }

  body.single-post .tmm-single-hero-card__rail-links {
    display: inline-flex;
  }

  body.single-post .tmm-single-article__share {
    display: none;
  }

  body.single-post .tmm-single-article__content {
    font-size: 1.03rem;
    line-height: 1.84;
  }

  body.single-post .tmm-single-comments {
    padding: 14px 12px;
  }

  body.single-post .tmm-single-comments .children {
    padding-left: 8px;
  }

  body.single-post .tmm-single-comments .submit {
    width: 100%;
  }

  body.single-post .tmm-single-article__meta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  body.single-post .tmm-single-post-nav {
    grid-template-columns: 1fr;
  }

  body.single-post .tmm-single-related__list {
    grid-template-columns: 1fr;
  }
}

/* Profile directory pages: guest speaker + panelists */
body.page .tmm-profile-directory {
  max-width: min(1080px, 94vw);
  margin: clamp(18px, 2.2vw, 34px) auto;
  padding: 0;
  border: 0;
  background: transparent;
}

body.page .tmm-profile-directory__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(14px, 1.8vw, 22px);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.22);
}

body.page .tmm-profile-directory__title {
  margin: 0;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  line-height: 1.15;
  color: var(--tmm-royal);
}

body.page .tmm-profile-directory__subtitle {
  margin: 8px 0 0;
  max-width: 70ch;
  color: rgba(5, 84, 199, 0.82);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

body.page .tmm-profile-directory__intro-content {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(51, 193, 255, 0.08);
}

body.page .tmm-profile-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 16px;
}

body.page .tmm-profile-directory-card {
  min-width: 0;
}

body.page .tmm-profile-directory-card__link {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  min-height: 210px;
  height: 100%;
  text-decoration: none;
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 16px;
  background: var(--tmm-white);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.page .tmm-profile-directory-card__link:hover,
body.page .tmm-profile-directory-card__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 224, 0.42);
  box-shadow: 0 10px 24px rgba(5, 84, 199, 0.14);
}

body.page .tmm-profile-directory-card__media {
  position: relative;
  display: block;
  height: 100%;
  background: var(--tmm-ivory);
}

body.page .tmm-profile-directory-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(5, 84, 199, 0), rgba(5, 84, 199, 0.2));
  pointer-events: none;
}

body.page .tmm-profile-directory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page .tmm-profile-directory-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 14px;
}

body.page .tmm-profile-directory-card__name {
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.28;
}

body.page .tmm-profile-directory-card__designation {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 84, 199, 0.1);
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

body.page .tmm-profile-directory-card__excerpt {
  color: rgba(5, 84, 199, 0.84);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.96rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page .tmm-profile-directory-card__content::after {
  content: "প্রোফাইল দেখুন \2192";
  margin-top: auto;
  color: var(--tmm-azure);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.page .tmm-profile-directory__empty {
  margin: 0;
  border: 1px dashed rgba(5, 84, 199, 0.3);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  color: rgba(5, 84, 199, 0.86);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 1.02rem;
}

@media (max-width: 991px) {
  body.page .tmm-profile-directory__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.page .tmm-profile-directory__header {
    align-items: flex-start;
  }

  body.page .tmm-profile-directory-card__link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.page .tmm-profile-directory-card__media {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  body.page .tmm-profile-directory-card__content {
    padding: 12px 12px 14px;
  }

  body.page .tmm-profile-directory-card__excerpt {
    -webkit-line-clamp: 3;
  }
}

/* Single profile pages: linked articles + videos */
body.single-tmm_profile .tmm-profile-single {
  max-width: min(1100px, 94vw);
  margin: clamp(18px, 2.2vw, 34px) auto;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

body.single-tmm_profile .tmm-profile-single__hero {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 22px);
  background: var(--tmm-white);
}

body.single-tmm_profile .tmm-profile-single__media {
  border-radius: 14px;
  overflow: hidden;
  background: var(--tmm-ivory);
  min-height: 220px;
}

body.single-tmm_profile .tmm-profile-single__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-tmm_profile .tmm-profile-single__meta {
  display: grid;
  align-content: start;
  gap: 10px;
}

body.single-tmm_profile .tmm-profile-single__name {
  margin: 0;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.1;
  color: var(--tmm-royal);
}

body.single-tmm_profile .tmm-profile-single__designation {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(5, 84, 199, 0.1);
  color: var(--tmm-royal);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

body.single-tmm_profile .tmm-profile-single__counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.single-tmm_profile .tmm-profile-single__counts span {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 102, 224, 0.08);
  border: 1px solid rgba(0, 102, 224, 0.18);
  color: var(--tmm-royal);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

body.single-tmm_profile .tmm-profile-single__bio {
  margin: 0;
  color: rgba(5, 84, 199, 0.86);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.62;
}

body.single-tmm_profile .tmm-profile-single__content {
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 16px;
  padding: clamp(14px, 1.8vw, 20px);
  background: var(--tmm-white);
}

body.single-tmm_profile .tmm-profile-single__content p {
  margin: 0 0 12px;
  color: rgba(17, 24, 39, 0.92);
  font-family: "Bornomala", "Poppins", sans-serif;
}

body.single-tmm_profile .tmm-profile-single__content p:last-child {
  margin-bottom: 0;
}

body.single-tmm_profile .tmm-profile-single__sections {
  display: grid;
  gap: clamp(14px, 1.9vw, 22px);
}

body.single-tmm_profile .tmm-profile-single-section {
  border: 1px solid rgba(5, 84, 199, 0.15);
  border-radius: 16px;
  padding: clamp(12px, 1.8vw, 18px);
  background: var(--tmm-white);
}

body.single-tmm_profile .tmm-profile-single-section__header {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.14);
}

body.single-tmm_profile .tmm-profile-single-section__header h2 {
  margin: 0;
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  color: var(--tmm-royal);
}

body.single-tmm_profile .tmm-profile-single-list {
  display: grid;
  gap: 12px;
}

body.single-tmm_profile .tmm-profile-single-item {
  min-width: 0;
}

body.single-tmm_profile .tmm-profile-single-item__link {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 14px;
  padding: 8px;
  text-decoration: none;
  background: var(--tmm-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.single-tmm_profile .tmm-profile-single-item__link:hover,
body.single-tmm_profile .tmm-profile-single-item__link:focus-visible {
  border-color: rgba(0, 102, 224, 0.4);
  box-shadow: 0 10px 20px rgba(5, 84, 199, 0.12);
}

body.single-tmm_profile .tmm-profile-single-item__media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--tmm-ivory);
}

body.single-tmm_profile .tmm-profile-single-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.single-tmm_profile .tmm-profile-single-item__body {
  display: grid;
  align-content: start;
  gap: 6px;
}

body.single-tmm_profile .tmm-profile-single-item__meta {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(5, 84, 199, 0.72);
}

body.single-tmm_profile .tmm-profile-single-item__title {
  font-family: "Li Ador Noirrit", "Bornomala", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--tmm-royal);
}

body.single-tmm_profile .tmm-profile-single-item__excerpt {
  color: rgba(17, 24, 39, 0.9);
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.97rem;
  line-height: 1.56;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.single-tmm_profile .tmm-profile-single__empty {
  margin: 0;
  border: 1px dashed rgba(5, 84, 199, 0.3);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  color: rgba(5, 84, 199, 0.86);
  font-family: "Bornomala", "Poppins", sans-serif;
}

@media (max-width: 768px) {
  body.single-tmm_profile .tmm-profile-single__hero {
    grid-template-columns: 1fr;
  }

  body.single-tmm_profile .tmm-profile-single__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body.single-tmm_profile .tmm-profile-single-item__link {
    grid-template-columns: 1fr;
  }

  body.single-tmm_profile .tmm-profile-single-item__media {
    aspect-ratio: 16 / 9;
  }
}

/* Donation banner shown above footer on all pages */
.tmm-donation-banner-wrap {
  margin-top: 16px;
}

.tmm-donation-banner-wrap__inner {
  max-width: min(1040px, 92vw);
  margin: 0 auto;
}

.tmm-donation-banner-wrap__link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(5, 84, 199, 0.18);
  aspect-ratio: 2560 / 853;
}

.tmm-donation-banner-wrap__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Donation page */
body.page .tmm-donate {
  --tmm-donate-deep: #0554C7;
  --tmm-donate-surface: rgba(5, 84, 199, 0.94);
  --tmm-donate-font-en: "Poppins", sans-serif;
  --tmm-donate-font-bn-heading: "Li Ador Noirrit", "Poppins", sans-serif;
  --tmm-donate-font-bn-body: "Bornomala", "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  max-width: min(1280px, 96vw);
  margin: 20px auto 36px;
  padding: clamp(18px, 3vw, 40px);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--tmm-royal) 0%, var(--tmm-azure) 100%);
  color: #fff;
  box-shadow: 0 26px 46px rgba(5, 84, 199, 0.26);
}

body.page .tmm-donate::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.3) 1px, transparent 0);
  background-size: 24px 24px;
}

body.page .tmm-donate > * {
  position: relative;
  z-index: 1;
}

body.page .tmm-donate-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

body.page .tmm-donate-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page .tmm-donate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  margin-bottom: 16px;
}

body.page .tmm-donate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252, 215, 34, 0.96);
}

body.page .tmm-donate-hero__lead > .tmm-donate-kicker {
  width: 100%;
  justify-content: center;
  text-align: center;
}

body.page .tmm-donate-kicker::before,
body.page .tmm-donate-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(252, 215, 34, 0.55);
}

body.page .tmm-donate-hero__lead h1 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
}

body.page .tmm-donate-hero__visual {
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  aspect-ratio: 800 / 500;
}

body.page .tmm-donate-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

body.page .tmm-donate-hero__lead h1 em {
  display: block;
  font-style: italic;
  font-weight: 700;
  color: var(--tmm-yellow);
}

body.page .tmm-donate-hero__lead p {
  margin: 18px 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

body.page .tmm-donation-page__intro-content {
  margin-top: 14px;
  border-left: 3px solid rgba(252, 215, 34, 0.76);
  padding: 10px 0 10px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.page .tmm-donate-tracker {
  background: var(--tmm-donate-surface);
  border: 1px solid rgba(252, 215, 34, 0.32);
  border-radius: 18px;
  padding: 20px 18px;
  align-self: start;
  width: 100%;
}

body.page .tmm-donate-tracker__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

body.page .tmm-donate-tracker__stats div {
  text-align: center;
  padding: 11px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

body.page .tmm-donate-tracker__stats div:first-child {
  grid-column: 1 / -1;
  padding: 12px 10px;
}

body.page .tmm-donate-tracker__stats div:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

body.page .tmm-donate-tracker__stats span {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.page .tmm-donate-tracker__stats strong {
  display: block;
  margin-top: 7px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  color: #fff;
}

body.page .tmm-donate-tracker__stats div:first-child strong {
  color: var(--tmm-yellow);
  font-size: clamp(1.9rem, 4.8vw, 2.95rem);
  line-height: 1;
}

body.page .tmm-donate-progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

body.page .tmm-donate-progress__fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--tmm-yellow);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page .tmm-donate-goal {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 800;
  color: var(--tmm-yellow);
}

body.page .tmm-donate-tracker__quick {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(252, 215, 34, 0.42);
  display: grid;
  gap: 10px;
}

body.page .tmm-donate-tracker__quick-label {
  display: inline-flex;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

body.page .tmm-donate-tracker__quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.page .tmm-donate-tracker__quick-btn {
  border: 1px solid rgba(252, 215, 34, 0.45);
  border-radius: 10px;
  background: rgba(252, 215, 34, 0.12);
  color: #fff;
  min-height: 42px;
  padding: 10px 10px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.page .tmm-donate-tracker__quick-btn:hover,
body.page .tmm-donate-tracker__quick-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(252, 215, 34, 0.2);
  box-shadow: 0 8px 16px rgba(5, 84, 199, 0.2);
}

body.page .tmm-donate-tracker__quick-link {
  justify-self: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  padding-bottom: 2px;
}

body.page .tmm-donate-tracker__quick-link:hover,
body.page .tmm-donate-tracker__quick-link:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

body.page .tmm-donate-notice {
  margin: 0 0 16px;
  border-radius: 12px;
  padding: 10px 14px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

body.page .tmm-donate-notice--success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

body.page .tmm-donate-notice--error {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

body.page .tmm-donate-form-area {
  background: var(--tmm-donate-surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: clamp(16px, 2.8vw, 30px);
  margin: 8px 0 20px;
}

body.page .tmm-donate-form-area__head {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

body.page .tmm-donate-form-area__head h2 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
}

body.page .tmm-donate-form-area__head p {
  margin: 10px auto 0;
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
}

body.page .tmm-donate-form {
  width: min(100%, 940px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

body.page .tmm-donate-form__block {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

body.page .tmm-donate-form__block:first-child {
  border-top: 0;
  padding-top: 0;
}

body.page .tmm-donate-label {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

body.page .tmm-donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.page .tmm-donate-amount-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  padding: 16px 12px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.page .tmm-donate-amount-btn:hover,
body.page .tmm-donate-amount-btn:focus-visible {
  border-color: rgba(252, 215, 34, 0.6);
  background: rgba(252, 215, 34, 0.18);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(5, 84, 199, 0.24);
}

body.page .tmm-donate-amount-btn.is-active {
  border-color: var(--tmm-yellow);
  background: var(--tmm-yellow);
  color: var(--tmm-royal);
  box-shadow: 0 8px 20px rgba(252, 215, 34, 0.26);
}

body.page .tmm-donate-custom-amount {
  margin-top: 10px;
}

body.page .tmm-donate-selected-amount {
  min-height: 2.2rem;
  margin-top: 10px;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--tmm-yellow);
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.page .tmm-donate-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.page .tmm-donate-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.page .tmm-donate-choice {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.page .tmm-donate-choice:hover,
body.page .tmm-donate-choice:focus-within {
  border-color: rgba(252, 215, 34, 0.7);
  background: rgba(252, 215, 34, 0.14);
  box-shadow: 0 8px 20px rgba(5, 84, 199, 0.16);
}

body.page .tmm-donate-choice input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--tmm-yellow);
}

body.page .tmm-donate-choice span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

body.page .tmm-donate-field-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.58);
}

body.page .tmm-donate-form input[type="text"],
body.page .tmm-donate-form input[type="email"],
body.page .tmm-donate-form input[type="number"],
body.page .tmm-donate-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px 12px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page .tmm-donate-form input::placeholder,
body.page .tmm-donate-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.page .tmm-donate-form input:focus,
body.page .tmm-donate-form textarea:focus {
  border-color: var(--tmm-yellow);
  box-shadow: 0 0 0 3px rgba(252, 215, 34, 0.2);
  outline: 0;
}

body.page .tmm-donate-anon {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

body.page .tmm-donate-anon input {
  width: 18px;
  height: 18px;
}

body.page .tmm-donate-instruction {
  margin: 0 0 12px;
  border-left: 3px solid rgba(252, 215, 34, 0.75);
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

body.page .tmm-donate-method-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

body.page .tmm-donate-method-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 10px;
  text-align: center;
}

body.page .tmm-donate-method-card strong {
  display: block;
  color: #fff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

body.page .tmm-donate-method-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

body.page .tmm-donate-method-card em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page .tmm-donate-method-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

body.page .tmm-donate-method-tab {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.page .tmm-donate-method-tab:hover,
body.page .tmm-donate-method-tab:focus-visible {
  border-color: rgba(252, 215, 34, 0.7);
  background: rgba(252, 215, 34, 0.16);
  color: #fff;
}

body.page .tmm-donate-method-tab.is-active {
  border-color: var(--tmm-yellow);
  background: rgba(252, 215, 34, 0.24);
  color: #fff;
}

body.page .tmm-donate-submit {
  margin-top: 8px;
  width: 100%;
  border: 1px solid var(--tmm-yellow);
  border-radius: 12px;
  background: var(--tmm-yellow);
  color: var(--tmm-royal);
  min-height: 62px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.2s ease;
}

body.page .tmm-donate-submit:hover,
body.page .tmm-donate-submit:focus-visible {
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(252, 215, 34, 0.3);
}

body.page .tmm-donate-payment-info {
  margin: 12px auto 0;
  width: min(100%, 760px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
  text-align: left;
}

body.page .tmm-donate-payment-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
}

body.page .tmm-donate-payment-info strong {
  color: #FFFFFF;
  margin-right: 6px;
}

body.page .tmm-donate-payment-info em {
  font-style: normal;
  color: rgba(252, 215, 34, 0.95);
  margin-left: 6px;
}

body.page .tmm-donate-submit-note {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.55;
}

body.page .tmm-donate-submit-note a {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

body.page .tmm-donate-submit-note a:hover,
body.page .tmm-donate-submit-note a:focus-visible {
  color: #FCD722;
  border-bottom-color: #FCD722;
}

/* Donation typography aligned with AGENTS.md brand rules. */
body.page .tmm-donation-page__intro-content,
body.page .tmm-donate-field-label,
body.page .tmm-donate-choice span,
body.page .tmm-donate-form input[type="text"],
body.page .tmm-donate-form input[type="email"],
body.page .tmm-donate-form input[type="number"],
body.page .tmm-donate-form textarea,
body.page .tmm-donate-payment-info p,
body.page .tmm-donate-submit-note,
body.page .tmm-donor-row strong,
body.page .tmm-donor-row small {
  font-family: var(--tmm-donate-font-bn-body) !important;
}

body.page .tmm-donate-label {
  font-family: var(--tmm-donate-font-bn-body) !important;
}

body.page .tmm-donate-submit {
  font-family: var(--tmm-donate-font-bn-heading) !important;
}

body.page .tmm-donate-kicker,
body.page .tmm-donate-hero__lead h1,
body.page .tmm-donate-form-area__head h2,
body.page .tmm-donate-form-area__head p,
body.page .tmm-donate-notice,
body.page .tmm-donor-wall__head h2,
body.page .tmm-donate-tracker__quick-label,
body.page .tmm-donate-tracker__quick-link,
body.page .tmm-donate-tracker__quick-btn,
body.page .tmm-donate-tracker__stats strong,
body.page .tmm-donate-goal,
body.page .tmm-donor-row__amount,
body.page .tmm-donor-row__date,
body.page .tmm-donor-row__avatar {
  font-family: var(--tmm-donate-font-en) !important;
}

body.page .tmm-donor-wall {
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 20px;
  padding: clamp(14px, 2.3vw, 24px);
  background: #fff;
}

body.page .tmm-donor-wall__head {
  margin-bottom: 14px;
  text-align: center;
}

body.page .tmm-donor-wall__head h2 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--tmm-royal);
}

body.page .tmm-donor-wall__table {
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 241, 220, 0.26) 0%, #fff 22%);
}

body.page .tmm-donor-wall__table-head,
body.page .tmm-donor-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto) minmax(120px, auto);
  gap: 14px;
  align-items: center;
}

body.page .tmm-donor-wall__table-head {
  padding: 12px 16px;
  background: rgba(5, 84, 199, 0.06);
  color: rgba(5, 84, 199, 0.66);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page .tmm-donor-wall__table-head span:nth-child(2),
body.page .tmm-donor-wall__table-head span:nth-child(3),
body.page .tmm-donor-row div:nth-child(2),
body.page .tmm-donor-row div:nth-child(3) {
  text-align: right;
}

body.page .tmm-donor-wall__list {
  max-height: 430px;
  overflow: auto;
}

body.page .tmm-donor-row {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(5, 84, 199, 0.1);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

body.page .tmm-donor-row:hover {
  background: rgba(245, 241, 220, 0.5);
  transform: translateX(2px);
}

body.page .tmm-donor-row:last-child {
  border-bottom: 0;
}

body.page .tmm-donor-row__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.page .tmm-donor-row__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(5, 84, 199, 0.34);
  background: rgba(5, 84, 199, 0.12);
  color: var(--tmm-royal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

body.page .tmm-donor-row__avatar.is-anonymous {
  background: rgba(252, 215, 34, 0.2);
  border-color: rgba(252, 215, 34, 0.88);
  color: var(--tmm-royal);
}

body.page .tmm-donor-row__text {
  min-width: 0;
  text-align: left;
}

body.page .tmm-donor-row strong {
  color: #0f172a;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.01rem;
  font-weight: 800;
  text-align: left;
}

body.page .tmm-donor-row small {
  display: block;
  margin-top: 4px;
  color: rgba(17, 24, 39, 0.64);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

body.page .tmm-donor-row__amount {
  color: var(--tmm-yellow);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: right;
  text-shadow: none;
}

body.page .tmm-donor-row__date {
  color: rgba(17, 24, 39, 0.56);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

body.page .tmm-donor-wall__empty {
  margin: 0;
  padding: 16px 14px;
  color: rgba(17, 24, 39, 0.84);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.92rem;
}

body.page .tmm-donation-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10080;
  transform: translate(-50%, 110px);
  opacity: 0;
  border-radius: 10px;
  border: 1px solid var(--tmm-yellow);
  background: var(--tmm-yellow);
  color: var(--tmm-royal);
  padding: 10px 16px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.page .tmm-donation-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 1024px) {
  body.page .tmm-donate-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.page .tmm-donate {
    max-width: min(1320px, 100%);
    border-radius: 0;
    margin: 0 auto 24px;
  }

  body.page .tmm-donate-amount-grid,
  body.page .tmm-donate-choice-grid,
  body.page .tmm-donate-method-cards,
  body.page .tmm-donate-method-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.page .tmm-donate {
    padding: 16px;
  }

  body.page .tmm-donate-kicker::before,
  body.page .tmm-donate-kicker::after {
    width: 20px;
  }

  body.page .tmm-donate-amount-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page .tmm-donate-field-grid,
  body.page .tmm-donate-choice-grid,
  body.page .tmm-donate-method-cards,
  body.page .tmm-donate-method-tabs {
    grid-template-columns: 1fr;
  }

  body.page .tmm-donor-wall__table-head {
    grid-template-columns: 1fr auto;
  }

  body.page .tmm-donor-wall__table-head span:last-child {
    display: none;
  }

  body.page .tmm-donor-row {
    grid-template-columns: 1fr auto;
  }

  body.page .tmm-donor-row__date {
    display: none;
  }

  body.page .tmm-donor-row__amount {
    font-size: 1.1rem;
    font-weight: 500;
  }

  body.page .tmm-donor-row__avatar {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  body.page .tmm-donation-toast {
    width: calc(100% - 20px);
    text-align: center;
    white-space: normal;
  }
}

/* Video archive page: YouTube-style category chips and grid layout */
body.post-type-archive-tmm_video .tmm-video-archive-legacy-hidden,
body.tax-tmm_video_category .tmm-video-archive-legacy-hidden {
  display: none !important;
}

body.post-type-archive-tmm_video .tmm-video-archive-page,
body.tax-tmm_video_category .tmm-video-archive-page {
  width: 100%;
  max-width: none;
  margin: 22px 0 34px;
  padding: 0;
}

body.post-type-archive-tmm_video .jl_block_content > .jlc-container,
body.tax-tmm_video_category .jl_block_content > .jlc-container {
  width: calc(100vw - 20px) !important;
  max-width: none !important;
}

body.post-type-archive-tmm_video .tmm-video-archive-page__header,
body.tax-tmm_video_category .tmm-video-archive-page__header {
  margin-bottom: 14px;
}

body.post-type-archive-tmm_video .tmm-video-archive-page__title,
body.tax-tmm_video_category .tmm-video-archive-page__title {
  margin: 0;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.9rem, 2.3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

body.post-type-archive-tmm_video .tmm-video-archive-page__chips,
body.tax-tmm_video_category .tmm-video-archive-page__chips {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
}

body.post-type-archive-tmm_video .tmm-video-archive-chip,
body.tax-tmm_video_category .tmm-video-archive-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 84, 199, 0.2);
  background: #eceff3;
  color: #222222;
  border-radius: 8px;
  min-height: 30px;
  padding: 0 10px;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.post-type-archive-tmm_video .tmm-video-archive-chip.is-active,
body.tax-tmm_video_category .tmm-video-archive-chip.is-active {
  background: var(--tmm-royal);
  border-color: var(--tmm-royal);
  color: var(--tmm-white);
}

body.post-type-archive-tmm_video .tmm-video-archive-chip:hover,
body.tax-tmm_video_category .tmm-video-archive-chip:hover {
  background: var(--tmm-royal);
  border-color: var(--tmm-royal);
  color: var(--tmm-white);
}

body.post-type-archive-tmm_video .tmm-video-archive-chip:focus-visible,
body.tax-tmm_video_category .tmm-video-archive-chip:focus-visible {
  outline: 2px solid var(--tmm-yellow);
  outline-offset: 1px;
}

body.post-type-archive-tmm_video .tmm-video-archive-page__grid,
body.tax-tmm_video_category .tmm-video-archive-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 16px;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__link,
body.tax-tmm_video_category .tmm-video-archive-card__link {
  display: block;
  text-decoration: none;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__thumb,
body.tax-tmm_video_category .tmm-video-archive-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #d9e3f2;
  overflow: hidden;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__thumb img,
body.tax-tmm_video_category .tmm-video-archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__duration,
body.tax-tmm_video_category .tmm-video-archive-card__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.84);
  color: var(--tmm-white);
  border-radius: 7px;
  padding: 2px 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__body,
body.tax-tmm_video_category .tmm-video-archive-card__body {
  display: grid;
  gap: 6px;
  padding-top: 10px;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__title,
body.tax-tmm_video_category .tmm-video-archive-card__title {
  color: #121212;
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__meta,
body.tax-tmm_video_category .tmm-video-archive-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #404040;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__dot,
body.tax-tmm_video_category .tmm-video-archive-card__dot {
  color: #6a6a6a;
}

body.post-type-archive-tmm_video .tmm-video-archive-card__category,
body.tax-tmm_video_category .tmm-video-archive-card__category {
  color: var(--tmm-royal);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

body.post-type-archive-tmm_video .tmm-video-archive-page__empty,
body.tax-tmm_video_category .tmm-video-archive-page__empty {
  margin: 12px 0 0;
  color: #505050;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

/* Single video watch page */
.single-tmm_video .tmm-video-watch {
  width: 100%;
  max-width: min(1320px, 100%);
  margin: 18px auto 30px;
  box-sizing: border-box;
  overflow-x: clip;
}

.single-tmm_video .jl_block_content > .jlc-container {
  width: 100% !important;
  max-width: min(var(--jl-main-width, 1260px), 100%) !important;
  margin: 0 auto !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  box-sizing: border-box !important;
}

.single-tmm_video .jl_single_tpl1 > .jlc-col-md-8,
.single-tmm_video .jl_single_tpl1 > .jlc-col-lg-8,
.single-tmm_video .jl_smmain_con {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.single-tmm_video .jl_single_tpl1 > .jlc-col-md-4,
.single-tmm_video .jl_single_tpl1 > .jlc-col-lg-4,
.single-tmm_video .jl_sm_side {
  display: none !important;
}

.single-tmm_video .jl_shead_tpl1,
.single-tmm_video .post_sw,
.single-tmm_video .jl_sfoot,
.single-tmm_video .jl_rads_w,
.single-tmm_video .jl_sauthor,
.single-tmm_video .jl_srelated,
.single-tmm_video .jl_comments,
.single-tmm_video .jl_comment_w {
  display: none !important;
}

.single-tmm_video .post_content_w,
.single-tmm_video .jls_con_w,
.single-tmm_video .jl_sg_rgap {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
}

.single-tmm_video .tmm-video-watch__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.single-tmm_video .tmm-video-watch__player-wrap {
  background: var(--tmm-white);
}

.single-tmm_video .tmm-video-watch__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 14px;
  overflow: hidden;
}

.single-tmm_video .tmm-video-watch__player iframe,
.single-tmm_video .tmm-video-watch__player video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.single-tmm_video .tmm-video-watch__header {
  margin-top: 10px;
}

.single-tmm_video .tmm-video-watch__title {
  margin: 0 0 8px;
  color: #111111;
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.28;
}

.single-tmm_video .tmm-video-watch__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #2b2b2b;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.9rem;
}

.single-tmm_video .tmm-video-watch__dot {
  color: #656565;
}

.single-tmm_video .tmm-video-watch__description {
  margin-top: 12px;
  color: #1f1f1f;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

.single-tmm_video .tmm-video-watch__description p {
  margin: 0;
}

.single-tmm_video .tmm-video-watch__comments {
  margin-top: 16px;
  border-top: 1px solid rgba(5, 84, 199, 0.15);
  padding-top: 14px;
}

.single-tmm_video .tmm-video-watch__comments-title {
  margin: 0 0 12px;
  color: var(--tmm-royal);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.single-tmm_video .tmm-video-watch__comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.single-tmm_video .tmm-video-watch__comment-list .comment {
  list-style: none;
  margin: 0;
}

.single-tmm_video .tmm-video-watch__comment-list .comment-body {
  border: 1px solid rgba(5, 84, 199, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fbfdff;
}

.single-tmm_video .tmm-video-watch__comment-list .comment-meta {
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.83rem;
}

.single-tmm_video .tmm-video-watch__comment-list .comment-content {
  color: #222222;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.98rem;
  line-height: 1.62;
}

.single-tmm_video .tmm-video-watch__comment-list .reply a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--tmm-royal);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.single-tmm_video .tmm-video-watch__comments-empty {
  margin: 0 0 12px;
  color: #565656;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.single-tmm_video .tmm-video-watch__comment-form-wrap .comment-reply-title {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.single-tmm_video .tmm-video-watch__comment-form-wrap .comment-form {
  display: grid;
  gap: 10px;
}

.single-tmm_video .tmm-video-watch__comment-form-wrap label {
  display: block;
  margin-bottom: 6px;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.single-tmm_video .tmm-video-watch__comment-form-wrap textarea,
.single-tmm_video .tmm-video-watch__comment-form-wrap input[type="text"],
.single-tmm_video .tmm-video-watch__comment-form-wrap input[type="email"],
.single-tmm_video .tmm-video-watch__comment-form-wrap input[type="url"] {
  width: 100%;
  border: 1px solid rgba(5, 84, 199, 0.2);
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #1f1f1f;
  background: #ffffff;
}

.single-tmm_video .tmm-video-watch__comment-submit {
  border: 1px solid var(--tmm-royal);
  border-radius: 999px;
  background: var(--tmm-royal);
  color: #ffffff;
  min-height: 42px;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.single-tmm_video .tmm-video-watch__sidebar {
  position: sticky;
  top: 106px;
}

.single-tmm_video .tmm-video-watch__sidebar-title {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.single-tmm_video .tmm-video-watch__related-list {
  display: grid;
  gap: 10px;
}

.single-tmm_video .tmm-video-watch__related-link {
  display: grid;
  grid-template-columns: minmax(120px, 0.95fr) minmax(0, 1.25fr);
  gap: 10px;
  text-decoration: none;
}

.single-tmm_video .tmm-video-watch__related-thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #dce7f5;
  aspect-ratio: 16 / 9;
}

.single-tmm_video .tmm-video-watch__related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-tmm_video .tmm-video-watch__related-duration {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.86);
  color: var(--tmm-white);
  border-radius: 6px;
  padding: 2px 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.single-tmm_video .tmm-video-watch__related-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-tmm_video .tmm-video-watch__related-title {
  color: #141414;
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.34;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-tmm_video .tmm-video-watch__related-meta {
  color: #4d4d4d;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  line-height: 1.3;
}

.single-tmm_video .tmm-video-watch__related-empty {
  margin: 0;
  color: #5f5f5f;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  body.post-type-archive-tmm_video .tmm-video-archive-page__grid,
  body.tax-tmm_video_category .tmm-video-archive-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .single-tmm_video .tmm-video-watch__layout {
    grid-template-columns: 1fr;
  }

  .single-tmm_video .tmm-video-watch__sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  body.post-type-archive-tmm_video .tmm-video-archive-page,
  body.tax-tmm_video_category .tmm-video-archive-page {
    width: 100%;
    margin-top: 16px;
  }

  body.post-type-archive-tmm_video .tmm-video-archive-page__grid,
  body.tax-tmm_video_category .tmm-video-archive-page__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .single-tmm_video .tmm-video-watch {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .single-tmm_video .jl_block_content > .jlc-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .single-tmm_video .tmm-video-watch__related-link {
    grid-template-columns: minmax(108px, 0.9fr) minmax(0, 1.1fr);
    gap: 8px;
  }
}

/* Contact page: custom professional layout */
body.tmm-contact-screen {
  background: #fff !important;
  --jl-bg-color: #fff;
}

body.tmm-contact-screen .jl_pc_sec_title {
  display: none !important;
}

body.tmm-contact-screen .jl_smmain_side {
  display: none !important;
}

body.tmm-contact-screen .jlc-row.main_content {
  display: block !important;
}

body.tmm-contact-screen .options_layout_wrapper .jlc-container {
  width: min(1520px, 97vw) !important;
  max-width: min(1520px, 97vw) !important;
}

body.tmm-contact-screen .jlc-col-md-8.jl_smmain_con,
body.tmm-contact-screen .content_single_page.jl_content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

body.tmm-contact-screen .tmm-contact-page {
  width: min(1280px, 100%);
  margin: clamp(20px, 2.8vw, 36px) auto clamp(24px, 3vw, 42px);
  padding: clamp(16px, 2.4vw, 30px);
  border: 1px solid rgba(5, 84, 199, 0.14);
  border-radius: 16px;
  background: var(--tmm-white);
}

body.tmm-contact-screen .tmm-contact-page__header {
  max-width: 900px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

body.tmm-contact-screen .tmm-contact-page__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tmm-royal);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.tmm-contact-screen .tmm-contact-page__kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tmm-yellow);
}

body.tmm-contact-screen .tmm-contact-page__header h1 {
  margin: 10px 0 8px;
  color: var(--tmm-royal);
  font-family: "Li Ador Noirrit", "Poppins", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

body.tmm-contact-screen .tmm-contact-page__header p {
  margin: 0;
  color: #1f2b40;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.7;
}

body.tmm-contact-screen .tmm-contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
}

body.tmm-contact-screen .tmm-contact-page__left {
  display: grid;
  gap: 14px;
}

body.tmm-contact-screen .tmm-contact-page__channels {
  display: grid;
  gap: 8px;
}

body.tmm-contact-screen .tmm-contact-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(5, 84, 199, 0.14);
  text-decoration: none;
}

body.tmm-contact-screen .tmm-contact-channel:first-child {
  border-top: 1px solid rgba(5, 84, 199, 0.14);
}

body.tmm-contact-screen .tmm-contact-channel__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 84, 199, 0.08);
  color: var(--tmm-royal);
}

body.tmm-contact-screen .tmm-contact-channel__icon svg {
  width: 20px;
  height: 20px;
}

body.tmm-contact-screen .tmm-contact-channel__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body.tmm-contact-screen .tmm-contact-channel__text strong {
  color: #111827;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

body.tmm-contact-screen .tmm-contact-channel__text em {
  color: var(--tmm-azure);
  font-style: normal;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

body.tmm-contact-screen .tmm-contact-channel__text small {
  color: #4b5563;
  font-family: "Bornomala", "Poppins", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

body.tmm-contact-screen .tmm-contact-page__social h2 {
  margin: 0 0 8px;
  color: var(--tmm-royal);
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

body.tmm-contact-screen .tmm-contact-page__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.tmm-contact-screen .tmm-contact-page__social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(5, 84, 199, 0.18);
  border-radius: 999px;
  background: #f3f6fb;
  color: #1f2b40;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

body.tmm-contact-screen .tmm-contact-page__social-links a i {
  color: var(--tmm-royal);
}

body.tmm-contact-screen .tmm-contact-page__social-links a:hover,
body.tmm-contact-screen .tmm-contact-page__social-links a:focus-visible {
  border-color: var(--tmm-royal);
  background: rgba(5, 84, 199, 0.08);
}

body.tmm-contact-screen .tmm-contact-page__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.tmm-contact-screen .tmm-contact-page__quick-links a {
  color: #1f2b40;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: #f5f7fb;
}

body.tmm-contact-screen .tmm-contact-page__quick-links a:hover,
body.tmm-contact-screen .tmm-contact-page__quick-links a:focus-visible {
  color: var(--tmm-royal);
  background: rgba(252, 215, 34, 0.36);
}

body.tmm-contact-screen .tmm-contact-page__right {
  border: 1px solid rgba(5, 84, 199, 0.16);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 22px);
  background: #fbfdff;
}

body.tmm-contact-screen .tmm-contact-page__notice {
  margin: 0 0 10px;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Poppins", "Bornomala", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

body.tmm-contact-screen .tmm-contact-page__notice--success {
  border: 1px solid rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: #14532d;
}

body.tmm-contact-screen .tmm-contact-page__notice--error {
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.12);
  color: #7f1d1d;
}

body.tmm-contact-screen .tmm-contact-form {
  display: grid;
  gap: 12px;
}

body.tmm-contact-screen .tmm-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.tmm-contact-screen .tmm-contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #1f2b40;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

body.tmm-contact-screen .tmm-contact-form input[type="text"],
body.tmm-contact-screen .tmm-contact-form input[type="email"],
body.tmm-contact-screen .tmm-contact-form select,
body.tmm-contact-screen .tmm-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 84, 199, 0.22);
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  color: #1f2b40;
  background: #fff;
  font-family: "Poppins", "Bornomala", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

body.tmm-contact-screen .tmm-contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

body.tmm-contact-screen .tmm-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--tmm-royal);
  border-radius: 999px;
  background: var(--tmm-royal);
  color: #fff;
  font-family: "Poppins", "Li Ador Noirrit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

body.tmm-contact-screen .tmm-contact-form__submit svg {
  width: 15px;
  height: 15px;
}

body.tmm-contact-screen .tmm-contact-form__submit:hover,
body.tmm-contact-screen .tmm-contact-form__submit:focus-visible {
  background: var(--tmm-azure);
  border-color: var(--tmm-azure);
}

@media (max-width: 991px) {
  body.tmm-contact-screen .options_layout_wrapper .jlc-container {
    width: min(100%, calc(100vw - 18px)) !important;
    max-width: min(100%, calc(100vw - 18px)) !important;
  }

  body.tmm-contact-screen .tmm-contact-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.tmm-contact-screen .tmm-contact-page {
    padding: 14px;
    border-radius: 12px;
  }

  body.tmm-contact-screen .tmm-contact-page__header h1 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  body.tmm-contact-screen .tmm-contact-form__grid {
    grid-template-columns: 1fr;
  }

  body.tmm-contact-screen .tmm-contact-page__social-links a {
    min-height: 32px;
    font-size: 0.8rem;
  }
}
