  /* AAG Responsive Fluid Offer Slider */
  .aag-slider {
    --aag-offer-gap: 24px; /* spacing between cards */
    --aag-offer-base-width: 600px; /* nominal width for reference */
    --aag-offer-aspect: 3 / 2; /* 600x400 aspect ratio */
    position: relative;
    max-width: 2000px;
    width: 100%;
    margin: 24px auto;
    outline: none;
  }
  .aag-slider__viewport {
    overflow: hidden;
    width: 100%;
  }
  .aag-slider__track {
    display: flex;
    will-change: transform;
    transition: transform 350ms ease;
  } /* Slides: width set by JS based on measured card width */
  .aag-slider__slide {
    display: flex;
    gap: var(--aag-offer-gap);
    padding: 0;
    box-sizing: border-box;
    flex: 0 0 auto;
  } /* Fluid offer card: scales up/down, keeps 3:2 ratio */
  .aag-offer {
    position: relative;
    display: inline-block; /* Width grows/shrinks based on viewport and per-slide count; JS uses measurement for paging */
    width: var(--aag-offer-base-width);
    max-width: 100%;
    aspect-ratio: var(--aag-offer-aspect);
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
  }
  .aag-offer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .aag-offer__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 14px;
  } /* Controls */
  .aag-slider__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
  }
  .aag-slider__control--prev {
    left: 8px;
  }
  .aag-slider__control--next {
    right: 8px;
  }
  .aag-slider__control:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
  } /* Dots */
  .aag-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 0;
  }
  .aag-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfcfcf;
    border: 0;
    cursor: pointer;
  }
  .aag-slider__dot[aria-selected="true"] {
    background: #333;
  } /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .aag-slider__track {
      transition: none;
    }
  }