/* Mobile-first styles */
.soft-video {
  width: 100%;
  height: auto;
  max-height: 100vh; /* Mobile: can use full height */
  object-fit: contain; /* Keeps entire portrait video visible */
  display: block;
  margin: 0 auto;
}

/* Soft feminine article styling */
#article-content {
  padding: 60px 0;
  background: #fff;
}

#article-content h2.section-heading {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #4a3a55; /* soft purple/neutral */
  margin-bottom: 25px;
}

#article-content p {
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  color: #555;
  letter-spacing: 0.2px;
  margin-bottom: 28px;
}

#article-content .col-lg-8 {
  max-width: 740px;
  float: none;
}

#article-content hr.primary {
  border-color: #c6b2d9; /* gentle lavender */
  width: 60px;
  margin: 20px auto 40px;
}

/* Desktop / tablets */
@media (min-width: 768px) {
  .soft-video {
    max-height: 75vh; /* Desktop: limit height */
  }
}
