/**
 * Single service, service direction archive and the Služby hub.
 *
 * Structure follows the design's service pages (T.I.M Reklama v Googlu and
 * siblings): hero, why, tools, steps, tariffs, FAQ, consultation, SEO copy and
 * a jump list to the other services. Content is ACF-driven, so section order is
 * fixed here while every string comes from the database.
 *
 * Breakpoint is 900px throughout, matching the design's own media queries.
 */

/* ---------------------------------------------------------------- shared */

.tim-svc {
  background: var(--tim-dark);
  color: var(--tim-on-dark);
}

.tim-svc section {
  position: relative;
  overflow: hidden;
  padding: 76px clamp(18px, 5vw, 64px);
}

.tim-svc__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tim-svc__inner--narrow {
  max-width: 1300px;
}

.tim-svc__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.tim-svc__heading {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.tim-svc__kicker {
  color: var(--tim-magenta);
  font: 600 13px var(--tim-font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tim-svc__title {
  margin: 0;
  font: 800 clamp(28px, 3.4vw, 46px) / 1.1 var(--tim-font-display);
  color: var(--tim-on-dark);
  text-wrap: pretty;
}

.tim-svc__lede {
  color: var(--tim-on-dark-dim);
  font: 400 15.5px/1.55 var(--tim-font-body);
  max-width: 320px;
}

/* Oversized outlined word bleeding off the section edge. */
.tim-svc__ghost {
  position: absolute;
  font: 800 clamp(120px, 18vw, 240px) / 1 var(--tim-font-display);
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
}

.tim-svc__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 900px 520px at 50% 0%,
    rgba(230, 0, 126, 0.09) 0%,
    rgba(230, 0, 126, 0) 70%
  );
}

/* Light sections invert the palette. */
.tim-svc__section--light {
  background: var(--tim-cream);
  color: var(--tim-ink);
}

.tim-svc__section--light .tim-svc__title {
  color: var(--tim-ink);
}

.tim-svc__section--light .tim-svc__lede {
  color: var(--tim-ink-400);
}

.tim-svc__section--light .tim-svc__ghost {
  color: rgba(20, 18, 22, 0.04);
}

/*
 * Chapter bands alternate light and dark. Everything below is white-on-dark by
 * default, so the light band needs its own ink — without these the heading,
 * the body copy and the card titles all render white on cream.
 */
.tim-svc__section--light .tim-svc-chapter__title,
.tim-svc__section--light .tim-svc-card__name {
  color: var(--tim-ink);
}

.tim-svc__section--light .tim-svc-chapter__text,
.tim-svc__section--light .tim-svc-card__text,
.tim-svc__section--light .tim-svc-chapter__stat {
  color: var(--tim-ink-400);
}

.tim-svc__section--light .tim-svc-chapter__ghost {
  color: rgba(20, 18, 22, 0.04);
}

.tim-svc__accent {
  color: var(--tim-magenta);
}

/* ------------------------------------------------------------------ hero */

.tim-svc-hero {
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  border-bottom: 1px solid var(--tim-line-dark);
}

.tim-svc-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tim-svc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(13, 11, 15, 0.94) 0%, rgba(13, 11, 15, 0.1) 55%, rgba(13, 11, 15, 0.45) 100%),
    linear-gradient(90deg, rgba(13, 11, 15, 0.85) 0%, rgba(13, 11, 15, 0.3) 50%, rgba(13, 11, 15, 0) 78%);
}

.tim-svc-hero__body {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tim-svc-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--tim-ink-600);
  font: 500 13px var(--tim-font-body);
}

.tim-svc-hero__crumbs a {
  color: var(--tim-on-dark-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.tim-svc-hero__crumbs a:hover,
.tim-svc-hero__crumbs a:focus-visible {
  color: var(--tim-magenta-light);
}

.tim-svc-hero__crumbs [aria-current] {
  color: var(--tim-on-dark);
  font-weight: 600;
}

.tim-svc-hero__kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--tim-magenta-light);
  font: 600 13px var(--tim-font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tim-svc-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tim-magenta);
  animation: tim-pulse-dot 2.4s ease-in-out infinite;
}

.tim-svc-hero__title {
  margin: 0;
  font: 800 clamp(34px, 4.4vw, 64px) / 1.08 var(--tim-font-display);
  color: var(--tim-on-dark);
  letter-spacing: -1.5px;
  text-wrap: pretty;
  max-width: 840px;
}

