/*
Theme Name: KEYE Eye Clinic Child
Theme URI: https://www.keye.co.kr/
Description: 카이안과(강남 선릉역 시력교정 전문 안과) Kadence 자식 테마. 브랜드 컬러(#269FD1) + CTA 옐로우(#FFC72C) 기반 디자인 시스템.
Author: 선행 (R&D팀)
Template: kadence
Version: 1.0.0
Text Domain: keye-eyeclinic-child
*/

/* ==========================================================================
   1. 디자인 토큰 (CSS Custom Properties)
   ========================================================================== */
:root {
  /* 메인 (기존 브랜드 컬러 유지) */
  --keye-blue: #269FD1;
  --keye-blue-dark: #1B7EA8;
  --keye-blue-darker: #14607F;

  /* 서브 / 배경 */
  --keye-bg-tint: #F4FAFD;
  --keye-bg-tint-2: #EAF6FB;
  --keye-white: #FFFFFF;
  --keye-off-white: #F8F9FA;

  /* CTA 포인트 (오렌지 → 옐로우로 변경 확정) */
  --keye-cta: #FFC72C;
  --keye-cta-hover: #F2B400;
  --keye-cta-text: #1A2E3D; /* 옐로우 위에는 흰색 대신 진한 네이비 계열 */

  /* 텍스트 */
  --keye-text: #1A1A1A;
  --keye-text-sub: #4A4A4A;
  --keye-text-mute: #8A8A8A;

  /* 레이아웃 */
  --keye-radius: 14px;
  --keye-radius-sm: 8px;
  --keye-shadow: 0 4px 20px rgba(38, 159, 209, 0.08);
  --keye-container: 1160px;

  /* 폰트 */
  --keye-font-kr: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --keye-font-en: 'Montserrat', sans-serif;
}

/* ==========================================================================
   2. 폰트 & 기본 타이포그래피
   ========================================================================== */
body {
  font-family: var(--keye-font-kr);
  color: var(--keye-text);
  letter-spacing: -0.01em;
  line-height: 1.7;
}

h1, h2, h3, h4,
.keye-heading {
  font-family: var(--keye-font-kr);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--keye-text);
}

.keye-en-point {
  font-family: var(--keye-font-en);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   3. 공통 레이아웃 유틸리티
   ========================================================================== */
.keye-section {
  padding: 88px 24px;
}

.keye-section--tint {
  background: var(--keye-bg-tint);
}

.keye-section--tint2 {
  background: var(--keye-bg-tint-2);
}

.keye-container {
  max-width: var(--keye-container);
  margin: 0 auto;
}

.keye-eyebrow {
  display: inline-block;
  font-family: var(--keye-font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--keye-blue);
  margin-bottom: 12px;
}

.keye-section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}

.keye-section-desc {
  font-size: 17px;
  color: var(--keye-text-sub);
  margin-bottom: 40px;
  max-width: 640px;
}

/* ==========================================================================
   4. 버튼 / CTA
   ========================================================================== */
.keye-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  cursor: pointer;
}

.keye-btn--primary {
  background: var(--keye-cta);
  color: var(--keye-cta-text);
  box-shadow: 0 8px 24px rgba(255, 199, 44, 0.35);
}

.keye-btn--primary:hover {
  background: var(--keye-cta-hover);
  transform: translateY(-2px);
  color: var(--keye-cta-text);
}

.keye-btn--outline {
  background: transparent;
  color: var(--keye-blue);
  border: 1.5px solid var(--keye-blue);
}

.keye-btn--outline:hover {
  background: var(--keye-blue);
  color: var(--keye-white);
}

/* ==========================================================================
   5. 히어로 섹션
   ========================================================================== */
.keye-hero {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--keye-bg-tint) 0%, var(--keye-white) 100%);
}

.keye-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.keye-hero__content {
  text-align: left;
}

.keye-hero__eyebrow {
  color: var(--keye-blue);
  font-family: var(--keye-font-en);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}

