/**
 * home-visit.css - Page-specific styles for Home Visit Care
 * Styles for the Home Visit Acupuncture section
 */

/* ==========================================================================
   Home Visit Section Container
   ========================================================================== */

.home-visit-section {
  border-radius: 12px;
  overflow: hidden;
}

/* Cover banner (used on index.html) */
.home-visit-cover-banner {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #f1f5f9;
}

.home-visit-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  z-index: 1;
}

.home-visit-cover-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem 2rem;
}

.home-visit-cover-title {
  font-family: var(--font-serif, "Gowun Batang", "AppleMyungjo", "Batang", serif);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--heading-darkest);
  margin: 0;
  line-height: 1.25;
}

/* ==========================================================================
   Content Body & Lead Text
   ========================================================================== */
.home-visit-body {
  padding: 2.5rem 2rem;
}

.home-visit-lead-text {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-text, #303030);
  margin: 0 auto 1.25rem auto;
  text-align: center;
}

/* ==========================================================================
   Home Visit Details & Typography Components
   ========================================================================== */
.home-visit-subheading {
  text-align: center;
  font-weight: 600;
  color: var(--color-text-heading);
  margin: 0 auto 0.75rem auto;
}

.home-visit-grid-row {
  margin-top: 2.5rem;
}

.home-visit-panel-note {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.pricing-plan-title {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-heading);
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
}

.session-duration-heading {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.session-duration-list {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
  .home-visit-section {
    margin-top: 0.5rem;
    border-radius: 8px;
  }

  .home-visit-grid-row {
    margin-top: 1rem;
  }
  
  .home-visit-body {
    padding: 1.25rem 0.75rem;
  }
  
  .home-visit-cover-banner {
    min-height: 140px;
  }
  
  .home-visit-cover-overlay {
    padding: 0.85rem 0.75rem;
  }
}