.tim-svc-hero__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font: 400 18px/1.6 var(--tim-font-body);
  max-width: 560px;
  text-wrap: pretty;
}

.tim-svc-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.tim-svc-hero__meta {
  color: rgba(255, 255, 255, 0.55);
  font: 500 14px var(--tim-font-body);
}

/* ------------------------------------------------------------- rich text */

.tim-svc-rte {
  color: rgba(255, 255, 255, 0.78);
  font: 400 17px/1.62 var(--tim-font-body);
  max-width: 720px;
}

.tim-svc-rte p {
  margin: 0 0 14px;
}

.tim-svc-rte p:last-child {
  margin-bottom: 0;
}

.tim-svc-rte strong {
  color: var(--tim-on-dark);
}

.tim-svc__section--light .tim-svc-rte {
  color: var(--tim-ink-500);
}

.tim-svc__section--light .tim-svc-rte strong {
  color: var(--tim-ink);
}

/* The legacy editor left empty translation wrappers behind in some fields. */
.tim-svc-rte .XTranslate:empty {
  display: none;
}

/* -------------------------------------------------------------- why cards */

.tim-svc-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 14px;
}

.tim-svc-why__card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px 22px;
  border-radius: var(--tim-radius-card-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tim-line-dark);
  transition: background 0.35s var(--tim-ease), border-color 0.35s var(--tim-ease),
    transform 0.35s var(--tim-ease);
}

.tim-svc-why__card:hover {
  background: rgba(230, 0, 126, 0.09);
  border-color: rgba(230, 0, 126, 0.5);
  transform: translateY(-5px);
}

.tim-svc-why__num {
  font: 800 28px var(--tim-font-display);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(230, 0, 126, 0.9);
}

.tim-svc-why__card-title {
  margin: 0;
  color: var(--tim-on-dark);
  font: 600 16.5px var(--tim-font-body);
}

.tim-svc-why__card-text {
  margin: 0;
  color: var(--tim-on-dark-dim);
  font: 400 13.5px/1.55 var(--tim-font-body);
}

/* ------------------------------------------------------------------ tools */

.tim-svc-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.tim-svc-tool {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--tim-dark-panel-2);
  border: 1px solid var(--tim-line-dark);
  transition: transform 0.35s var(--tim-ease), border-color 0.35s var(--tim-ease),
    box-shadow 0.35s var(--tim-ease);
}

.tim-svc-tool:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 0, 126, 0.45);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(230, 0, 126, 0.14);
}

.tim-svc-tool__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
}

.tim-svc-tool__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 22px 20px;
}

.tim-svc-tool__num {
  font: 800 13px var(--tim-font-body);
  letter-spacing: 2px;
  color: var(--tim-on-dark-dim);
}

.tim-svc-tool__title {
  margin: 0;
  color: var(--tim-on-dark);
  font: 600 18px var(--tim-font-body);
}

.tim-svc-tool__text {
  margin: 0;
  color: var(--tim-on-dark-dim);
  font: 400 14px/1.6 var(--tim-font-body);
}

/* ------------------------------------------------------------------ steps */

.tim-svc-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 14px;
  counter-reset: tim-step;
}

.tim-svc-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 22px 20px;
  border-radius: var(--tim-radius-card-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tim-line-dark);
  transition: background 0.35s var(--tim-ease), border-color 0.35s var(--tim-ease),
    transform 0.35s var(--tim-ease);
}

.tim-svc-step:hover {
  background: rgba(230, 0, 126, 0.09);
  border-color: rgba(230, 0, 126, 0.5);
  transform: translateY(-5px);
}

.tim-svc-step__num {
  font: 800 30px var(--tim-font-display);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(230, 0, 126, 0.9);
}

.tim-svc-step__title {
  margin: 0;
  color: var(--tim-on-dark);
  font: 600 16.5px var(--tim-font-body);
}

/* ---------------------------------------------------------------- tariffs */

.tim-svc-tariffs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
  align-items: stretch;
}

.tim-svc-tariff {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px;
  border-radius: var(--tim-radius-card);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--tim-line-dark);
  transition: transform 0.45s var(--tim-ease), border-color 0.45s var(--tim-ease),
    box-shadow 0.45s var(--tim-ease);
}

.tim-svc-tariff:hover,
.tim-svc-tariff--featured {
  border-color: rgba(230, 0, 126, 0.55);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(230, 0, 126, 0.18);
  transform: translateY(-6px);
}

