/* Shared content/layout styles reused across hospital detail pages. */
.content {
  background: #fff;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.hero-grid.single {
  grid-template-columns: 1fr;
}

.card {
  background: #f5f7fb;
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  padding: 1.2rem;
}

.card h3 {
  color: #19407a;
  margin-bottom: 0.6rem;
}

.card ul {
  margin-left: 1.2rem;
}

.section {
  margin-top: 1.4rem;
}

.section h2 {
  color: #19407a;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.section h3 {
  color: #19407a;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.section h2 + h3,
.section > h3:first-child {
  margin-top: 0;
}

.section h4 {
  color: #264f8a;
  margin-top: 0.9rem;
}

.section ul {
  margin-left: 1.2rem;
}

.muted {
  color: #5b6478;
}

.key-highlights-card,
.imc-card {
  background: #fff;
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  padding: 1.2rem;
}

.key-highlights-card h2,
.imc-card h2 {
  margin-top: 0;
}

.overview-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
}

.hero-grid.single > .card {
  background: #fff !important;
  border-color: #dbe3f0 !important;
  box-shadow: none !important;
}

.overview-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.imc-photo-single {
  margin: 12px 0 16px;
}

.imc-photo-single img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #dbe3f0;
  display: block;
}

.image-row,
.highlights-photo-row,
.overview-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.image-row .imc-photo-single,
.highlights-photo-row .imc-photo-single,
.overview-photo-row .imc-photo-single,
.facilities-photo-row .imc-photo-single,
.single-photo-row .imc-photo-single {
  margin: 0;
}

.highlights-photo-row .imc-photo-single img,
.overview-photo-row .imc-photo-single img {
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.single-photo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}

.facilities-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.facilities-photo-row .imc-photo-single img {
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.disclaimer,
.disclaimer-section {
  margin: 1.2rem auto 0;
  background: #fff8e8;
  border: 1px solid #f0d48a;
  border-left: 6px solid #d89b00;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  color: #4d3b12;
  box-shadow: 0 2px 10px rgba(216, 155, 0, 0.12);
}

.disclaimer-section h3 {
  color: #7f5600;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.disclaimer-section p + p {
  margin-top: 0.55rem;
}

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

  .overview-card {
    grid-template-columns: 56px 1fr;
  }

  .overview-logo {
    width: 52px;
    height: 52px;
  }

  .image-row,
  .highlights-photo-row,
  .overview-photo-row,
  .facilities-photo-row {
    grid-template-columns: 1fr;
  }

  .highlights-photo-row .imc-photo-single img,
  .overview-photo-row .imc-photo-single img,
  .facilities-photo-row .imc-photo-single img {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 1.2rem;
  }

  .image-row,
  .highlights-photo-row,
  .overview-photo-row,
  .facilities-photo-row {
    grid-template-columns: 1fr !important;
  }

  .highlights-photo-row .imc-photo-single img,
  .overview-photo-row .imc-photo-single img,
  .facilities-photo-row .imc-photo-single img {
    height: auto !important;
    object-fit: contain;
  }
}
