
.page {
  padding: 4rem 2rem;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}


.intro {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 1000px;
  margin: 2rem auto;
}


.vision-blocks {
  display: flex;
  flex-wrap: wrap;              
  justify-content: center;      
  gap: 2.5rem;                   
  margin-top: 4.5rem;
  width: 100%;
  align-items: stretch;
}


.vision {
  flex: 0 1 clamp(260px, 30vw, 340px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.02);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem; 
}

.vision-img {
  width: calc(100% + 3rem); 
  margin: -1.5rem -1.5rem 1rem; 
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px 12px 0 0; 
}

.vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.vision:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  background-color: rgba(255,255,255,0.04);
}




.vision-more {
  max-width: 1040px;
  margin: 3rem auto 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  text-align: left;
}

.vision-more h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  text-align: center;
}

.vision-more h3 {
  margin: 1.2rem 0 0.4rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.vision-more p {
  margin: 0.1rem 0 0.75rem;
  opacity: 0.92;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-align-last: left;
}

@media (max-width: 480px) {
  .vision-more { margin-top: 2rem; padding: 1rem; }
}


@media (max-width: 480px) {
  .vision-blocks { gap: 2rem; }
  .vision { flex-basis: clamp(240px, 90vw, 340px); }
}
