/**
 * about.css - Page-specific styles for About Me
 * Theme: Clean Minimalism (Delight Acupuncture)
 */

/* ==========================================================================
   About Delight Acupuncture (Clinic Section)
   ========================================================================== */
.about-clinic-section {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.about-clinic-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--default-text, #303030);
  margin-bottom: 1rem;
}

/* ==========================================================================
   About Me Section & Grid Layout
   ========================================================================== */
.about-me-section {
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.about-me-grid {
  /* Column layout is provided by .grid-sidebar-content in grid.css */
}

/* ==========================================================================
   Profile Column (Photo, Name, Credentials)
   ========================================================================== */
.about-me-profile-col {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-me-photo-wrapper {
  margin-bottom: 0.75rem;
}

.about-me-photo {
  width: 200px;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  display: block;
}

.about-me-name {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-heading);
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.1px;
}

.about-me-credentials {
  font-weight: 300;
  font-size: 1rem;
  color: rgb(48, 48, 48);
  line-height: 1.4;
  margin-bottom: 0;
  letter-spacing: -0.2px;
}

/* ==========================================================================
   Biography & Career History Column
   ========================================================================== */
.about-me-bio-col {
  flex: 1 1 0%;
}

.about-me-bio-col p:not(.site-accent-box-1) {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-text, #303030);
  margin-bottom: 1.15rem;
  max-width: none;
}

.about-me-stat-boxes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0;
}

.about-me-korean-grid {
  gap: 0.5rem;
  align-items: stretch;
}

.about-me-korean-grid .grid-panel {
  display: flex;
  height: 100%;
}

.about-me-korean-panel {
  width: 100%;
  max-width: 400px;
  height: 100%;
  margin: 0;
  padding: 20px 28px;
  box-sizing: border-box;
}

.about-me-korean-panel h3 {
  margin-bottom: 0.3rem;
}

.about-me-korean-panel li {
  list-style: none;
}

/* ==========================================================================
   Hanisarang Image Styling
   ========================================================================== */
.img-hanisarang img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   About Page: Lower Topic Grid Panels
   ========================================================================== */
.grid-panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-km-body p,
.km-to-me-body p,
.about-hanisarang-body p {
  margin-bottom: 0.85rem;
}

.about-km-body p:last-child,
.km-to-me-body p:last-child,
.about-hanisarang-body p:last-child {
  margin-bottom: 0;
}

.news-links {
  list-style: circle;
}

.news-links li {
  margin-left: 23px;
}

.news-links a {
  color: var(--accent-2);
}

/* ==========================================================================
   Hanisarang Volunteer Gallery
   ========================================================================== */
.about-volunteer-gallery-section {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.about-volunteer-gallery-section h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.volunteer-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.volunteer-photo-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.volunteer-photo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.volunteer-photo-item img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 900px) {
  .volunteer-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .about-me-korean-grid .grid-panel {
    justify-content: center;
  }

  .about-me-korean-panel {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-me-profile-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-me-stat-boxes {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .volunteer-photo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


