	/* TWO-COLUMN RESPONSIVE LAYOUT */
.button-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    align-items: start;
}

/* STACK ON MOBILE */
@media (max-width: 767px) {
    .button-grid {
        grid-template-columns: 1fr;
    }
}

/* LINK CARD STYLING */
.subaru-connect-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* RESPONSIVE IMAGES */
.subaru-connect-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* ACCESSIBLE FOCUS STATE */
.subaru-connect-link:focus {
    outline: 3px solid #005fcc;
    outline-offset: 4px;
}

/* OPTIONAL */
.learn-more {
    text-decoration: underline;
}
/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles (keyboard only) */
:focus-visible {
  outline: 3px solid #005FCC;
  outline-offset: 3px;
}

/* Link focus enhancement */
.focusable-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(0,95,204,0.3);
  border-radius: 4px;
}

/* Image zoom (accessible with keyboard) */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
.img-hover-zoom:hover img,
.img-hover-zoom:focus-within img {
  transform: scale(1.05);
}

/* Layout helpers */
.marginBottom { margin-bottom: 15px; }
.textCenter { text-align: center; }

/* Optional: better readable line length */
.storyCopy {
  max-width: 70ch;
}


