/**
 * Telliant Nav — front-end styles.
 * Two panel patterns:
 * 1) T1 > T2 > T3 with an optional case-study aside.
 * 2) T1 > T2 only with the remaining area used for feature/podcast/case-study cards.
 */

:root {
  --tn-blue: #22a8f2;
  --tn-blue-soft: #eef7ff;
  --tn-blue-ink: #1697df;
  --tn-ink: #1e2228;
  --tn-ink-soft: #6f7d8b;
  --tn-line: #e8edf2;
  --tn-line-strong: #dfe7ef;
  --tn-orange: #f79a21;
  --tn-orange-hover: #e5890f;
  --tn-orange-active: #cf7a0d;
  --tn-orange-soft: #fff1df;
  --tn-white: #ffffff;
  --tn-shell: #fbfdff;
  --tn-rail-bg: #f7fbff;
  --tn-shadow: 0 14px 40px rgba(17, 31, 52, 0.08);
  --tn-header-shadow: 0 4px 22px rgba(12, 26, 45, 0.08);
  --tn-font: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.tn-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  font-family: var(--tn-font);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(232, 237, 242, 0.9);
  box-shadow: var(--tn-header-shadow);
  backdrop-filter: blur(10px);
}

.tn-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(12, 26, 45, 0.12);
}

.notification-bar ~ .tn-header {
  top: 30px;
}

.tn-header.top-0 {
  top: 0 !important;
}

.tn-header-inner {
  width: 100%;
  max-width: 1320px;
  min-height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 24px;
}

.tn-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.tn-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-height: 56px;
}

.tn-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.tn-top {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tn-top-item {
  position: static;
}

.tn-top-link {
  display: inline-flex;
  align-items: center;
  /* Tall vertical padding makes each menu link fill the full header height, so
     there's no dead strip below the label — the hover carries straight down
     into the floating panel (which has a matching transparent top bridge). */
  padding: 31px 14px;
  color: #4b5561;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.tn-top-item:hover > .tn-top-link,
.tn-top-item.is-open > .tn-top-link,
.tn-top-link:focus-visible {
  color: var(--tn-orange);
}

.tn-search-shell {
  display: inline-flex;
  align-items: center;
}

.tn-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #52606e;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s ease;
}

.tn-search-toggle:hover,
.tn-search-toggle:focus-visible {
  color: var(--tn-orange);
}

/* The theme already animates .btn-pulse-animation via :before/:after
   (yellow-button-pulse) — reuse that; here we only lay the button out. */
.btn-pulse-animation {
  position: relative;
  margin-left: 12px;
  display: inline-flex;
  align-items: stretch;
  border-radius: 8px;
  background: var(--tn-orange);
  transition: background 0.2s ease, transform 0.12s ease;
}

/* High specificity to beat the theme's
   `.pulse-button-label{display:block;padding:3px 5px!important}` so the label
   is genuinely centred in the button. */
.tn-header .btn-pulse-animation .tn-cta,
.tn-header .btn-pulse-animation .pulse-button-label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 40px;
  min-height: 40px;
  padding: 0px 16px !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1 !important;
  text-decoration: none;
  border-radius: 8px;
}

.tn-header .btn-pulse-animation:hover {
  background: var(--tn-orange-hover);
}

.tn-header .btn-pulse-animation:active {
  background: var(--tn-orange-active);
  transform: scale(0.97);
}

.tn-header .btn-pulse-animation:has(.tn-cta:focus-visible) {
  outline: 2px solid var(--tn-orange-active);
  outline-offset: 2px;
}

.tn-burger {
  display: none;
  flex: 0 0 auto;
  padding: 0;
  color: #4b5561;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tn-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 99px;
}

/* ---------- Dropdown shell --------------------------------------------- */
.tn-panel {
  position: absolute;
  top: 100%;
  /* Floating, contained card — pulled in from the page edges, centred under the
     header (not full-bleed). The transparent top padding bridges the visual gap
     so hover doesn't drop while the pointer travels from the menu item to the
     card. */
  left: 50%;
  right: auto;
  width: min(1240px, calc(100vw - 40px));
  z-index: 999;
  padding: 14px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.tn-top-item:hover .tn-panel,
.tn-top-item.is-open .tn-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.tn-panel-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: stretch;
  background: var(--tn-white);
  border: 1px solid var(--tn-line);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(12, 26, 45, 0.18), 0 4px 12px rgba(12, 26, 45, 0.06);
  overflow: hidden;
}

