.latest-strip {
  height: 64px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  align-items: stretch;
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  color: #242424;
  background: #fff;
  border-bottom: 1px solid #cfcfcf;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-105%);
  transition: transform .28s ease, opacity .22s ease, visibility .28s;
}

.latest-strip.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.latest-strip-track {
  min-width: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.latest-strip-track::-webkit-scrollbar {
  display: none;
}

.latest-strip-item {
  width: 215px;
  min-width: 215px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
  padding: 7px 13px 7px 8px;
  border-right: 1px solid #ddd;
  background: #fff;
}

.latest-strip-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.latest-strip-item span {
  display: -webkit-box;
  overflow: hidden;
  font-family: "Lora", Georgia, serif;
  font-size: .88rem;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-strip-item:hover span,
.latest-strip-item:focus-visible span {
  color: #d94f0b;
}

.latest-strip-arrow {
  display: grid;
  place-items: center;
  padding: 0;
  position: relative;
  z-index: 2;
  color: #666;
  background: rgba(255, 255, 255, .96);
  border: 0;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  cursor: pointer;
}

.latest-strip-prev { border-right: 1px solid #ddd; }
.latest-strip-next { border-left: 1px solid #ddd; }

.latest-strip-arrow:hover,
.latest-strip-arrow:focus-visible {
  color: #f36f21;
  background: #fff;
}

@media (max-width: 700px) {
  .latest-strip {
    height: 58px;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .latest-strip-item {
    width: 190px;
    min-width: 190px;
    grid-template-columns: 44px 1fr;
    padding: 7px 10px 7px 7px;
  }

  .latest-strip-item img {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .latest-strip,
  .latest-strip-track {
    scroll-behavior: auto;
    transition: none;
  }
}
