/* ==========================================================================
   SHN Ceylon — "Why Choose Us" Section
   ========================================================================== */

.shn-why {
  background-color: var(--shn-white);
  padding-block: clamp(56px, 7vw, 110px);
}

.shn-why__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.shn-why__title {
  font-size: 58px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -0.02em;
  color: #121212;
  margin-bottom: 22px;
}

.shn-why__text {
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--shn-gray-700);
  max-width: 46ch;
  margin-bottom: 32px;
}

.shn-why__arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--shn-ink);
  color: var(--shn-ink);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.shn-why__arrow-btn:hover {
  background: var(--shn-ink);
  color: var(--shn-white);
}

.shn-why__arrow-btn svg {
  width: 20px;
  height: 20px;
}

/* ---- Video embed ---- */
.shn-why__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--shn-gray-50);
  aspect-ratio: 1 / 1;
}

.shn-why__media iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (max-width: 991.98px) {
  .shn-why__row {
    grid-template-columns: 1fr;
  }

  .shn-why__media {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .shn-why__play {
    width: 64px;
    height: 64px;
  }

  .shn-why__play svg {
    width: 22px;
    height: 22px;
  }
}