.tim-svc-tariff__tag {
  position: absolute;
  right: 20px;
  top: 22px;
  color: var(--tim-magenta-light);
  font: 600 11px var(--tim-font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tim-svc-tariff__name {
  margin: 0;
  color: var(--tim-on-dark);
  font: 600 21px var(--tim-font-display);
}

.tim-svc-tariff__price {
  color: var(--tim-magenta);
  font: 800 clamp(28px, 3vw, 38px) / 1 var(--tim-font-display);
}

.tim-svc-tariff__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tim-svc-tariff__features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font: 400 14px/1.5 var(--tim-font-body);
}

.tim-svc-tariff__features li::before {
  content: "✓";
  color: var(--tim-magenta);
  font: 700 13px var(--tim-font-body);
  flex: none;
}

.tim-svc-tariff__cta {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 6px;
}

/* -------------------------------------------------------------------- faq */

.tim-svc-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 32px clamp(18px, 5vw, 64px);
  align-items: start;
}

.tim-svc-faq__list {
  display: flex;
  flex-direction: column;
}

.tim-svc-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 0;
}

.tim-svc-faq__q {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--tim-on-dark);
  font: 600 18px var(--tim-font-body);
  list-style: none;
  transition: color 0.3s;
}

/* Hide the native disclosure marker in both engines. */
.tim-svc-faq__q::-webkit-details-marker {
  display: none;
}

.tim-svc-faq__q::marker {
  content: "";
}

.tim-svc-faq__item[open] > .tim-svc-faq__q,
.tim-svc-faq__q:hover {
  color: var(--tim-magenta-light);
}

.tim-svc-faq__sign {
  width: 32px;
  height: 32px;
  flex: none;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--tim-on-dark-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 400 19px var(--tim-font-body);
  transition: transform 0.4s var(--tim-ease), border-color 0.4s, color 0.4s;
}

.tim-svc-faq__item[open] .tim-svc-faq__sign {
  transform: rotate(45deg);
  border-color: var(--tim-magenta);
  color: var(--tim-magenta);
}

.tim-svc-faq__a {
  margin: 0 0 18px;
  color: var(--tim-on-dark-muted);
  font: 400 16px/1.65 var(--tim-font-body);
  max-width: 620px;
}

/* ----------------------------------------------------------- consultation */

.tim-svc-cta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 36px clamp(18px, 5vw, 64px);
  align-items: center;
}

.tim-svc-cta__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--tim-line-dark);
  box-shadow: var(--tim-shadow-dark);
}

.tim-svc-cta__media img {
  display: block;
  width: 100%;
  height: auto;
}

.tim-svc-cta__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tim-svc-cta__sub {
  color: var(--tim-magenta-light);
  font: 600 13px var(--tim-font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------- seo copy */

.tim-svc-seo__body {
  columns: 2;
  column-gap: 48px;
  color: var(--tim-ink-500);
  font: 400 15px/1.7 var(--tim-font-body);
}

.tim-svc-seo__body p {
  margin: 0 0 14px;
}

.tim-svc-seo__clamp {
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.6s var(--tim-ease);
}

.tim-svc-seo__clamp[data-open="1"] {
  max-height: 4000px;
}

.tim-svc-seo__toggle {
  align-self: flex-start;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(230, 0, 126, 0.4);
  padding: 0 0 2px;
  color: var(--tim-magenta);
  font: 600 13px var(--tim-font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.tim-svc-seo__toggle:hover {
  color: var(--tim-magenta-hover);
}

/* ------------------------------------------------------------ other links */

.tim-svc-next__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
}

.tim-svc-next__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--tim-radius-card-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tim-line-dark);
  text-decoration: none;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--tim-ease);
}

.tim-svc-next__item:hover {
  background: rgba(230, 0, 126, 0.09);
  border-color: rgba(230, 0, 126, 0.5);
  transform: translateY(-4px);
}

.tim-svc-next__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tim-svc-next__name {
  color: var(--tim-on-dark);
  font: 600 15.5px var(--tim-font-body);
}

.tim-svc-next__sub {
  color: var(--tim-on-dark-dim);
  font: 400 13px var(--tim-font-body);
}

.tim-svc-next__arrow {
  margin-left: auto;
  color: var(--tim-magenta-light);
  font: 600 17px var(--tim-font-body);
}

/* -------------------------------------------------------- hub scroll film */

/*
 * Scroll-driven hero for the Služby hub. Four scenes iris open one after the
 * other as the tall section scrolls past a sticky stage. Without JavaScript the
 * first scene stays fully open and the intro copy remains readable — no content
 * is behind the animation.
 */
