@layer components {
  .th-filler {
    container-type: inline-size;
    container-name: th-filler;
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-3xl) var(--section-padding-x);
  }

  .th-filler__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .th-filler__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .th-filler__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: oklch(0.08 0.01 60 / 0.58);
  }

  .th-filler__content {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .th-filler__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
  }

  .th-filler__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xs);
  }

  .th-filler__value {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .th-filler__label {
    font-size: var(--text-s);
    color: var(--always-light);
    opacity: 0.75;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: var(--weight-medium);
    text-align: center;
  }

  .th-filler__divider {
    width: 1px;
    height: 4.8rem;
    background: var(--always-light);
    opacity: 0.15;
    flex-shrink: 0;
  }

  @container th-filler (max-width: 968px) {
    .th-filler__row { gap: var(--space-xl); }
    .th-filler__value { font-size: var(--text-xl); }
    .th-filler__label { font-size: var(--text-xs); }
  }

  @container th-filler (max-width: 768px) {
    .th-filler__row { gap: var(--space-l); }
    .th-filler__divider { height: 3.6rem; }
  }

  @container th-filler (max-width: 640px) {
    .th-filler__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl) var(--space-l);
      justify-items: center;
    }
    .th-filler__divider { display: none; }
  }

  @container th-filler (max-width: 380px) {
    .th-filler__value { font-size: var(--text-l); }
  }
}
