/* ══════════════════════════════════════════
   ABOUT STORY BLOCK
══════════════════════════════════════════ */
.story-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Media / Image side ── */
.story-media {
  position: relative;
}

.story-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.story-img,
.story-img-placeholder {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.story-img-placeholder {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.story-img-placeholder img {
  height: 320px;
  width: auto;
  object-fit: contain;
}

/* Floating badge */
.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(4, 157, 191, 0.4);
}

.story-badge__num {
  font: var(--h4);
  color: var(--white);
  line-height: 1;
}

.story-badge__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
  font-size: 12px;
}

/* ── Content side ── */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-label {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.story-title {
  font: var(--h2);
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0;
}

.story-divider {
  margin: 24px 0 28px;
  width: 100px;
}

.story-text {
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.story-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 36px;
}

.story-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
}

.story-highlight-item svg {
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .story-inner {
    gap: 48px;
  }
  .story-img,
  .story-img-placeholder {
    height: 420px;
  }
}

@media (max-width: 768px) {
	.story-content{
		
		display: contents;
	}
	.story-media {
    order: -1;
  }
	.story-text{
		text-align: center;
	}
	
	.story-label      { order: 1; text-align: center; margin-bottom: 16px; }
  .story-title      { order: 2; text-align: center; }
  .story-divider    { order: 3; margin: 24px auto 0; }
  .story-media      { order: 4; margin: 28px 0; }
  .story-text       { order: 5; text-align: center; }
  .story-highlights { order: 6; }
  .story-content > .btn { order: 7; align-self: center; }
	
  .story-section {
    padding: 80px 0;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 0;
	  display: flex;
    flex-direction: column;
  }
	
	.story-img-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
	
  .story-img,
  .story-img-placeholder {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .story-section {
    padding: 60px 0;
  }
}