/* ===== Headline Block (공통) ===== */
.headline-block {
  margin-top: 40px;
}
.headline-head {
  margin-bottom: 24px;
}
.headline-label {
  font-size: 50px;
  font-weight: 500;
  color: #dddddd;
  opacity: 0.35;
  line-height: 0.8;
  letter-spacing: -0.02em;
  transform: scaleY(1.8);
  transform-origin: left top;
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}
.headline-title {
  font-size: 28px;
  font-weight: 700;
  margin: 12px 30px 8px;
  color: #000;
}
.headline-text {
  font-size: 15px;
  line-height: 1.7;
  margin-left: 30px;
  color: #333;
}

/* 이미지 그리드 */
.headline-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
}
.headline-item {
  flex: 1;
  text-align: center;
}
.headline-item img {
  width: 100%;
  height: auto;
  display: block;
}
.headline-caption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 브랜드 */
.section-brand {
  padding: 30px 0px;
  background: #f5f5f5;
}
.section-brand-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.brand-quote {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.brand-quote .accent {
  color: #e60012;
}
.brand-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}
.brand-button {
  text-align: center;
}

/* ✅ (중요) brand-button .btn 개별 정의 제거
   버튼 디자인은 아래 공통 .btn 하나로 통일함 */

/* headline 반응형 */
@media (max-width: 767px) {
  .headline-label { font-size: 42px; }
  .headline-title { font-size: 22px; }
  .headline-grid { flex-direction: column; gap: 20px; }
}

/* ===== 장비 배너(공통 가능) ===== */
.section-equipment .equipment-banner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.section-equipment img {
  width: 100%;
  display: block;
}

/* ✅ equipment-cta는 "위치"만 담당. 디자인은 .btn이 먹는다 */
.section-equipment .equipment-cta {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .section-equipment .equipment-cta {
    bottom: 20px;
  }
}

/* 투석혈관시술 */
.section-actions {
  display: flex;
  justify-content: center;
  margin : 40px 0 ;
}

/* ===== Contact 블럭 ===== */

.section-contact .contact-grid {
  display: flex;
  gap: 0px;
  align-items: flex-start;
  margin-bottom: 32px;
}

/* 좌우 2칸 고정 */
.contact-hours{
  flex: 0 0 50%;
}
.contact-call {
  flex: 0 0 50%;
  text-align: left;
}

/* 텍스트 */
.contact-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* 대표전화 영역 */

.contact-logo {
  width: 140px;
  margin-bottom: 16px;
}

.contact-phone-title {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.contact-phone-number {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-call .btn {
  margin-top: 20px;
}

/* 위치/지도 */
.location-block {
  margin-top: 32px;
}

.map-root {
  width: 100%;
  height: 300px;
}

/* ===== Contact Text (Mobile ≤767) ===== */
@media (max-width: 767px) {
}
  .section-contact .section-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section-contact .contact-text {
    font-size: 11px;
    line-height: 2;
    word-break: keep-all;
  }

  .section-contact .contact-phone-title {
    font-size: 12px;
    margin-top: 8px;
  }

  .section-contact .contact-phone-number {
    font-size: 17px;
    margin-bottom: 6px;
    word-break: keep-all;
  }

    .section-contact .contact-hours {    
    word-break: keep-all;
  }


/* =========================
   ✅ Common Button (.btn)  (brand-button 스타일로 통일)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 40px;
  border: 1px solid #666;
  background: transparent;

  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

/* ✅ 브랜드에서 마음에 든 hover(회색 배경)로 통일 */
.btn:hover {
  background: #d0d0d0;
  color: #000;
  border-color: #000;
}

/* span.btn 같이 링크가 아닌 요소도 클릭 이벤트 중복 방지
   (span은 a 내부에 있으니 클릭은 a가 받게 하는 게 안전) */
span.btn {
  pointer-events: none;
}

/* 버튼 모바일 */
@media (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* 메인 언론보도: headline-grid(기존 flex) 무시하고 grid로 고정 */
#main-news-grid{
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
}
@media (max-width: 767px){
  #main-news-grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}
