.mixcount-teaser-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 1.75em;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3f6;
  box-shadow: 0 8px 24px rgba(20, 40, 40, 0.08);
}

.mixcount-teaser-row {
  overflow: hidden;
  line-height: 0;
}

.mixcount-teaser-row + .mixcount-teaser-row {
  margin-top: 6px;
}

.mixcount-teaser-track {
  display: flex;
  width: max-content;
  will-change: transform;
  gap: 6px;
}

.mixcount-teaser-track-ready {
  animation: mixcount-scroll-left var(--marquee-duration, 70s) linear infinite;
}

.mixcount-teaser-track-reverse.mixcount-teaser-track-ready {
  animation: mixcount-scroll-right var(--marquee-duration, 70s) linear infinite;
}

.mixcount-teaser-track a {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
}

.mixcount-teaser-track img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 3px;
  display: block;
  cursor: pointer;
}

@keyframes mixcount-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-distance, -50%));
  }
}

@keyframes mixcount-scroll-right {
  from {
    transform: translateX(var(--marquee-distance, -50%));
  }
  to {
    transform: translateX(0);
  }
}

.mixcount-highlights {
  width: 88%;
  max-width: 900px;
  margin: 0 auto 1.75em;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mixcount-stat {
  background: linear-gradient(180deg, #f8fbfc 0%, #eef4f7 100%);
  border: 1px solid #d8e4ea;
  border-radius: 10px;
  padding: 0.85em 0.75em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(20, 40, 40, 0.04);
}

.mixcount-stat-value {
  display: block;
  font-size: 1.55em;
  font-weight: 700;
  line-height: 1.1;
  color: #143038;
}

.mixcount-stat-label {
  display: block;
  margin-top: 0.35em;
  font-size: 0.82em;
  line-height: 1.35;
  color: #4f6468;
}

.mixcount-lead {
  width: 82%;
  margin: 0 auto 1.75em;
  padding: 1em 1.15em;
  background: #f7fafb;
  border-left: 4px solid #5ba4c4;
  border-radius: 0 8px 8px 0;
  font-size: 1.02em;
  line-height: 1.55;
}

.mixcount-prose {
  width: 82%;
  margin: 0 auto 1.5em;
  line-height: 1.6;
}

.mixcount-prose .mixcount-indented {
  margin: 0.35em 0 0;
  padding-left: 1.5em;
}

.mixcount-table-wrap {
  width: 88%;
  margin: 0 auto 1em;
  overflow-x: auto;
}

.mixcount-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92em;
  background: #fff;
  border: 1px solid #dde7ec;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20, 40, 40, 0.05);
}

.mixcount-compare-table th,
.mixcount-compare-table td {
  padding: 0.65em 0.75em;
  border-bottom: 1px solid #e8eef2;
  text-align: center;
}

.mixcount-compare-table th {
  background: #f3f8fa;
  font-weight: 700;
  color: #143038;
}

.mixcount-compare-table th:first-child,
.mixcount-compare-table td:first-child {
  text-align: left;
  min-width: 11em;
}

.mixcount-compare-table tbody td:last-child {
  background: #f7fcfe;
}

.mixcount-yes {
  color: #1772d0;
  font-weight: 700;
}

.mixcount-figure {
  width: 82%;
  margin: 0 auto 1.25em;
  display: block;
}

.mixcount-figure-framed {
  padding: 0.65em;
  background: #fff;
  border: 1px solid #dde7ec;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(20, 40, 40, 0.06);
}

.mixcount-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.mixcount-inline-section {
  width: 82%;
  margin: 0 auto 1.35em;
  padding: 1em 1.1em 0.85em;
  background: #fafcfd;
  border: 1px solid #e4edf2;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(20, 40, 40, 0.04);
}

.mixcount-inline-section p {
  margin: 0;
  line-height: 1.55;
}

.mixcount-inline-section .mixcount-figure {
  margin-top: 1em;
  margin-bottom: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (max-width: 820px) {
  .mixcount-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 92%;
  }

  .mixcount-lead,
  .mixcount-prose,
  .mixcount-inline-section,
  .mixcount-figure,
  .mixcount-table-wrap {
    width: 92%;
  }
}
