/*
 * YMCA of Greater Tulsa — ways-to-save.css
 * Styles for the Ways to Save template
 */

.wts-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 72px var(--pad, 64px) 80px;
}

/* Intro WYSIWYG */
.wts-intro {
  margin: 0 auto 56px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* 3-column grid, wraps automatically */
.wts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Card — matches deep-link-card style from Story sidebar */
.wts-card {
  border: 0.5px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  text-decoration: none;
}
.wts-card:hover {
  border-color: #c0c0c0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Card image */
.wts-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.wts-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

/* Card body */
.wts-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Eyebrow — optional category label */
.wts-card-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

/* Title */
.wts-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* Body copy */
.wts-card-copy {
  font-size: 14px;
  line-height: 1.65;
  color: #888;
  flex: 1;
  margin-bottom: 14px;
}
.wts-card-copy p {
  margin-bottom: 8px;
}
.wts-card-copy p:last-child {
  margin-bottom: 0;
}
.wts-card-copy ul,
.wts-card-copy ol {
  margin: 0 0 8px 0;
  padding-left: 16px;
}
.wts-card-copy li {
  margin-bottom: 4px;
}
.wts-card-copy strong {
  font-weight: 600;
  color: #1a1a1a;
}
.wts-card-copy a {
  color: var(--blue);
  text-decoration: underline;
}

/* CTA button */
.wts-card-btn {
  display: block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-top: auto;
  transition: background 0.15s;
}
.wts-card-btn:hover {
  background: var(--green);
}

/* Responsive */
@media (max-width: 1024px) {
  .wts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .wts-wrap {
    padding: 48px var(--pad, 20px) 60px;
  }
  .wts-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Bottom copy below cards */
.wts-outro {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 0.5px solid #ebebeb;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
.wts-outro p {
  margin-bottom: 14px;
}
.wts-outro p:last-child {
  margin-bottom: 0;
}
.wts-outro a {
  color: var(--blue);
  text-decoration: underline;
}
.wts-outro strong {
  font-weight: 600;
  color: #1a1a1a;
}
