.welcome-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.4fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 5vw, 72px) clamp(18px, 5vw, 64px);
  background: #f2f8f5;
  border-block: 1px solid var(--line);
  scroll-margin-top: 165px;
}

.welcome-copy {
  max-width: 420px;
}

.welcome-copy h2 {
  color: #173d3a;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.08;
}

.welcome-copy > p:not(.eyebrow) {
  max-width: 330px;
  margin-bottom: 24px;
  color: #52635b;
  font-size: 1.05rem;
}

.welcome-duration {
  color: #31584c;
  font-size: 0.88rem;
  font-weight: 700;
}

.welcome-video {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 1040px;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(23, 61, 58, 0.13);
  border-radius: var(--radius);
  background: #173d3a;
  box-shadow: 0 16px 36px rgba(23, 61, 58, 0.1);
}

.welcome-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1916 / 1080;
  object-fit: contain;
}

.welcome-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(58px, 6vw, 80px);
  height: clamp(58px, 6vw, 80px);
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #174f48;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.welcome-play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
}

.welcome-play:hover {
  background: #0e3b35;
}

.welcome-play:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.welcome-play[hidden],
.welcome-video-error[hidden] {
  display: none;
}

.welcome-video-error {
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
}

.welcome-video-error a {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .welcome-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 16px;
    scroll-margin-top: 132px;
  }

  .welcome-copy,
  .welcome-copy > p:not(.eyebrow) {
    max-width: 100%;
  }

  .welcome-copy h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 14px;
  }

  .welcome-copy > p:not(.eyebrow) {
    margin-bottom: 16px;
  }
}