.tn-rail-column {
  flex: 0 0 288px;
  width: 288px;
  padding: 16px 12px;
  background: var(--tn-rail-bg);
  border-right: 1px solid var(--tn-line);
}

.tn-rail-kicker {
  margin: 4px 0 8px;
  padding-left: 12px;
  color: #b2bfd0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.tn-rail,
.tn-rail li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tn-rail--links,
.tn-panel--mega .tn-rail {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tn-rail-item > a,
.tn-rail-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 0;
  padding: 9px 12px;
  color: #4b5561;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.tn-rail-item:hover > a,
.tn-rail-item.is-active > a,
.tn-rail-link:hover {
  color: var(--tn-blue-ink);
  background: var(--tn-blue-soft);
  /* Square left edge so the accent bar is a sharp rectangle, not rounded. */
  border-radius: 0 8px 8px 0;
  box-shadow: inset 3px 0 0 var(--tn-blue);
}

.tn-rail-chevron {
  margin-left: auto;
  color: var(--tn-blue);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tn-rail-item:hover .tn-rail-chevron,
.tn-rail-item.is-active .tn-rail-chevron {
  opacity: 1;
}

.tn-ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--tn-blue-soft);
  border-radius: 9px;
  color: var(--tn-blue);
  font-size: 17px;
  line-height: 1;
}

.tn-rail-item:hover > a .tn-ico,
.tn-rail-item.is-active > a .tn-ico {
  background: #fff;
  color: var(--tn-blue);
}

.tn-ico--empty {
  opacity: 0;
}

.tn-item-text {
  min-width: 0;
}

.tn-item-label,
.tn-rail-label {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.tn-item-sub {
  display: block;
  margin-top: 4px;
  color: var(--tn-ink-soft);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
}

/* ---------- Company / T2-only layout ----------------------------------- */
.tn-panel--company .tn-cards--company {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tn-panel--company .tn-card {
  min-width: 0;
  padding: 20px 26px 22px;
  border-right: 1px solid var(--tn-line-strong);
}

.tn-panel--company .tn-card:last-child {
  border-right: 0;
}

.tn-panel--company .tn-card-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--tn-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tn-panel--company .tn-card-img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 14px;
}

.tn-panel--company .tn-card-title {
  display: none;
}

.tn-panel--company .tn-card-blurb {
  margin: 0 0 14px;
  color: #616f7e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.tn-panel--company .tn-card-cta {
  color: var(--tn-blue-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Mega / T2-T3 layout ---------------------------------------- */
.tn-panel-main {
  flex: 1 1 auto;
  min-width: 0;
}

.tn-panel-aside {
  flex: 0 0 318px;
  width: 318px;
  padding: 18px 24px 22px;
  border-left: 1px solid var(--tn-line);
}

.tn-panel-aside-stack {
  display: flex;
  flex-direction: column;
}

/* Cards / case studies rendered as columns beside a grid. */
.tn-support-card .tn-card,
.tn-support-card .tn-cs {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tn-support-card .tn-card-kicker,
.tn-support-card .tn-cs-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--tn-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* All card graphics are full-bleed like the case-study image. */
.tn-support-card .tn-card-img,
.tn-support-card .tn-cs-img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* "contain" image fit — logos/badges show whole, never cropped. */
.tn-support-card .tn-card-img--contain,
.tn-support-card .tn-cs-img--contain,
.tn-panel--company .tn-card-img--contain {
  object-fit: contain;
  background: #f6f9fc;
  padding: 16px;
}

.tn-support-card .tn-card-title,
.tn-support-card .tn-cs-title {
  margin: 0 0 6px;
  color: #1e2329;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.tn-support-card .tn-card-blurb,
.tn-support-card .tn-cs-blurb {
  margin: 0 0 10px;
  color: #738190;
  font-size: 13.5px;
  line-height: 1.5;
}

.tn-panes {
  min-width: 0;
  position: relative;
}

.tn-pane[hidden] {
  display: none;
}

.tn-pane-body {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 18px 0 22px;
}

/* Grid column, with a divider before the card columns. */
.tn-pane-grid-wrap {
  flex: 0 0 auto;
  padding: 0 32px 0 26px;
  border-right: 1px solid var(--tn-line-strong);
}

/* Cards fill the space beside the grid, laid out as equal columns with
   dividers between them (mirrors the company-layout card dividers). */
.tn-pane-cards {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.tn-support-card {
  flex: 1 1 0;
  min-width: 258px;
  max-width: 360px;
  padding: 0 28px;
  border-right: 1px solid var(--tn-line-strong);
}

.tn-support-card:last-child {
  border-right: 0;
}

.tn-pane-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #394654;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.tn-pane-head span {
  color: #394654;
}

.tn-pane-head .tn-ico {
  width: 38px;
  height: 38px;
  background: var(--tn-blue);
  color: #fff;
  font-size: 18px;
}

.tn-pane-arrow {
  color: var(--tn-blue);
  font-style: normal;
  font-size: 16px;
}

.tn-grid {
  display: grid;
  grid-template-columns: 272px;
  gap: 2px 30px;
}

.tn-grid--2 {
  grid-template-columns: 272px 272px;
}

.tn-grid-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-height: 0;
  padding: 9px 10px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.18s ease;
}

.tn-grid-item:hover {
  background: var(--tn-blue-soft);
}

.tn-grid-item .tn-ico {
  width: 34px;
  height: 34px;
  margin-top: 0;
  font-size: 16px;
}

.tn-grid-item .tn-item-label {
  color: #1f242b;
  font-size: 15px;
  font-weight: 700;
}

.tn-grid-item .tn-item-sub {
  margin-top: 3px;
  color: #8a99a8;
  font-size: 11.5px;
}

.tn-fallback-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  min-height: 100%;
}

.tn-panel--with-aside .tn-fallback-cards {
  grid-template-columns: minmax(0, 1fr);
}

.tn-fallback-cards .tn-card {
  padding: 26px 28px 28px;
}

.tn-fallback-cards .tn-card-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--tn-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tn-fallback-cards .tn-card-img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #f8fbff;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.tn-fallback-cards .tn-card-title {
  margin: 0 0 6px;
  color: #1e2329;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.tn-fallback-cards .tn-card-blurb {
  margin: 0 0 12px;
  color: #738190;
  font-size: 14px;
  line-height: 1.55;
}

.tn-card-cta,
.tn-cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tn-blue-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.tn-card-cta i,
.tn-cs-cta i {
  font-style: normal;
}

.tn-card-img--placeholder,
.tn-cs-img--placeholder {
  display: block;
  background: repeating-linear-gradient(135deg, #eef4fb, #eef4fb 10px, #f7fbff 10px, #f7fbff 20px);
  border-radius: 12px;
}

.tn-fallback-empty {
  min-height: 280px;
}

.tn-cs {
  display: flex;
  flex-direction: column;
}

.tn-cs-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--tn-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tn-cs-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.tn-cs-title {
  margin: 0 0 8px;
  color: #1f242b;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.tn-cs-blurb {
  margin: 0 0 16px;
  color: #738190;
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Search overlay --------------------------------------------- */
.tn-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: block;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.tn-search-overlay[hidden] {
  display: block;
}

.tn-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tn-search-close {
  position: absolute;
  top: 20px;
  right: 28px;
  padding: 0;
  color: var(--tn-orange);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.tn-search-form {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding-top: 22vh;
  text-align: center;
}

.tn-search-input {
  width: 100%;
  padding: 18px 28px;
  color: #677380;
  font-family: var(--tn-font);
  font-size: 34px;
  font-weight: 400;
  text-align: center;
  background: #f5f7fa;
  border: 1px solid var(--tn-line);
  border-radius: 8px;
  outline: none;
}

.tn-search-input:focus {
  border-color: var(--tn-orange);
}

.tn-search-submit {
  margin-top: 20px;
  padding: 12px 32px;
  color: var(--tn-white);
  font-size: 16px;
  font-weight: 700;
  background: #1daa45 !important;
  border: 0;
  border-radius: 8px;
}

.tn-search-hint {
  margin-top: 20px;
  color: #556270;
  font-size: 15px;
}

/* ---------- Mobile drawer (slide-in, push navigation) ------------------- */
.tn-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  font-family: var(--tn-font);
}

.tn-drawer[hidden] {
  display: none;
}

.tn-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 45, 0.5);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.tn-drawer.is-open .tn-drawer-backdrop {
  opacity: 1;
}

.tn-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(400px, 88vw);
  background: var(--tn-white);
  box-shadow: -12px 0 44px rgba(12, 26, 45, 0.22);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.tn-drawer.is-open .tn-drawer-panel {
  transform: translateX(0);
}

.tn-drawer-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid var(--tn-line);
}

.tn-drawer-logo img {
  display: block;
  width: auto;
  height: 30px;
}

.tn-drawer-close {
  background: 0;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  color: var(--tn-ink-soft);
  padding: 2px 8px;
}

.tn-drawer-body {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

.tn-dr-view {
  position: absolute;
  inset: 0;
  /* Override the theme's global `section { padding: 40px 0 !important }`,
     which was adding the phantom top gap to these <section> views. */
  padding: 0 !important;
  overflow-y: auto;
  background: var(--tn-white);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-overflow-scrolling: touch;
}

.tn-dr-view.is-active {
  transform: translateX(0);
  visibility: visible;
}

.tn-dr-view.is-behind {
  transform: translateX(-26%);
  visibility: visible;
}

.tn-dr-view-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 12px 18px 12px;
  background: var(--tn-white);
  border-bottom: 1px solid var(--tn-line);
}

.tn-dr-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 20px -2px;
  padding: 2px 0px;
  background: 0;
  border: 0;
  cursor: pointer;
  font-family: var(--tn-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--tn-ink-soft);
}

.tn-dr-back i {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
}

.tn-dr-view-title {
  font-family: var(--tn-font);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--tn-ink);
  text-decoration: none;
}

a.tn-dr-view-title:active {
  color: var(--tn-blue-ink);
}

.tn-dr-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 16px 14px;
  padding: 3px 4px 3px 14px;
  background: #f4f7fa;
  border: 1px solid var(--tn-line);
  border-radius: 12px;
}