.tim-film {
  position: relative;
  height: 460vh;
  background: var(--tim-dark);
}

.tim-film__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--tim-dark);
}

.tim-film__scene {
  position: absolute;
  inset: 0;
  clip-path: circle(0% at 50% 58%);
}

/* First scene is open by default so a no-JS page is not black. */
.tim-film__scene:first-of-type {
  clip-path: circle(100% at 50% 58%);
}

.tim-film__scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  will-change: transform;
}

.tim-film__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(13, 11, 15, 0.9) 0%, rgba(13, 11, 15, 0.06) 42%, rgba(13, 11, 15, 0.3) 100%),
    linear-gradient(90deg, rgba(13, 11, 15, 0.68) 0%, rgba(13, 11, 15, 0.12) 55%, rgba(13, 11, 15, 0) 75%);
}

.tim-film__intro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 0 40px;
  will-change: transform, opacity;
}

.tim-film__intro-title {
  margin: 0;
  font: 800 clamp(40px, 7.2vw, 116px) / 1.04 var(--tim-font-display);
  color: var(--tim-on-dark);
  letter-spacing: -3px;
}

.tim-film__intro-lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font: 400 18px/1.6 var(--tim-font-body);
  max-width: 480px;
}

.tim-film__chevron {
  color: var(--tim-magenta-light);
  font: 800 26px var(--tim-font-body);
  animation: tim-chevron 1.6s ease-in-out infinite;
}

@keyframes tim-chevron {
  0% { opacity: 0; transform: translateY(-10px); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

.tim-film__panel {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 96px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.tim-film__panel.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.tim-film__num {
  font: 800 clamp(48px, 8vw, 90px) / 1 var(--tim-font-display);
  color: transparent;
  -webkit-text-stroke: 2px rgba(230, 0, 126, 0.9);
  text-shadow: 0 0 44px rgba(230, 0, 126, 0.3);
}

.tim-film__title {
  margin: 0;
  font: 800 clamp(30px, 4.4vw, 66px) / 1.08 var(--tim-font-display);
  color: var(--tim-on-dark);
  letter-spacing: -1px;
  text-wrap: pretty;
}

.tim-film__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font: 400 18px/1.6 var(--tim-font-body);
  max-width: 560px;
  text-wrap: pretty;
}

.tim-film__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tim-film__chip {
  border: 1.5px solid var(--chip, var(--tim-magenta));
  color: var(--tim-on-dark);
  background: rgba(13, 11, 15, 0.55);
  backdrop-filter: blur(8px);
  font: 600 15px var(--tim-font-body);
  padding: 10px 20px;
  border-radius: var(--tim-radius-pill);
  white-space: nowrap;
  box-shadow: 0 0 20px var(--chip-glow, transparent);
}

.tim-film__progress {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tim-film__progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tim-film__index {
  color: var(--tim-on-dark);
  font: 800 17px var(--tim-font-display);
}

.tim-film__index-total {
  color: rgba(255, 255, 255, 0.4);
}

.tim-film__hint {
  color: var(--tim-magenta-light);
  font: 600 12px var(--tim-font-body);
  letter-spacing: 2px;
}

.tim-film__track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.tim-film__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--tim-magenta), var(--tim-magenta-light));
  box-shadow: 0 0 14px rgba(230, 0, 126, 0.7);
}

/*
 * Reduced motion and no-JS both collapse the film to a single static screen:
 * a 460vh section that never animates would be four blank scrolls.
 */
@media (prefers-reduced-motion: reduce) {
  .tim-film {
    height: auto;
  }

  .tim-film__stage {
    position: relative;
    height: min(90vh, 720px);
  }

  .tim-film__panel,
  .tim-film__chevron {
    display: none;
  }
}

.no-js .tim-film {
  height: auto;
}

.no-js .tim-film__stage {
  position: relative;
  height: min(90vh, 720px);
}

.no-js .tim-film__panel,
.no-js .tim-film__chevron {
  display: none;
}

@media (max-width: 900px) {
  .tim-film {
    height: 380vh;
  }

  .tim-film__panel {
    bottom: 84px;
  }

  .tim-film__desc {
    font-size: 16px;
  }

  .tim-film__chip {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* ------------------------------------------------------------- hub / list */

.tim-svc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 16px;
}

.tim-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  border-radius: var(--tim-radius-card);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tim-line-dark);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--tim-ease),
    box-shadow 0.35s var(--tim-ease);
}

