.vis {
  background: var(--sp);
}

.vis-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.vis-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

.vis-photo img {
  display: block;
  width: 100%;
}

/* ── Features ── */

.vis-feat {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.vf {
  display: flex;
  gap: .7rem;
}

.vf-i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--or);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .78rem;
  margin-top: 2px;
}

.vf h4 {
  font-size: .84rem;
  font-weight: 700;
  color: var(--nd);
}

.vf p {
  font-size: .8rem;
  color: var(--tl);
  line-height: 1.65;
}

/* ── Mobile ── */

@media (max-width: 900px) {
  .vis-grid {
    grid-template-columns: 1fr;
  }
}