.keye-hero__title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.4;
  margin-bottom: 20px;
}

.keye-hero__title strong {
  color: var(--keye-blue);
}

.keye-hero__desc {
  font-size: 17px;
  color: var(--keye-text-sub);
  max-width: 480px;
  margin: 0 0 36px;
}

.keye-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 빠른 상담 신청 폼 카드 */
.keye-hero__form-wrap {
  display: flex;
  justify-content: center;
}

.keye-hero-form {
  width: 100%;
  max-width: 400px;
  background: var(--keye-white);
  border-radius: var(--keye-radius);
  box-shadow: 0 12px 40px rgba(38, 159, 209, 0.14);
  padding: 32px 28px;
  border-top: 4px solid var(--keye-cta);
}

.keye-hero-form__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--keye-text);
  margin-bottom: 6px;
}

.keye-hero-form__desc {
  font-size: 13.5px;
  color: var(--keye-text-mute);
  margin-bottom: 22px;
  line-height: 1.6;
}

.keye-hero-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.keye-hero-form__row input,
.keye-hero-form__row select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E4E9EC;
  border-radius: var(--keye-radius-sm);
  font-family: var(--keye-font-kr);
  font-size: 14.5px;
  color: var(--keye-text);
  background: var(--keye-off-white);
  transition: border-color 0.15s ease;
}

.keye-hero-form__row input:focus,
.keye-hero-form__row select:focus {
  outline: none;
  border-color: var(--keye-blue);
  background: var(--keye-white);
}

.keye-hero-form__row select {
  color: var(--keye-text-sub);
}

.keye-hero-form__consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--keye-text-mute);
  margin: 4px 0 4px;
  cursor: pointer;
}

.keye-hero-form__consent input {
  width: 15px;
  height: 15px;
  accent-color: var(--keye-blue);
}

.keye-hero-form__submit {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .keye-hero__grid {
    grid-template-columns: 1fr;
  }
  .keye-hero__content {
    text-align: center;
  }
  .keye-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .keye-hero__actions {
    justify-content: center;
  }
  .keye-hero-form {
    max-width: 100%;
  }
}


/* ==========================================================================
   6. 신뢰 지표 바
   ========================================================================== */
.keye-trust-bar {
  padding: 48px 24px;
  background: var(--keye-blue);
}

.keye-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

.keye-trust-item__num {
  font-family: var(--keye-font-en);
  font-size: 34px;
  font-weight: 700;
  color: var(--keye-white);
  display: block;
  margin-bottom: 6px;
}

.keye-trust-item__label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   7. 시술 아이콘 그리드
   ========================================================================== */
.keye-procedure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.keye-procedure-card {
  background: var(--keye-white);
  border-radius: var(--keye-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--keye-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--keye-text);
  display: block;
}

.keye-procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(38, 159, 209, 0.18);
}

.keye-procedure-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--keye-bg-tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--keye-blue);
}

.keye-procedure-card__icon svg {
  width: 28px;
  height: 28px;
}

.keye-procedure-card__title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.keye-procedure-card__desc {
  font-size: 13.5px;
  color: var(--keye-text-mute);
}

/* ==========================================================================
   8. 원장 소개
   ========================================================================== */
