/* ==========================
   INMUU DANCE - inmuu_dance.css (UPDATED)
   - 폰트: GmarketSansMedium 통일
   - .text 전역 충돌 방지
   - 허브 페이지(지점/카드/FAQ/CTA) 섹션 스타일 추가
   - 링크 파란색 제거 + "클릭 가능" 인터랙션 강화
   - 중복 선언 정리
   ========================== */

/* ✅ 전역 폰트 통일 */
html, body {
  font-family: 'GmarketSansMedium';
}

/* ✅ 혹시 다른 컴포넌트가 폰트 상속을 끊는 경우 대비 */
* {
  font-family: inherit;
}

/* ==========================
   INTRO
   ========================== */
.intro {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ⚠️ .text는 다른 곳에서도 흔히 쓰여 충돌 위험 → intro 내부로 한정 */
.intro .text {
  font-size: 45px;
  color: #fff;
  text-align: center;
}

/* break-line */
@media screen and (max-width: 413px) {
  .break-line { display: block; }
}

/* ==========================
   LAYOUT
   ========================== */
.content_container {
  width: 1280px;
  min-height: 900px;
  margin: 120px auto;
}

/* ==========================
   HERO VIDEO BLOCK
   ========================== */
.video-container {
  display: flex;
  justify-content: space-between;
  background-size: cover;
  gap: 20px; /* 요소 간 간격 */
}

.video-container > .text-area > .title {
  display: flex;
  align-items: center;
  color: #ff7900;
}

.video-container > .text-area > .title > .in {
  font-size: 110px;
  font-weight: 600;
  padding-bottom: 10px;
}

.video-container > .text-area > .title > .muuterview {
  font-size: 35px;
  font-weight: 600;
}

/* 구조 변화 대비용(유지) */
.video-container > .text-area > .title > .terview {
  /* 필요시 사용 */
}

.video-container > .text-area > .explanation {
  font-size: 35px;
  font-weight: 550;
}

.video-container > .video-area > iframe {
  width: 700px;
  height: 360px;
  border-radius: 12px;
}

/* 구분선 */
.line {
  border: 1px solid #111;
  margin: 100px 0;
}

/* ==========================
   PS CONTAINER
   ========================== */
.ps_container h1,
.ps_container h2 {
  font-weight: 600;
}

.ps_container p {
  font-weight: 550;
}

/* ==========================
   HUB SECTIONS (허브 섹션)
   ========================== */

/* 공통 타이틀 */
.dance-features h2,
.dance-branches h2,
.dance-faq h2,
.dance-bottom-cta h2,
.dance-competition h2 {
  font-weight: 600;
}

/* (추가) 섹션 간격/가독성 */
.dance-features,
.dance-branches,
.dance-faq,
.dance-bottom-cta,
.dance-competition {
  margin: 0;
}

/* ✅ 그리드 레이아웃 (HTML에 맞춰 자동으로 정렬되도록 기본값 제공) */
.dance-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.dance-branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

/* 카드 공통 */
.dance-card,
.dance-branch-card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

/* 브랜치 카드 텍스트 */
.dance-branch-card h3 {
  margin: 0 0 8px;
  font-weight: 700;
}

.dance-branch-card p {
  margin: 0 0 10px;
  color: #333;
}

/* FAQ details */
.dance-faq details {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  margin-bottom: 10px;
}

.dance-faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* 하단 CTA 정렬 */
.dance-bottom-cta {
  text-align: center;
}

/* 버튼 텍스트 정렬 보강(기존 button 구조 유지) */
.button .text {
  font-family: inherit;
}

/* ==========================
   CTA ROW / BRANCH ACTIONS
   ========================== */
.dance-cta-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dance-branch-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================
   링크 파란색 제거 + 클릭감(인터랙션) 강화
   ========================== */

/* 기본 링크: 파란색/밑줄 제거하되 클릭감 유지 */
.content_container a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .12s ease, transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

/* hover 시 살짝 반응 */
.content_container a:hover {
  opacity: 0.95;
}

/* 본문 내 텍스트 링크는 "점선 밑줄"로 클릭감 부여(파란색 대신) */
.content_container p a,
.content_container .ps_container a,
.content_container .dance-competition a:not(.button),
.content_container .dance-faq a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.content_container p a:hover,
.content_container .ps_container a:hover,
.content_container .dance-competition a:not(.button):hover,
.content_container .dance-faq a:hover {
  text-decoration-style: solid;
  filter: brightness(0.95);
  opacity: 1;
}

/* 카드 hover: 떠오르며 클릭감 */
.dance-branch-card:hover,
.dance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  border-color: #e8e8e8;
}

/* 카드 안 “→” 안내 텍스트에 이동감 */
.dance-branch-card span {
  color: #111;
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
  opacity: .9;
  transition: transform .12s ease, opacity .12s ease;
}

.dance-branch-card:hover span {
  transform: translateX(4px);
  opacity: 1;
}

/* 버튼도 링크색 안 타게 + hover/active 반응 */
.button,
.button:visited,
.button:hover,
.button:active {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  filter: brightness(0.98);
}

.button:active {
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* 키보드 포커스(탭 이동) 시도 클릭 가능 느낌 + 접근성 */
.content_container a:focus-visible {
  outline: 2px solid rgba(255,121,0,.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ==========================
   RESPONSIVE
   ========================== */

/* <= 1024 */
@media screen and (max-width: 1024px) {
  .content_container {
    width: 90%;
    margin: 0 auto;
  }

  .video-container {
    flex-direction: row;
  }

  .video-container > .text-area > .title > .in {
    font-size: 73px;
    font-weight: 600;
  }

  .video-container > .text-area > .title > .muuterview {
    font-size: 23px;
    font-weight: 600;
  }

  .video-container > .text-area > .explanation {
    font-size: 25px;
    font-weight: 550;
  }

  .video-container > .video-area > iframe {
    margin-top: 25px;
    width: 440px;
    height: 250px;
  }

  .ps_container {
    margin-bottom: 70px;
  }

  /* 그리드 조정 */
  .dance-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dance-branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* <= 900 : features 3열 -> 1열 대비 */
@media (max-width: 900px) {
  .dance-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

/* <= 768 */
@media screen and (max-width: 768px) {
  .content_container {
    width: 90%;
    margin: 0 auto;
  }

  .video-container {
    flex-direction: column;
  }

  .video-container > .text-area > .title {
    justify-content: center;
  }

  .video-container > .text-area > .title > .in {
    font-size: 110px;
    font-weight: 600;
  }

  .video-container > .text-area > .title > .muuterview {
    font-size: 35px;
    font-weight: 600;
  }

  .video-container > .text-area > .explanation {
    font-size: 30px;
    font-weight: 550;
    text-align: center;
  }

  .video-container > .video-area > iframe {
    margin-top: 25px;
    width: 440px;
    height: 250px;
  }

  .line {
    margin: 70px 0;
  }

  /* 그리드 조정 */
  .dance-feature-grid {
    grid-template-columns: 1fr;
  }

  .dance-branch-grid {
    grid-template-columns: 1fr;
  }
}

/* <= 600 : 지점 카드 2열 -> 1열 */
@media (max-width: 600px) {
  .dance-branch-grid {
    grid-template-columns: 1fr !important;
  }
}

/* <= 413 : 줄바꿈 */
@media screen and (max-width: 413px) {
  .break-line { display: block; }
}

