/* ========================================
   Stone & Grain — Video Showcase
   YouTube embed with 16:9 responsive wrapper
   ======================================== */

.video {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.video__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.video__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
