.boten-reason {
  background: #ffffff;
  border-top: 1px solid rgba(0, 51, 102, 0.14);
  color: #102033;
  padding: clamp(64px, 8vw, 112px) 24px;
}

.boten-reason *,
.boten-reason *::before,
.boten-reason *::after {
  box-sizing: border-box;
}

.boten-reason__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.boten-reason__heading {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 860px;
}

.boten-reason__heading p {
  color: #2f7d50;
  font-size: 0.94rem;
  font-weight: 850;
  margin: 0 0 14px;
}

.boten-reason__heading h2 {
  color: #003366;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
}

.boten-reason__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.boten-reason-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border: 1px solid rgba(0, 51, 102, 0.14);
  border-radius: 8px;
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 460px;
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.boten-reason-card::after {
  background: linear-gradient(90deg, #2f7d50 0%, #d8a239 100%);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.boten-reason-card:hover {
  border-color: rgba(216, 162, 57, 0.5);
  box-shadow: 0 20px 42px rgba(16, 32, 51, 0.12);
  transform: translateY(-6px);
}

.boten-reason-card__media {
  background: #eaf0ed;
  overflow: hidden;
}

.boten-reason-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.boten-reason-card__media--contain img {
  object-fit: contain;
  padding: 12px;
}

.boten-reason-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.boten-reason-card__icon {
  align-items: center;
  background: rgba(47, 125, 80, 0.1);
  border: 1px solid rgba(47, 125, 80, 0.25);
  border-radius: 8px;
  color: #2f7d50;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.boten-reason-card__icon svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 26px;
}

.boten-reason-card h3 {
  color: #003366;
  font-size: 1.36rem;
  font-weight: 850;
  line-height: 1.22;
  margin: 0;
}

.boten-reason-card p {
  color: #4d5f6f;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 1080px) {
  .boten-reason__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .boten-reason {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boten-reason__grid {
    display: flex;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 12px;
    scroll-snap-type: x mandatory;
  }

  .boten-reason__grid::-webkit-scrollbar {
    display: none;
  }

  .boten-reason-card {
    flex: 0 0 min(84vw, 360px);
    grid-template-rows: 190px 1fr;
    min-height: 448px;
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .boten-reason-card {
    flex-basis: 86vw;
  }

  .boten-reason-card__body {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boten-reason-card {
    transition-duration: 0.001ms;
  }
}
