.tec-event-strip {
  --tec-strip-background: #fff;
  --tec-strip-border: #d7d7d7;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 3.5);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  padding: 1px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tec-event-strip::-webkit-scrollbar {
  display: none;
}

.tec-event-strip__card,
.tec-event-strip__show-all {
  background-image: url("/wp-content/themes/slmoslo/assets/images/boxbg.jpg");
  background-size: cover;
  background-repeat: repeat;
  background-position: top left;
  padding: 1em;
  box-shadow:
    inset black -4px -4px 6px,
    inset #717171 1px 1px 5px;
  box-sizing: border-box;
  min-height: 13rem;
  padding: 1.5rem;
  border: 0px solid var(--tec-strip-border);
  border-radius: 0.25rem;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.tec-event-strip a,
.tec-event-strip a:hover,
.tec-event-strip a:focus {
  text-decoration: none;
}

.tec-event-strip__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tec-event-strip__date,
.tec-event-strip__time,
.tec-event-strip__categories {
  font-size: 1.3rem;
  color: var(--slm-accent);
  font-family: var(--slm-title-font);
}
.tec-event-strip__title {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
}
.tec-event-strip__categories {
  margin-top: auto;
  padding-top: 1rem;
  opacity: 0.8;
}

.tec-event-strip__show-all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
}

.tec-event-strip__show-all span[aria-hidden="true"] {
  font-size: 2rem;
  line-height: 1;
}
.tec-event-strip__empty {
  margin: 0;
}

@media (max-width: 781px) {
  .tec-event-strip {
    grid-auto-columns: calc((100% - 0.25rem) / 1.25);
  }
  .tec-event-strip__card,
  .tec-event-strip__show-all {
    min-height: 11rem;
  }
}