.tim-svc-card:hover {
  background: rgba(230, 0, 126, 0.07);
  border-color: rgba(230, 0, 126, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.tim-svc-card__media {
  aspect-ratio: 16 / 9;
  border-radius: var(--tim-radius-card-sm);
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
}

.tim-svc-card__name {
  margin: 0;
  color: var(--tim-on-dark);
  font: 600 21px var(--tim-font-display);
}

.tim-svc-card__text {
  margin: 0;
  color: var(--tim-on-dark-dim);
  font: 400 14.5px/1.6 var(--tim-font-body);
}

.tim-svc-card__more {
  margin-top: auto;
  color: var(--tim-magenta-light);
  font: 600 14px var(--tim-font-body);
}

/*
 * Direction chapter on the hub page.
 *
 * Two columns: the copy on one side, a looping film on the other, the sides
 * swapping each chapter. Below 900px it stacks, copy first.
 */
.tim-svc-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 36px 64px;
  align-items: center;
}

.tim-svc-band.is-flip {
  direction: rtl;
}

.tim-svc-band.is-flip > * {
  direction: ltr;
}

.tim-svc-chapter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tim-svc-chapter__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.tim-svc-chapter__num {
  font: 800 clamp(48px, 5vw, 76px) / 1 var(--tim-font-display);
  color: transparent;
  -webkit-text-stroke: 2px rgba(230, 0, 126, 0.9);
  text-shadow: 0 0 44px rgba(230, 0, 126, 0.25);
  flex: none;
}

.tim-svc-chapter__title {
  margin: 0;
  color: var(--tim-on-dark);
  font: 800 clamp(32px, 3.4vw, 44px) / 1.1 var(--tim-font-display);
  text-wrap: pretty;
}

.tim-svc-chapter__motto {
  margin: 0;
  color: var(--tim-magenta-light);
  font: italic 500 21px Georgia, serif;
}

/* Oversized watermark word behind the band. */
.tim-svc-chapter__ghost {
  position: absolute;
  right: -40px;
  top: -50px;
  font: 800 280px/1 var(--tim-font-display);
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
}

.tim-svc-chapter__ghost.is-left {
  right: auto;
  left: -40px;
}

.tim-svc-chapter__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.tim-svc-chapter__cta {
  flex: none;
  background: var(--tim-magenta);
  color: #fff;
  font: 600 16px var(--tim-font-body);
  padding: 15px 32px;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(230, 0, 126, 0.4);
  transition: background 0.3s;
}

.tim-svc-chapter__cta:hover,
.tim-svc-chapter__cta:focus-visible {
  background: var(--tim-magenta-hover);
}

.tim-svc-chapter__stat {
  color: var(--tim-on-dark-dim);
  font: 400 14px var(--tim-font-body);
}

.tim-svc-chapter__stat strong {
  color: var(--tim-magenta-light);
  font: 800 18px var(--tim-font-display);
  margin-right: 6px;
}

.tim-svc-chapter__film {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(230, 0, 126, 0.4);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.tim-svc-chapter__film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tim-svc-chapter__film figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 26px;
  background: linear-gradient(0deg, rgba(13, 11, 15, 0.9), rgba(13, 11, 15, 0));
  color: rgba(255, 255, 255, 0.75);
  font: italic 500 15px Georgia, serif;
  pointer-events: none;
}

@media (max-width: 900px) {
  .tim-svc-band,
  .tim-svc-band.is-flip {
    direction: ltr;
    grid-template-columns: 1fr;
  }

  /* The watermark is 280px tall and only crowds a narrow screen. */
  .tim-svc-chapter__ghost {
    display: none;
  }

  .tim-svc-chapter__motto {
    font-size: 18px;
  }

  .tim-svc-chapter__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

.tim-svc-chapter__text {
  margin: 0;
  color: var(--tim-on-dark-dim);
  font: 400 15.5px/1.6 var(--tim-font-body);
  max-width: 620px;
}

/* --------------------------------------------------------------- mobile */

@media (max-width: 900px) {
  .tim-svc section {
    padding: 56px clamp(18px, 5vw, 64px);
  }

  .tim-svc-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .tim-svc-hero__title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -1px;
  }

  .tim-svc-hero__subtitle {
    font-size: 16px;
  }

  .tim-svc__head {
    align-items: flex-start;
  }

  .tim-svc__lede {
    max-width: none;
  }

  /* A second column at phone width leaves orphaned lines. */
  .tim-svc-seo__body {
    columns: 1;
  }

  .tim-svc-seo__clamp {
    max-height: 320px;
  }

  .tim-svc-chapter__num {
    font-size: 34px;
  }
}

/* ------------------------------------------------- chapter channel strip */

/*
 * Four channel panels per chapter. The active one takes three shares of the
 * row and shows its copy plus a mock-up of the channel; the rest collapse to a
 * rail with the name set vertically. Ported from the design's `ch.cards`.
 *
 * With no JS the first panel is active and the others stay readable rails —
 * the layout never depends on the script running.
 */
.tim-svc-strip {
  display: flex;
  gap: 10px;
  height: 300px;
  width: 100%;
}

.tim-svc-strip__panel {
  position: relative;
  flex: 1;
  min-width: 66px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--chan) 20%, transparent);
  background: #131017;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.25, 0.9, 0.25, 1), border-color 0.5s ease;
}

