.definition-list-basic .title {
  font-weight: 700;
}
div.ol-standing-cards ol {
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    counter-reset: cardnr;
    justify-content: center;
    margin: 2em 0;
}

div.ol-standing-cards li {
    --frontColor: var(--background-secondary);
    --width: 14em;
    --inlineP: 0.5rem;
    --borderR: 4rem;
    --arrowW: 2rem;
    --arrowH: 1.5rem;
    counter-increment: cardnr;
    width: calc(var(--width) - var(--inlineP) * 2);
    display: grid;
    grid-template:
        "icon" var(--borderR)
        "title"
        "descr" 1fr;
    margin-inline: var(--inlineP);
    margin-bottom: calc(var(--borderR));
    position: relative;
}

div.ol-standing-cards li .icon,
div.ol-standing-cards li .title,
div.ol-standing-cards li .descr {
  background: var(--frontColor);
  padding-inline: 1rem;
  padding-bottom: 1rem;
}

div.ol-standing-cards li .icon,
div.ol-standing-cards li .title {
  color: var(--accent-color);
  text-align: center;
  padding-bottom: 0.5rem;
}

div.ol-standing-cards li .title,
div.ol-standing-cards li .descr {
  filter: drop-shadow(0.125rem 0.125rem 0.075rem rgba(0, 0, 0, 0.25));
}

div.ol-standing-cards li .icon {
  grid-area: icon;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--borderR) 0 0 0;
  position: relative;
}

div.ol-standing-cards li .title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: bold;
}

div.ol-standing-cards li .descr {
  grid-area: descr;
  font-size: 0.85rem;
  text-align: center;
}

div.ol-standing-cards li .descr::before {
  content: "";
  width: var(--arrowW);
  height: var(--arrowH);
  position: absolute;
  right: 1.5rem;
  top: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

div.ol-standing-cards li::after {
  content: counter(cardnr, decimal-leading-zero);
  position: absolute;
  z-index: -1;
  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  top: var(--borderR);
  bottom: calc(var(--borderR) * -1);
  display: flex;
  align-items: flex-end;
  background: var(--accent-color);
  background-image: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.25),
    transparent 25% 75%,
    rgba(0, 0, 0, 0.25)
  );
  border-radius: 0 0 var(--borderR) 0;
  --pad: 1rem;
  padding: var(--pad);
  font-size: calc(var(--borderR) - var(--pad) * 2);
  color: white;
}

div.ol-standing-cards li::before {
  content: "";
  position: absolute;
  height: var(--borderR);
  top: calc(100% + var(--borderR) - 2px);
  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  border-radius: 0 var(--borderR) 0 0;
  background-image: linear-gradient(var(--accent-color), transparent 60%);
  opacity: 0.5;
  filter: blur(2px);
}

div.ol-standing-cards li:nth-child(1) {
  --accent-color: var(--accent-color-1);
}

div.ol-standing-cards li:nth-child(2) {
  --accent-color: var(--accent-color-2);
}

div.ol-standing-cards li:nth-child(3) {
  --accent-color: var(--accent-color-3);
}

div.ol-standing-cards li:nth-child(4) {
  --accent-color: var(--accent-color-4);
}

div.ol-standing-cards li:nth-child(5) {
  --accent-color: var(--accent-color-5);
}