.about-hero{
  display:flex;
  flex-direction:column;      
  align-items:center;
  gap: 32px;;
  padding:0;
  margin-top: 50px;
}
.about-photo {
  position: relative;
  width:100%;
  border-radius: 8px;
  margin: auto;
  overflow: hidden;   /* 프레임 고정 */
}
.about-photo img{
  width:100%;
  object-fit:cover;
  filter:grayscale(.1) contrast(1.05);
  transition:transform .7s ease;
}
.about-photo:hover img{
  transform:scale(1.05);
}
.about-copy {
  width: 100%;
  text-align: center;
  font-family: var(ff-display);
  letter-spacing: -0.02rem;
  margin: 40px;
}
.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  color: var(-c--gray-800);
}
.about-copy .hidden {
  display: none;
}
.about-copy .accent {
  color: var(--c-pink);
  font-weight: 700;
}
.about-lead,
.about-sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-gray-600);
}
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 80px;
}
.card {
  flex: 1 1 260px;
  max-width: 320px;
  background: var(--c-gray-100);
  border-radius: 8px;
  padding: 20px 24px;
  border: 1px solid var(--c-gray-300);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  text-align: left;
  transition:transform .4s ease;
}
.card:hover {
  transform:translateY(-8px);
  background: var(--c-gray-200);
}
.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--c-pink);
}
.card-body {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  text-align: justify;     /* 양쪽 끝 맞춤 */
  text-align-last: left;   /* 마지막 줄은 왼쪽 정렬(옵션) */
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero{
    gap: 32px;;
    padding:0;
    margin-top: 0px;
  }
  .about-photo {
    width:100%;
    height: 340px; /* 고정 높이 - 사진 크기 */
    border-radius: 0px;
  }
  .about-photo img{
    height:100%;
    transition:none;
  }
  .about-photo:hover img{
    transform:scale(1.0);
  }
  .about-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .about-copy .hidden {
    display: block;
  }
  .about-lead,
  .about-sub {
    font-size: 18px;
    line-height: 1.7;
  }
  .card:hover {
    transform:translateY(0px);
    background: var(--c-gray-100);
  }
}