.tim-svc-strip__panel.is-active {
  flex: 3;
  border-color: var(--chan);
}

.tim-svc-strip__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 90% at 50% 105%,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(19, 16, 23, 0) 72%
  );
  transition: background 0.6s;
  pointer-events: none;
}

.tim-svc-strip__panel.is-active .tim-svc-strip__glow {
  background: radial-gradient(
    ellipse 120% 90% at 50% 105%,
    color-mix(in srgb, var(--chan) 19%, transparent) 0%,
    rgba(19, 16, 23, 0) 72%
  );
}

/* Drifting icon watermarks. */
.tim-svc-strip__ghost {
  position: absolute;
  opacity: 0.08;
  transition: opacity 0.6s;
  pointer-events: none;
}

.tim-svc-strip__ghost svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tim-svc-strip__ghost--1 {
  right: 12%;
  top: 14%;
  width: 44px;
  height: 44px;
  animation: tim-chip-float 6.5s ease-in-out infinite;
}

.tim-svc-strip__ghost--2 {
  right: 32%;
  top: 40%;
  width: 26px;
  height: 26px;
  animation: tim-chip-float 7.8s ease-in-out 1.1s infinite;
}

.tim-svc-strip__ghost--3 {
  right: 8%;
  top: 52%;
  width: 18px;
  height: 18px;
  animation: tim-chip-float 5.6s ease-in-out 0.5s infinite;
}

.tim-svc-strip__panel.is-active .tim-svc-strip__ghost--1 {
  opacity: 0.3;
}

.tim-svc-strip__panel.is-active .tim-svc-strip__ghost--2,
.tim-svc-strip__panel.is-active .tim-svc-strip__ghost--3 {
  opacity: 0.16;
}

.tim-svc-strip__badge {
  position: absolute;
  left: 19px;
  top: 19px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px color-mix(in srgb, var(--chan) 33%, transparent);
  z-index: 2;
}

.tim-svc-strip__badge svg {
  width: 25px;
  height: 25px;
  display: block;
}

/* Collapsed rail label. */
.tim-svc-strip__vert {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.6);
  font: 600 13px var(--tim-font-body);
  letter-spacing: 1px;
  white-space: nowrap;
  transition: opacity 0.4s;
  z-index: 2;
}

.tim-svc-strip__panel.is-active .tim-svc-strip__vert {
  opacity: 0;
}

.tim-svc-strip__body {
  position: absolute;
  left: 19px;
  bottom: 20px;
  width: min(46%, 300px);
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease 0.25s, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s;
  pointer-events: none;
  z-index: 2;
}

.tim-svc-strip__panel.is-active .tim-svc-strip__body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tim-svc-strip__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tim-svc-strip__tags span {
  border: 1px solid color-mix(in srgb, var(--chan) 40%, transparent);
  color: rgba(255, 255, 255, 0.78);
  font: 600 10.5px var(--tim-font-body);
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.tim-svc-strip__name {
  margin: 0;
  color: var(--tim-on-dark);
  font: 800 22px var(--tim-font-display);
}

.tim-svc-strip__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font: 400 13.5px/1.5 var(--tim-font-body);
}

