.glass-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.story-section {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.story-section:last-child {
  border-bottom: none;
}

.story-section.is-reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1 1 52%;
}

.story-text h2 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 500;
}

.story-text p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.95;
}

.story-text ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.story-text li {
  margin-bottom: 10px;
  opacity: 0.9;
}

.story-media {
  flex: 1 1 48%;
}

.story-media img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

@media (max-width: 900px) {
  .story-section,
  .story-section.is-reverse {
    flex-direction: column;
  }

  .story-section {
    padding: 56px 0;
  }
}

@media (max-width: 768px) {
  .story-text p {
    font-size: 17px;
  }
}
