.stories-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.stories-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

.story-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
}

.story-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.story-content {
  padding: 24px;
  text-align: left;
}

.story-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #222;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.story-content .story-cta a {
  color: #111;
  text-decoration: underline;
  margin-right: 12px;
  transition: color 0.2s ease;
}

.story-content .story-cta a:hover {
  color: #ff3b30;
}

/* Responsive Layout */
@media(min-width: 768px) {
  .story-card {
    flex-direction: row;
  }

  .story-image {
    width: 50%;
  }

  .story-content {
    width: 50%;
    padding: 32px;
  }
}




.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-links img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.15);
}

.social-links svg {
  stroke: #111; /* default */
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.social-links svg:hover {
  stroke: #ff3b30; /* example highlight color */
  transform: scale(1.15);
}


.follow-section {
  text-align: center;
  margin-top: 50px;
}

.follow-section p {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.15);
}

/* CTA */
.cta {
  background: linear-gradient(180deg,#fff,#fbfbfb);
  padding: 40px 20px;
  border-radius: 14px;
  border: 1px solid #efece8;
  text-align: center;
}
.cta p { color: var(--muted); margin-bottom: 18px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid #e6e2df;
  box-shadow: none;
}



/* Hero */
.about-hero {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid #f0ece9;
  background: linear-gradient(to bottom right, #ffffff, #f3f2f0);
  box-shadow: inset 0 -2px 8px rgba(0,0,0,0.05);
}
.hero-logo { max-width: 180px; margin: 0 auto 12px; display: block; }
.hero-title {
  font-family: "Spectral", serif;
  font-size: 1.5rem;
  margin: 8px 0;
  letter-spacing: 0.4px;
  font-weight: bold;
}
.hero-sub {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* containers */
.container { width: 100%; padding: 0 20px; margin: 0 auto; }
.container.narrow { max-width: 900px; }
.container { max-width: 1200px; }