.teucris-platforms-strip {
  --tp-ink: #171516;
  --tp-paper: #f5f3ee;
  --tp-wine: #721523;
  --tp-bronze: #b69864;
  --tp-line: rgba(23, 21, 22, 0.16);
  width: 100%;
  margin: 48px 0;
  color: var(--tp-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.teucris-platforms-strip *,
.teucris-platforms-strip *::before,
.teucris-platforms-strip *::after {
  box-sizing: border-box;
}

.tp-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
  padding: 0 2px 14px;
  border-bottom: 1px solid var(--tp-line);
}

.tp-heading span {
  color: var(--tp-wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.tp-heading h2 {
  margin: 0;
  color: #756f65;
  font: 400 16px/1.35 Georgia, "Times New Roman", serif;
  letter-spacing: 0.03em;
}

.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--tp-line);
  background: #fff;
}

.tp-card {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: inherit !important;
  background: var(--tp-paper);
  border-right: 1px solid var(--tp-line);
  text-decoration: none !important;
}

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

.tp-logo-frame {
  height: 210px;
  padding: 24px;
  display: grid;
  place-items: center;
  background: #efede7;
  border-bottom: 1px solid var(--tp-line);
  overflow: hidden;
}

.tp-logo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease;
}

.tp-card-meta {
  min-height: 82px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
}

.tp-card-meta strong {
  font: 400 22px/1.15 Georgia, "Times New Roman", serif;
}

.tp-card-meta small {
  color: var(--tp-wine);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.tp-card-pending .tp-card-meta small {
  color: #8e877c;
}

.tp-card-link {
  transition: background-color 180ms ease, color 180ms ease;
}

.tp-card-link:hover,
.tp-card-link:focus-visible {
  color: #fff !important;
  background: var(--tp-wine);
}

.tp-card-link:hover .tp-logo-frame img,
.tp-card-link:focus-visible .tp-logo-frame img {
  transform: scale(1.025);
}

.tp-card-link:hover .tp-card-meta small,
.tp-card-link:focus-visible .tp-card-meta small {
  color: #dbc8a1;
}

.tp-card-link:focus-visible {
  outline: 2px solid var(--tp-bronze);
  outline-offset: -2px;
}

@media (max-width: 780px) {
  .teucris-platforms-strip {
    margin: 38px 0;
  }

  .tp-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .tp-grid {
    grid-template-columns: 1fr;
  }

  .tp-card {
    border-right: 0;
    border-bottom: 1px solid var(--tp-line);
  }

  .tp-card:last-child {
    border-bottom: 0;
  }

  .tp-logo-frame {
    height: 245px;
  }
}

@media (max-width: 480px) {
  .tp-logo-frame {
    height: 210px;
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .teucris-platforms-strip * {
    transition-duration: 0.01ms !important;
  }
}

