/* ============================================================
   KIT SECTION — golf-cart mascot drives the header rule.
   The cart is a deliberate editorial detail: its wheels sit on
   a thin horizontal rule, pointing toward the right-hand CTA.
   ============================================================ */

/* Header composition: title left, CTA right, cart on the rule */
.dartee-home .kitsec__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(16px, 3vw, 40px);
  padding-bottom: clamp(10px, 1.5vw, 16px);
  margin-bottom: clamp(12px, 1.8vw, 20px);
}

/* Allow the cart mascot to extend below the header without being clipped */
.dartee-home .kitsec {
  overflow: visible;
}

/* Very thin, subtle horizontal rule beneath the header composition */
.dartee-home .kitsec__head::after {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(8, 42, 36, 0.13);
  pointer-events: none;
}

/* Keep headline and CTA above the cart/rule layer */
.dartee-home .kitsec__title,
.dartee-home .kitsec__link {
  position: relative;
  z-index: 2;
}

/* Golf cart mascot: smaller, placed ~66-70% across, facing the CTA */
.dartee-home .kitsec__mascot {
  position: absolute;
  left: 66%;
  bottom: 0;
  z-index: 1;
  height: clamp(52px, 5.8vw, 72px);
  width: auto;
  max-width: min(32vw, 210px);
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(38%);   /* wheels sit on the rule */
}

@media (max-width: 680px) {
  .dartee-home .kitsec__head {
    padding-bottom: 8px;
    margin-bottom: 10px;
  }

  .dartee-home .kitsec__mascot {
    left: auto;
    right: 112px;          /* tuck between title and CTA on small screens */
    height: 38px;
    max-width: 86px;
    transform: translateY(38%);
  }
}
