/* ─── ABOUT STORY WIDGET ─── */
.da-story-section {
  padding: 80px 0;
  background: #fff;
}
.da-story-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-story-section .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.da-story-section .story-img-wrap {
  position: relative;
  border-radius: var(--radius, 12px);
  overflow: hidden;
}
.da-story-section .story-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius, 12px);
}
.da-story-section .story-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--green, #61CE70);
  color: var(--dark, #111827);
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.da-story-section .story-badge strong {
  display: block;
  font-size: 24px;
  font-family: var(--font-head, 'Oswald', sans-serif);
}
.da-story-section .section-tag {
  display: inline-block;
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--green, #61CE70);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 14px;
  background: rgba(97,206,112,0.12);
  border-radius: 20px;
}
.da-story-section .section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark, #111827);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-head, 'Oswald', sans-serif);
}
.da-story-section .section-title span {
  color: var(--green, #61CE70);
}
.da-story-section .section-divider {
  width: 60px;
  height: 3px;
  background: var(--green, #61CE70);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.da-story-section .section-subtitle {
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 100%;
}
.da-story-section .story-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}
.da-story-section .story-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  color: var(--dark, #111827);
}
.da-story-section .story-list li:last-child {
  border-bottom: none;
}
.da-story-section .story-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green, #61CE70);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111827'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive */
@media (max-width: 900px) {
  .da-story-section .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
