/*
 * YMCA of Greater Tulsa — youth-orientation.css
 * Youth Wellness Orientation page
 */

.yo-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px var(--pad, 64px) 96px;
}

/* ── Intro ── */
.yo-intro {
  max-width: 740px;
  margin: 0 0 60px;
}
.yo-tagline {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.yo-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.yo-intro p:last-child {
  margin-bottom: 0;
}

/* ── Steps ── */
.yo-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 56px 0;
  border-top: 0.5px solid #ebebeb;
  align-items: start;
}
.yo-step:first-of-type {
  border-top: none;
  padding-top: 0;
}

.yo-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(29, 158, 117, 0.25);
}

.yo-step-body {
  flex: 1;
}

.yo-band {
  margin-bottom: 28px;
}

/* ── Video ── */
.yo-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
}
.yo-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Step 2 layout ── */
.yo-step-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.yo-waiver-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.yo-inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
.yo-inline-link:hover {
  color: var(--green);
}

.yo-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yo-checklist li {
  font-size: 14.5px;
  line-height: 1.65;
  color: #444;
  padding-left: 24px;
  position: relative;
}
.yo-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.yo-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 4px;
  transition: background 0.15s;
}
.yo-download-btn:hover {
  background: var(--green);
}
.yo-download-btn svg {
  flex-shrink: 0;
}

/* Guidelines image */
.yo-guidelines-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
.yo-guidelines-img img {
  width: 100%;
  display: block;
}

/* ── Resources ── */
.yo-resources {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yo-resource-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 0.5px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.yo-resource-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.yo-resource-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #eff5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.yo-resource-card:hover .yo-resource-icon {
  background: #d8ede6;
}
.yo-resource-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}
.yo-resource-cta {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .yo-step-content {
    grid-template-columns: 1fr;
  }
  .yo-guidelines-img {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .yo-wrap {
    padding: 48px var(--pad, 20px) 64px;
  }
  .yo-step {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }
  .yo-step-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .yo-guidelines-img {
    max-width: 100%;
  }
}
