/*
 * YMCA of Greater Tulsa — story.css
 * Our Story two-column layout with sidebar
 */

.story-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px var(--pad) 96px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.story-lede {
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid #ebebeb;
}
.story-lede em { font-style: normal; color: var(--green); }
.story-body p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 28px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-pullquote {
  border-left: 4px solid var(--green);
  padding: 6px 0 6px 28px;
  margin: 40px 0;
}
.story-pullquote-text {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-section { margin-bottom: 32px; }
.sidebar-band { display: flex; align-items: stretch; margin-bottom: 20px; }
.sidebar-band-bar { width: 5px; border-radius: 3px 0 0 3px; flex-shrink: 0; }
.sidebar-band-inner {
  background: #f4f4f2; padding: 12px 18px; flex: 1;
  border-radius: 0 5px 5px 0; border: 0.5px solid #ebebeb; border-left: none;
}
.sidebar-band-title { font-size: 13px; font-weight: 600; color: #1a1a1a; }

.deep-link-card {
  display: block; text-decoration: none;
  border: 0.5px solid #e8e8e8; border-radius: 10px;
  overflow: hidden; margin-bottom: 12px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  background: #fff;
}
.deep-link-card:hover { border-color: #c0c0c0; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-1px); }
.deep-link-card-img { height: 130px; overflow: hidden; position: relative; background: #f0f0ee; }
.deep-link-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.deep-link-card:hover .deep-link-card-img img { transform: scale(1.03); }
.deep-link-card-body { padding: 18px 20px 20px; }
.deep-link-card-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 7px; }
.deep-link-card-title { font-size: 15px; font-weight: 600; color: #1a1a1a; line-height: 1.3; margin-bottom: 6px; }
.deep-link-card-desc { font-size: 12.5px; color: #888; line-height: 1.5; margin-bottom: 12px; }
.deep-link-card-cta { font-size: 12px; font-weight: 600; }

.mission-callout {
  background: var(--green-xdk); border-radius: 10px; padding: 28px 24px; margin-top: 32px;
}
.mission-callout-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.mission-callout-text  { font-weight: 300; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.88); }
.mission-callout-sub   { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 14px; padding-top: 14px; border-top: 0.5px solid rgba(255,255,255,0.12); }

@media (max-width: 1024px) {
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .sidebar      { position: static; }
}
@media (max-width: 767px) {
  .story-layout      { padding: 48px var(--pad) 64px; }
  .story-lede        { font-size: 20px; }
  .story-pullquote-text { font-size: 18px; }
}