.tim-svc-strip__metric {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.tim-svc-strip__metric strong {
  color: var(--chan);
  font: 800 26px var(--tim-font-display);
  font-variant-numeric: tabular-nums;
}

.tim-svc-strip__metric span {
  color: rgba(255, 255, 255, 0.5);
  font: 600 10.5px var(--tim-font-body);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.tim-svc-strip__cta {
  align-self: flex-start;
  background: var(--tim-magenta);
  color: #fff;
  font: 600 13px var(--tim-font-body);
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.tim-svc-strip__cta:hover,
.tim-svc-strip__cta:focus-visible {
  background: var(--tim-magenta-hover);
}

/* ---------- channel mock-ups ---------- */

.tim-svc-strip__mock {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 258px;
  max-width: 52%;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease 0.25s, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s;
  pointer-events: none;
  z-index: 1;
}

.tim-svc-strip__panel.is-active .tim-svc-strip__mock {
  opacity: 1;
  transform: translateY(0);
}

.tim-mock {
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.tim-mock__label {
  color: #8a8590;
  font: 600 9.5px var(--tim-font-body);
  letter-spacing: 2px;
}

.tim-mock__pill {
  align-self: flex-start;
  background: var(--tim-magenta);
  color: #fff;
  font: 600 10px var(--tim-font-body);
  padding: 6px 14px;
  border-radius: 100px;
}

/* search */
.tim-mock--search {
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tim-mock__field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(20, 18, 22, 0.14);
  border-radius: 100px;
  padding: 7px 12px;
}

.tim-mock__field svg {
  width: 13px;
  height: 13px;
  flex: none;
}

.tim-mock__field span {
  color: #141216;
  font: 500 12px var(--tim-font-body);
  white-space: nowrap;
  overflow: hidden;
}

.tim-mock__caret {
  width: 2px;
  height: 12px;
  background: var(--tim-magenta);
  animation: tim-blink 1s steps(1) infinite;
  flex: none;
}

.tim-mock__result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(230, 0, 126, 0.06);
  border: 1px solid rgba(230, 0, 126, 0.28);
  border-radius: 9px;
  padding: 9px 10px;
}

.tim-mock__result .tim-mock__label {
  color: #141216;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1px;
}

.tim-mock__title {
  color: #1a0dab;
  font: 600 13px var(--tim-font-body);
}

.tim-mock__url {
  color: #0b6e3e;
  font: 500 10.5px var(--tim-font-body);
}

.tim-mock__lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0.4;
}

.tim-mock__lines span {
  height: 7px;
  border-radius: 4px;
  background: rgba(20, 18, 22, 0.35);
}

.tim-mock__lines span:last-child {
  width: 45%;
  height: 6px;
  background: rgba(20, 18, 22, 0.2);
}

.tim-mock__lines span:first-child {
  width: 70%;
}

/* feed */
.tim-mock--feed {
  background: #fff;
}

.tim-mock__head,
.tim-mock__mailrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
}

.tim-mock__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tim-magenta), var(--tim-magenta-light));
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font: 800 9px var(--tim-font-display);
}