.tn-dr-search input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 9px 0;
  border: 0;
  background: 0;
  outline: none;
  font-family: var(--tn-font);
  font-size: 15px;
  color: var(--tn-ink);
}

.tn-dr-search button {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--tn-blue);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.tn-dr-search button .fi {
  display: inline-flex;
  line-height: 1;
}

.tn-dr-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.tn-dr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 18px;
  background: 0;
  border: 0;
  border-bottom: 1px solid var(--tn-line);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-family: var(--tn-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--tn-ink);
}

.tn-dr-list li:last-child .tn-dr-row {
  border-bottom: 0;
}

.tn-dr-row:active {
  background: var(--tn-blue-soft);
}

.tn-dr-label {
  flex: 1 1 auto;
  min-width: 0;
}

.tn-dr-chev {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #3f4e5b;
}

.tn-dr-ico {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--tn-blue-soft);
  color: var(--tn-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.tn-dr-ico i {
  display: inline-flex;
  line-height: 1;
}

.tn-drawer-foot {
  flex: 0 0 auto;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--tn-line);
}

.tn-dr-cta {
  display: block;
  padding: 14px;
  border-radius: 10px;
  background: var(--tn-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 1320px) {
  .tn-header-inner {
    width: calc(100vw - 24px);
  }

  .tn-top-link {
    padding-inline: 10px;
  }

  .tn-panel-aside {
    flex-basis: 340px;
    width: 340px;
  }
}

@media (max-width: 1199px) {
  .tn-header-inner {
    min-height: 74px;
  }

  .tn-nav {
    display: none;
  }

  .tn-burger {
    display: block;
  }

  .btn-pulse-animation {
    display: none;
  }

  .tn-search-shell {
    display: none;
  }
}

@media (max-width: 991px) {
  .tn-panel {
    display: none;
  }
}

@media (max-width: 767px) {
  .tn-header-inner {
    width: calc(100vw - 20px);
    min-height: 68px;
  }

  .tn-logo img {
    max-height: 38px;
  }

  .tn-search-form {
    width: calc(100vw - 28px);
    padding-top: 18vh;
  }

  .tn-search-input {
    font-size: 22px;
  }

  .tn-search-close {
    top: 16px;
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tn-header,
  .tn-panel,
  .tn-search-overlay,
  .tn-top-link,
  .tn-rail-item > a,
  .tn-grid-item,
  .tn-search-toggle {
    transition: none;
  }

  .btn-pulse-animation::before,
  .btn-pulse-animation::after {
    animation: none !important;
  }
}
