/*
@include max($tablet) {
	height: 60px;
}
*/
body .list-container,
html .list-container {
  --block-default-padding-left: 0;
  --block-default-padding-right: 0;
}
body ul,
body ol,
html ul,
html ol {
  background: linear-gradient(135deg, var(--primary-color-lightest) 0%, #f0f8ff 100%);
  padding: 25px;
  border-radius: 12px;
  border: 2px solid var(--primary-color-light);
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.1);
}
body ol,
html ol {
  counter-reset: items 0;
}
body ol .list-item-container,
html ol .list-item-container {
  list-style: none;
  display: flex;
  counter-increment: items 1;
}
body ol .list-item-container:not(:last-child),
html ol .list-item-container:not(:last-child) {
  margin-bottom: var(--list-font-size, var(--p-font-size));
}
body ol .list-item-container:before,
html ol .list-item-container:before {
  content: counter(items) ".";
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
  position: relative;
}