.tim-mock__who {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tim-mock__who strong {
  color: #141216;
  font: 600 11.5px var(--tim-font-body);
}

.tim-mock__who em {
  color: #8a8590;
  font: 400 9.5px var(--tim-font-body);
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tim-mock__hero {
  height: 96px;
  background: linear-gradient(135deg, rgba(230, 0, 126, 0.85), rgba(19, 16, 23, 0.95));
  position: relative;
}

.tim-mock__hero span {
  position: absolute;
  left: 11px;
  bottom: 9px;
  color: #fff;
  font: 800 13px var(--tim-font-display);
}

.tim-mock__foot {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
}

.tim-mock__foot strong {
  color: var(--chan);
  font: 700 13px var(--tim-font-body);
  font-variant-numeric: tabular-nums;
}

.tim-mock__foot em {
  color: #8a8590;
  font: 400 10.5px var(--tim-font-body);
  font-style: normal;
}

.tim-mock__foot .tim-mock__pill {
  margin-left: auto;
  background: var(--chan);
  border-radius: 6px;
  padding: 5px 10px;
}

/* reel */
.tim-mock--reel {
  display: flex;
  gap: 9px;
  justify-content: flex-end;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.tim-mock__reel {
  width: 104px;
  height: 186px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(230, 0, 126, 0.75), rgba(19, 16, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  flex: none;
}

.tim-mock__reel--back {
  background: linear-gradient(200deg, rgba(37, 244, 238, 0.35), rgba(19, 16, 23, 0.98));
  border-color: rgba(255, 255, 255, 0.14);
  opacity: 0.75;
  transform: translateY(12px);
}

.tim-mock__play {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141216;
  font-size: 12px;
}

.tim-mock__heart {
  position: absolute;
  right: 8px;
  bottom: 34px;
  color: var(--chan);
  font-size: 16px;
}

.tim-mock__views {
  position: absolute;
  left: 9px;
  bottom: 9px;
  color: rgba(255, 255, 255, 0.85);
  font: 600 10px var(--tim-font-body);
  font-variant-numeric: tabular-nums;
}

/* site */
.tim-mock--site {
  background: #16131b;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tim-mock__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.06);
}

.tim-mock__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}

.tim-mock__bar i:nth-child(1) { background: #ff5f57; }
.tim-mock__bar i:nth-child(2) { background: #febc2e; }
.tim-mock__bar i:nth-child(3) { background: #28c840; }

.tim-mock__bar span {
  flex: 1;
  text-align: center;
  color: #8f8a97;
  font: 500 9.5px var(--tim-font-body);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  padding: 3px 0;
  margin: 0 16px;
}

.tim-mock__page {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tim-mock__h {
  height: 11px;
  width: 72%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--tim-magenta), var(--tim-magenta-light));
}

.tim-mock__l {
  height: 7px;
  width: 92%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.tim-mock__l--short {
  width: 60%;
  background: rgba(255, 255, 255, 0.14);
}

.tim-mock__blocks {
  display: flex;
  gap: 6px;
  margin-top: 3px;
}

.tim-mock__blocks i {
  height: 38px;
  flex: 1;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
}

.tim-mock__blocks i:nth-child(2) { background: rgba(255, 255, 255, 0.06); }
.tim-mock__blocks i:nth-child(3) { background: rgba(255, 255, 255, 0.04); }

/* chat */
.tim-mock--chat {
  background: rgba(19, 16, 23, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tim-mock__chathead {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.tim-mock__chathead strong {
  color: #fff;
  font: 600 11.5px var(--tim-font-body);
}

.tim-mock__chathead em {
  margin-left: auto;
  color: #8f8a97;
  font: 400 10px var(--tim-font-body);
  font-style: normal;
}

.tim-mock__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34a853;
  animation: tim-pulse-dot 2s ease-in-out infinite;
  flex: none;
}

.tim-mock__msg {
  font: 400 11px/1.4 var(--tim-font-body);
  padding: 7px 11px;
  max-width: 90%;
}

.tim-mock__msg--out {
  align-self: flex-end;
  background: var(--tim-magenta);
  color: #fff;
  border-radius: 12px 12px 3px 12px;
}

.tim-mock__msg--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-radius: 12px 12px 12px 3px;
}

.tim-mock__typing {
  align-self: flex-start;
  display: flex;
  gap: 3px;
  background: rgba(255, 255, 255, 0.09);
  padding: 9px 11px;
  border-radius: 12px 12px 12px 3px;
}

.tim-mock__typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--chan);
  animation: tim-dot-bounce 1.2s ease-in-out infinite;
}

.tim-mock__typing i:nth-child(2) { animation-delay: 0.18s; }
.tim-mock__typing i:nth-child(3) { animation-delay: 0.36s; }

/* mail */
.tim-mock--mail {
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tim-mock__mailrow {
  padding: 0;
}

.tim-mock__mailrow--dim {
  opacity: 0.45;
}

/* chart */
.tim-mock--chart {
  background: rgba(19, 16, 23, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tim-mock__spark {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 96px;
}

.tim-mock__spark i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: rgba(255, 255, 255, 0.22);
  transition: height 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tim-mock__spark i.is-peak {
  background: var(--chan);
  box-shadow: 0 0 14px color-mix(in srgb, var(--chan) 53%, transparent);
}

@keyframes tim-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes tim-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/*
 * Under 1240px the mock-ups have no room, and under 900px the whole strip
 * stops being a strip: it becomes four stacked cards, all expanded, which is
 * what the design does at that width too.
 */
@media (max-width: 1240px) {
  .tim-svc-strip__mock {
    display: none;
  }

  .tim-svc-strip__body {
    width: min(70%, 340px);
  }
}

@media (max-width: 900px) {
  .tim-svc-strip {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .tim-svc-strip__panel,
  .tim-svc-strip__panel.is-active {
    flex: none;
    min-height: 210px;
    border-color: color-mix(in srgb, var(--chan) 45%, transparent);
  }

  .tim-svc-strip__vert {
    display: none;
  }

  .tim-svc-strip__body {
    position: static;
    width: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 86px 20px 22px;
  }
}
