.mf-story-section { padding: 60px; background: var(--mf-cream); }

.story-wrapper { display: flex; align-items: center; gap: 18px; }

.story-container { overflow: hidden; width: 100%; }
.story-track { display: flex; transition: transform .5s ease; }

.story-card {
  min-width: calc(100% / 3 - 20px);
  margin: 0 10px;
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(43,24,16,0.06);
  border: 1px solid #f0e8e3;
}
@media (max-width: 920px) { .story-card { min-width: calc(100% / 2 - 20px); } }
@media (max-width: 600px) { .story-card { min-width: calc(100% - 20px); } }

.story-card .quote-icon {
  color: var(--mf-extra); font-size: 22px; margin-bottom: 14px;
}
.story-card h3 { color: var(--mf-primary); margin-bottom: 12px; font-family: 'Rozha One', serif; font-size: 19px; }
.story-card p { color: #666; line-height: 1.8; font-size: 13.5px; }

.story-nav {
  width: 46px; height: 46px;
  border: none; border-radius: 50%;
  cursor: pointer;
  background: white;
  color: var(--mf-primary);
  border: 1.5px solid var(--mf-border);
  flex-shrink: 0;
  transition: all 0.2s;
}
.story-nav:hover { background: var(--mf-primary); color: white; border-color: var(--mf-primary); }