.keye-doctor {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.keye-doctor__photo {
  border-radius: var(--keye-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--keye-bg-tint-2);
}

.keye-doctor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.keye-doctor__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.keye-badge {
  background: var(--keye-bg-tint-2);
  color: var(--keye-blue-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .keye-doctor {
    grid-template-columns: 1fr;
  }
  .keye-doctor__photo {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   8.5 구글 리뷰
   ========================================================================== */
.keye-review-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -16px 0 32px;
  flex-wrap: wrap;
}

.keye-review-summary__stars {
  color: var(--keye-cta);
  font-size: 20px;
  letter-spacing: 2px;
}

.keye-review-summary__score {
  font-size: 20px;
  font-weight: 700;
  color: var(--keye-text);
}

.keye-review-summary__count {
  font-size: 14px;
  color: var(--keye-text-mute);
}

.keye-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.keye-review-card {
  background: var(--keye-white);
  border-radius: var(--keye-radius);
  padding: 26px 24px;
  box-shadow: var(--keye-shadow);
}

.keye-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.keye-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.keye-review-card__name {
  font-weight: 700;
  font-size: 14.5px;
  margin: 0 0 2px;
}

.keye-review-card__stars {
  color: var(--keye-cta);
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
}

.keye-review-card__when {
  color: var(--keye-text-mute);
  font-size: 12px;
  letter-spacing: 0;
  margin-left: 4px;
}

.keye-review-card__text {
  font-size: 14px;
  color: var(--keye-text-sub);
  line-height: 1.7;
}

.keye-review-cta {
  text-align: center;
  margin-top: 36px;
}

/* ==========================================================================
   9. 블로그 하이라이트 (시력교정 정보)
   ========================================================================== */
.keye-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.keye-post-card {
  background: var(--keye-white);
  border-radius: var(--keye-radius);
  overflow: hidden;
  box-shadow: var(--keye-shadow);
  text-decoration: none;
  color: var(--keye-text);
  display: block;
}

.keye-post-card__thumb {
  aspect-ratio: 16 / 10;
  background: var(--keye-bg-tint-2);
  overflow: hidden;
}

.keye-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.keye-post-card__body {
  padding: 20px 22px 24px;
}

.keye-post-card__cat {
  font-size: 12.5px;
  color: var(--keye-blue);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.keye-post-card__title {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.keye-post-card__excerpt {
  font-size: 13.5px;
  color: var(--keye-text-mute);
  line-height: 1.6;
}

/* ==========================================================================
   10. 오시는 길 + 진료시간
   ========================================================================== */
.keye-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.keye-location__map {
  border-radius: var(--keye-radius);
  overflow: hidden;
  min-height: 340px;
  background: var(--keye-bg-tint-2);
}

.keye-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.keye-location__info {
  background: var(--keye-white);
  border-radius: var(--keye-radius);
  box-shadow: var(--keye-shadow);
  padding: 36px;
}

.keye-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.keye-hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--keye-off-white);
  font-size: 14.5px;
}

.keye-hours-table td:first-child {
  color: var(--keye-text-sub);
  width: 40%;
}

.keye-hours-table td:last-child {
  font-weight: 600;
  text-align: right;
}

@media (max-width: 860px) {
  .keye-location {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   11. 하단 CTA 배너
   ========================================================================== */
.keye-cta-banner {
  background: linear-gradient(135deg, var(--keye-blue) 0%, var(--keye-blue-darker) 100%);
  border-radius: var(--keye-radius);
  padding: 64px 40px;
  text-align: center;
  color: var(--keye-white);
}

.keye-cta-banner__title {
  color: var(--keye-white);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}

.keye-cta-banner__desc {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

/* ==========================================================================
   12. 아카이브 - 서브카테고리 탭
   ========================================================================== */
.keye-archive-header {
  padding: 56px 24px 0;
  text-align: center;
}

.keye-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 48px;
}

.keye-tab-nav__item {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--keye-off-white);
  color: var(--keye-text-sub);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.keye-tab-nav__item:hover {
  background: var(--keye-bg-tint-2);
  color: var(--keye-blue-dark);
}

.keye-tab-nav__item.is-active {
  background: var(--keye-blue);
  color: var(--keye-white);
}

/* ==========================================================================
   13. 반응형 - 모바일
   ========================================================================== */
@media (max-width: 600px) {
  .keye-section {
    padding: 56px 18px;
  }
  .keye-hero {
    padding: 80px 18px 64px;
  }
  .keye-cta-banner {
    padding: 44px 24px;
  }
}





/* ---------- 1. 브랜드 컬러 & 기본 변수 ---------- */
.entry-content,
.keye-article {
  --keye-primary: #269FD1;        /* 브랜드 메인 블루 (제작의뢰서 기준) */
  --keye-primary-dark: #1C7FA8;   /* 버튼 hover 등 진한 블루 */
  --keye-primary-light: #EAF6FC;  /* 파스텔 배경용 연한 블루 */
  --keye-border: #DCEEF6;
  --keye-text: #222222;
  --keye-text-secondary: #5A5A5A;
  --keye-white: #FFFFFF;
  --keye-radius: 10px;
  --keye-kakao: #FEE500;          /* 카카오 공식 브랜드 컬러 */
  --keye-kakao-text: #3C1E1E;
  --keye-naver: #03C75A;          /* 네이버 공식 브랜드 컬러 */
 
  color: var(--keye-text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  font-size: 16px;
}
 
/* ---------- 2. 타이포그래피 ---------- */
.entry-content h1,
.keye-article h1 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}
 
.entry-content h2,
.keye-article h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 48px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--keye-primary);
  letter-spacing: -0.2px;
}
 
.entry-content h3,
.keye-article h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--keye-primary-dark);
}
 
.entry-content p,
.keye-article p {
  margin: 0 0 18px;
  color: var(--keye-text);
}
 
.entry-content strong,
.keye-article strong {
  font-weight: 700;
  color: var(--keye-text);
}
 
.entry-content a,
.keye-article a {
  color: var(--keye-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.entry-content a:hover,
.keye-article a:hover {
  color: var(--keye-primary-dark);
}
 
/* ---------- 3. 핵심 요약 박스 (quick-answer) ----------
   모든 AEO 글의 도입부 "직답 문단"에 사용.
   예: <p class="quick-answer"><span class="quick-answer-label">핵심 요약</span>본문...</p>
*/
.entry-content .quick-answer,
.keye-article .quick-answer {
  background: var(--keye-primary-light);
  border-left: 4px solid var(--keye-primary);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--keye-text);
}
 
.entry-content .quick-answer-label,
.keye-article .quick-answer-label {
  display: inline-block;
  background: var(--keye-primary);
  color: var(--keye-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 10px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}
 
/* ---------- 4. 추천 이유 / 강점 리스트 (reason-list) ----------
   숫자(01/02/03)가 아닌 체크마크를 사용 — 순서가 아니라
   "충족 조건"의 의미이므로 체크 아이콘이 더 적합합니다.
*/
.entry-content .reason-list,
.keye-article .reason-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
 
.entry-content .reason-list li,
.keye-article .reason-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--keye-white);
  border: 1px solid var(--keye-border);
  border-radius: var(--keye-radius);
  padding: 16px 20px;
  margin: 0;
}
 
.entry-content .reason-list li::before,
.keye-article .reason-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--keye-primary);
  color: var(--keye-white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
 
/* ---------- 5. 표 (진료시간표 등) ----------
   반응형을 위해 <div class="table-wrap"><table>...</table></div> 로 감싸서 사용
*/
.entry-content .table-wrap,
.keye-article .table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--keye-radius);
  border: 1px solid var(--keye-border);
}
 
