.aouln {
  --aouln-label-bg: #00aa02;
  --aouln-label-color: #fff;
  --aouln-bar-bg: #fff;
  --aouln-title-color: #111;
  --aouln-category-bg: #00aa02;
  --aouln-category-color: #fff;
  position: relative;
  display: block;
  width: 100%;
  min-height: 102px;
  overflow: hidden;
  color: var(--aouln-title-color);
  background: var(--aouln-bar-bg);
  box-sizing: border-box;
  font-family: inherit;
}

.aouln *, .aouln *::before, .aouln *::after { box-sizing: border-box; }

.aouln__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  align-self: start;
  min-width: max-content;
  padding: 7px 30px 7px 10px;
  color: var(--aouln-label-color);
  background: var(--aouln-label-bg);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.aouln__label::after {
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 100%;
  background: var(--aouln-label-bg);
  transform: skewX(-38deg);
  content: "";
}

.aouln__label span { position: relative; z-index: 1; }
.aouln__viewport { width: 100%; min-width: 0; overflow: hidden; }
.aouln__track { display: flex; width: max-content; min-height: 98px; will-change: transform; }
.aouln__group { display: flex; flex: none; align-items: center; gap: 54px; padding: 40px 54px 5px 4px; }
.aouln--no-label { min-height: 70px; }
.aouln--no-label .aouln__track { min-height: 66px; }
.aouln--no-label .aouln__group { padding-top: 5px; }

.aouln__item {
  display: grid;
  grid-template-columns: 92px minmax(220px, 390px);
  gap: 12px;
  align-items: center;
  flex: none;
  color: var(--aouln-title-color);
  text-align: left !important;
  text-decoration: none !important;
}

.aouln__image { display: block; width: 92px; height: 58px; overflow: hidden; background: #e8e8e8; }
.aouln__image img { display: block; width: 100%; height: 100%; margin: 0; object-fit: cover; }
.aouln__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #ddd, #f4f4f4); }
.aouln__copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 3px; text-align: left !important; }
.aouln__category { max-width: 100%; padding: 2px 8px; overflow: hidden; color: var(--aouln-category-color); background: var(--aouln-category-bg); font-size: 11px; font-weight: 800; line-height: 1.2; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.aouln__title { display: -webkit-box; width: 100%; overflow: hidden; color: var(--aouln-title-color); font-size: 16px; font-weight: 900; line-height: 1.08; text-align: left !important; text-transform: uppercase; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.aouln__item:hover .aouln__title, .aouln__item:focus-visible .aouln__title { text-decoration: underline; }
.aouln__item:focus-visible { outline: 3px solid var(--aouln-category-bg); outline-offset: 4px; }
.aouln-empty { padding: 12px; border-left: 4px solid #dba617; background: #fff8e5; }

@media (max-width: 700px) {
  .aouln { min-height: 116px; }
  .aouln__label { padding-top: 6px; padding-bottom: 6px; font-size: 16px; }
  .aouln__track { min-height: 112px; }
  .aouln__group { gap: 34px; padding: 42px 34px 8px 4px; }
  .aouln--no-label { min-height: 72px; }
  .aouln--no-label .aouln__track { min-height: 68px; }
  .aouln--no-label .aouln__group { padding-top: 8px; }
  .aouln__item { grid-template-columns: 76px minmax(190px, 72vw); gap: 10px; }
  .aouln__image { width: 76px; height: 52px; }
  .aouln__title { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .aouln__viewport { overflow-x: auto; scrollbar-width: thin; }
  .aouln__track { transform: none !important; will-change: auto; }
  .aouln__group:not(:first-child) { display: none; }
}
