<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Story section styles using BEM */
.story {
}

/* Container now uses the global container class */

.story__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.story__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--spacing-3xl);
  text-align: left;
  max-width: 800px;
}

.story__section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.story__section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--border-color);
}

.story__section:last-child::after {
  display: none;
}

.story__image-container {
  flex: 0 0 40%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.story__image {
  display: block;
  max-height: 250px;
  width: auto;
}

.story__content {
  flex: 1;
}

.story__section-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.story__paragraph {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

.story__paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .story__title {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
  }

  .story__subtitle {
    font-size: var(--font-size-base);
    margin-bottom: 40px;
  }

  .story__section-title {
    font-size: var(--font-size-md);
  }

  .story__section {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .story__image-container {
    flex: 0 0 100%;
    order: 1;
  }

  .story__content {
    order: 2;
  }
}
</pre></body></html>