.entry-content table,
.keye-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 420px; /* 모바일에서 좁아지지 않고 가로 스크롤 되도록 */
}
 
.entry-content thead th,
.keye-article thead th {
  background: var(--keye-primary);
  color: var(--keye-white);
  text-align: left;
  font-weight: 600;
  padding: 12px 16px;
  white-space: nowrap;
}
 
.entry-content tbody td,
.keye-article tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--keye-border);
}
 
.entry-content tbody tr:nth-child(even),
.keye-article tbody tr:nth-child(even) {
  background: var(--keye-primary-light);
}
 
.entry-content tbody tr:last-child td,
.keye-article tbody tr:last-child td {
  border-bottom: none;
}
 
/* ---------- 6. 상담 채널 버튼 (cta-list / cta-button) ----------
   전화/온라인상담/카카오/네이버예약 등 채널별로
   cta-phone / cta-online / cta-kakao / cta-naver 클래스를 조합해서 사용
*/
.entry-content .cta-list,
.keye-article .cta-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
}
 
.entry-content .cta-list li,
.keye-article .cta-list li {
  flex: 1 1 200px;
  margin: 0;
}
 
.entry-content .cta-button,
.keye-article .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  line-height: 1.3;
  text-align: center;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.entry-content .cta-button:hover,
