/* Train Mobil Editorial – Video-Karte in halber Beitragsbreite 1.8.2 */
.tm-editorial-blocks > .tm-editorial-video-card {
  grid-column: 1 / 2;
  width: 100%;
  min-width: 0;
  margin: 8px 0 30px;
}

.tm-editorial-video-card .tm-video-card {
  border: 1px solid #2e3438;
  background: #0a0d0f;
}

.tm-editorial-video-card .tm-video-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.tm-editorial-video-card .tm-video-card__open:focus-visible {
  outline: 2px solid #ffd000;
  outline-offset: 3px;
}

.tm-editorial-video-card .tm-video-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07090a;
}

.tm-editorial-video-card .tm-video-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.tm-editorial-video-card .tm-video-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.tm-editorial-video-card .tm-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,208,0,.94);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.tm-editorial-video-card .tm-video-card__play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-left: 18px solid #07090a;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.tm-editorial-video-card .tm-video-card__body {
  display: block;
  padding: 16px 16px 18px;
}

.tm-editorial-video-card .tm-video-card__body small {
  color: #ffd000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.tm-editorial-video-card .tm-video-card__body h3 {
  margin: 7px 0 12px;
  color: #f5f5f3;
  font-size: 17px;
  line-height: 1.25;
}

.tm-editorial-video-card .tm-video-card__link {
  color: #cbd0d3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

@media (max-width: 700px) {
  .tm-editorial-blocks > .tm-editorial-video-card {
    grid-column: 1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tm-editorial-video-card .tm-video-card__image img {
    transition: none;
  }
}
