/* ░░ 기본 이미지 그리드 레이아웃 (4칸 구성) ░░ */
.image-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  padding: 60px 5%;
}

/* ░░ 공통 박스 스타일 ░░ */
.image-row-2 > * {
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ░░ 유튜브 이미지 (좌측 상단) ░░ */
.image-row-2 .img-large {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
}

/* ░░ 파킨슨 뉴스 박스 (우측 상단) ░░ */
.news-box {
  padding: 20px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-box h2 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #0056d6;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.news-card {
  background: white;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.news-card:hover {
  transform: scale(1.03);
}

.news-card h3 {
  font-size: 1.05em;
  margin-bottom: 6px;
}

.news-card p {
  font-size: 0.9em;
  color: #555;
}

/* ░░ 병원 사진 카드 (좌측 하단) ░░ */
.hospital-card.image-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hospital-card.image-card img.hospital-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hospital-caption {
  padding: 20px;
}

.hospital-caption h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.hospital-caption a {
  color: #0056d6;
  text-decoration: underline;
}

/* ░░ 병원 정보 카드 (우측 하단) ░░ */
.hospital-card.info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 30px;
  text-align: left;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.info-card h3 {
  color: #0056d6;
  margin-bottom: 16px;
  font-size: 18px;
}

.info-card a {
  color: #0056d6;
  font-weight: bold;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}