.keye-article .cta-button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.entry-content .cta-button span,
.keye-article .cta-button span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}
 
.entry-content .cta-phone,
.keye-article .cta-phone {
  background: var(--keye-primary);
  color: var(--keye-white) !important;
}
.entry-content .cta-online,
.keye-article .cta-online {
  background: var(--keye-white);
  color: var(--keye-primary) !important;
  border: 2px solid var(--keye-primary);
}
.entry-content .cta-kakao,
.keye-article .cta-kakao {
  background: var(--keye-kakao);
  color: var(--keye-kakao-text) !important;
}
.entry-content .cta-naver,
.keye-article .cta-naver {
  background: var(--keye-naver);
  color: var(--keye-white) !important;
}
 
/* ---------- 7. FAQ 아코디언 (details / summary) ----------
   워드프레스 본문에 <details><summary>질문</summary><p>답변</p></details>
   그대로 쓰면 자동 적용됩니다. 별도 JS 불필요 (브라우저 기본 기능 활용)
*/
.entry-content details,
.keye-article details {
  border: 1px solid var(--keye-border);
  border-radius: var(--keye-radius);
  margin: 0 0 12px;
  overflow: hidden;
  background: var(--keye-white);
}
 
.entry-content summary,
.keye-article summary {
  padding: 16px 44px 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  background: var(--keye-white);
}
.entry-content summary::-webkit-details-marker,
.keye-article summary::-webkit-details-marker {
  display: none;
}
.entry-content summary::marker,
.keye-article summary::marker {
  content: "";
}
 
.entry-content summary::after,
.keye-article summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--keye-primary);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.entry-content details[open] summary::after,
.keye-article details[open] summary::after {
  transform: translateY(-50%) rotate(45deg); /* +를 회전시켜 x 모양으로 */
}
 
.entry-content details p,
.keye-article details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--keye-text-secondary);
  border-top: 1px solid var(--keye-border);
  padding-top: 14px;
}
 
/* ---------- 8. 지도 임베드 ---------- */
.entry-content .map-embed,
.keye-article .map-embed {
  border-radius: var(--keye-radius);
  overflow: hidden;
  border: 1px solid var(--keye-border);
  margin: 16px 0;
}
.entry-content .map-embed iframe,
.keye-article .map-embed iframe {
  display: block;
}
 
/* ---------- 9. 리스트(ul/ol) 기본 스타일 ---------- */
.entry-content ul:not(.reason-list):not(.cta-list),
.keye-article ul:not(.reason-list):not(.cta-list) {
  padding-left: 22px;
  margin: 0 0 20px;
}
.entry-content ul:not(.reason-list):not(.cta-list) li,
.keye-article ul:not(.reason-list):not(.cta-list) li {
  margin-bottom: 8px;
}
 
/* ---------- 10. 모바일 반응형 (600px 이하) ---------- */
@media (max-width: 600px) {
  .entry-content h1,
  .keye-article h1 {
    font-size: 1.5rem;
  }
  .entry-content h2,
  .keye-article h2 {
    font-size: 1.2rem;
    margin: 36px 0 14px;
  }
  .entry-content .cta-list,
  .keye-article .cta-list {
    flex-direction: column;
  }
  .entry-content .cta-list li,
  .keye-article .cta-list li {
    flex: 1 1 auto;
  }
  .entry-content .quick-answer,
  .keye-article .quick-answer {
    padding: 16px 18px;
    font-size: 1rem;
  }
}