/* ============================================================
   SKS Guide Cards — "Learn before you buy" callout
   Mirrors ui/collection/collection.html `.callout-section.guide-card`
   ============================================================ */

.sks-guides {
  background: var(--sks-guides-bg, #E8DFD0);
  padding: var(--sks-guides-pad, 50px) 48px;
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
}

.sks-guides__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.sks-guides__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8520A;
  font-weight: 600;
  margin: 0 0 8px;
  text-align: center;
  font-family: 'Jost', sans-serif;
}

.sks-guides__heading {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #1A1A1A;
  font-weight: 600;
  text-align: center;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}

.sks-guides__sub {
  font-size: 14px;
  color: #4A4440;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 26px;
  font-weight: 300;
}

.sks-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sks-guides__card {
  display: block;
  padding: 22px 20px 18px;
  background: var(--sks-guides-card-bg, #FFFFFF);
  border: 1px solid #E5E0DA;
  border-radius: 10px;
  text-align: left;
  text-decoration: none;
  color: #4A4440;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sks-guides__card:hover {
  border-color: #B8520A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: #B8520A;
}

.sks-guides__icon {
  display: block;
  color: #B8520A;
  margin-bottom: 10px;
}

.sks-guides__icon svg {
  width: 26px;
  height: 26px;
}

.sks-guides__card-h {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.25;
  text-align: left;
  transition: color .15s;
}

.sks-guides__card-s {
  display: block;
  font-size: 12.5px;
  color: #9A9088;
  line-height: 1.5;
  margin: 0 0 12px;
  font-weight: 300;
}

.sks-guides__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #B8520A;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap .2s;
}

.sks-guides__card:hover .sks-guides__card-cta {
  gap: 7px;
}

.sks-guides__card:hover .sks-guides__card-h {
  color: #B8520A;
}

.sks-guides__card-cta svg {
  width: 12px;
  height: 12px;
}

/* Responsive */
@media screen and (max-width: 960px) {
  .sks-guides {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sks-guides__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 749px) {
  .sks-guides {
    padding: 40px 16px;
  }
  .sks-guides__heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .sks-guides__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
