@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");


/* ========================================
기본 설정
======================================== */

:root {
  --mobile-width: 390px;

  --navy: #061a3b;
  --blue: #0a2d70;
  --deep-blue: #082860;
  --yellow: #ffd800;

  --text: #22262c;
  --gray-text: #777c84;
  --line: #e2e2e2;
}


html {
  min-height: 100%;

  overflow-y: scroll;

  scroll-behavior: smooth;

  background: #111;
}


body {
  min-height: 100%;

  margin: 0;
  padding: 0;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    Arial,
    sans-serif;

  font-size: 14px;

  color: var(--text);
  background: #111;
}


html,
body,
div,
span,
header,
main,
section,
article,
footer,
nav,
h1,
h2,
h3,
p,
ol,
ul,
li,
a,
button,
img,
strong,
small,
i,
b {
  box-sizing: border-box;
}


h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}


ol,
ul {
  list-style: none;
}


a {
  color: inherit;

  text-decoration: none;
}


button {
  margin: 0;
  padding: 0;

  border: 0;
  outline: 0;

  font: inherit;

  color: inherit;
  background: transparent;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}


img {
  display: block;

  max-width: 100%;
}


* {
  word-break: keep-all;
}


/* ========================================
PC에서도 모바일 폭 고정
======================================== */

.page_shell {
  display: flex;
  justify-content: center;

  width: 100%;
  min-height: 100vh;

  background: #111;
}


.mobile_page {
  position: relative;

  width: 100%;
  max-width: var(--mobile-width);
  min-height: 100vh;

  overflow: hidden;

  background: #fff;

  box-shadow:
    0 0 34px rgba(0, 0, 0, 0.35);
}


/* ========================================
상단 헤더
======================================== */

.header {
  position: relative;
  z-index: 10;

  background: #fff;
}


.status_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 50px;

  padding: 8px 21px 0;

  color: #111;
}


.status_time {
  font-size: 12px;
  font-weight: 600;
}


.status_icons {
  display: flex;
  align-items: center;

  gap: 7px;
}


.signal_icon {
  display: flex;
  align-items: flex-end;

  width: 14px;
  height: 12px;

  gap: 1px;
}


.signal_icon i {
  display: block;

  width: 2px;

  border-radius: 2px;

  background: #111;
}


.signal_icon i:nth-child(1) {
  height: 3px;
}


.signal_icon i:nth-child(2) {
  height: 5px;
}


.signal_icon i:nth-child(3) {
  height: 8px;
}


.signal_icon i:nth-child(4) {
  height: 11px;
}


.wifi_icon {
  position: relative;

  width: 14px;
  height: 10px;

  overflow: hidden;
}


.wifi_icon::before,
.wifi_icon::after {
  position: absolute;

  left: 50%;

  content: "";

  border: 1.5px solid #111;
  border-right-color: transparent;
  border-bottom-color: transparent;

  border-radius: 50%;

  transform:
    translateX(-50%)
    rotate(45deg);
}


.wifi_icon::before {
  top: 0;

  width: 12px;
  height: 12px;
}


.wifi_icon::after {
  top: 4px;

  width: 6px;
  height: 6px;
}


.battery_icon {
  position: relative;

  width: 19px;
  height: 9px;

  padding: 1px;

  border: 1.3px solid #111;
  border-radius: 2px;
}


.battery_icon::after {
  position: absolute;

  top: 2px;
  right: -3px;

  width: 2px;
  height: 4px;

  content: "";

  border-radius: 0 1px 1px 0;

  background: #111;
}


.battery_icon i {
  display: block;

  width: 75%;
  height: 100%;

  background: #111;
}


.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 66px;

  padding: 5px 20px 17px;

  gap: 12px;
}


.logo {
  display: flex;
  flex-direction: column;

  min-width: 0;
}


.logo strong {
  color: #102544;

  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.6px;
}


.logo span {
  margin-top: 2px;

  color: #657085;

  font-size: 10px;
  font-weight: 500;
}


.kakao_alarm_btn {
  display: flex;
  align-items: center;

  height: 34px;

  padding: 0 13px;

  border-radius: 18px;

  color: #4a3900;
  background: var(--yellow);

  font-size: 14px;
  font-weight: 800;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


.kakao_alarm_btn:active {
  transform: scale(0.97);
}


.kakao_alarm_btn.is_active {
  color: #fff;

  background: #3d2c00;
}


.bell_icon,
.small_bell_icon {
  position: relative;

  display: inline-flex;

  width: 14px;
  height: 14px;

  margin-right: 5px;

}





/* ========================================
메인 비주얼 슬라이드
======================================== */

.main_visual {
  position: relative;

  height: 526px;

  overflow: hidden;

  color: #fff;
  background: var(--navy);

  touch-action: pan-y;
}


.visual_slider {
  position: relative;

  width: 100%;
  height: 100%;
}


.visual_slide {
  position: absolute;

  inset: 0;

  padding: 91px 20px 30px;

  visibility: hidden;

  opacity: 0;

  transform: translateX(35px);

  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
}


.visual_slide.is_active {
  z-index: 2;

  visibility: visible;

  opacity: 1;

  transform: translateX(0);
}


.visual_slide.is_previous {
  transform: translateX(-35px);
}


.visual_content {
  position: relative;
  z-index: 3;
}


.visual_label {
  display: inline-flex;
  align-items: center;

  min-height: 31px;

  padding: 0 13px;

  border-radius: 18px;

  color: #b8c5da;
  background: #0a2958;

  font-size: 10px;
  font-weight: 500;
}


.main_visual h1 {
  margin-top: 14px;

  color: #f4f7fd;

  font-size: 27px;
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: -1.5px;
}


.main_visual h1 strong {
  font-weight: 900;
}


.visual_description {
  margin-top: 10px;

  color: #f2f5fb;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.4px;
}


.visual_features {
  display: flex;
  flex-wrap: wrap;

  position: relative;
  z-index: 3;

  width: 300px;

  margin-top: 17px;

  gap: 7px 5px;
}


.visual_features > span {
  display: inline-flex;
  align-items: center;

  min-height: 34px;

  padding: 0 10px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;

  color: #cbd4e1;
  background: rgba(255, 255, 255, 0.02);

  font-size: 10px;
  font-weight: 500;
}


.feature_icon {
    position: relative;
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
}

.feature_icon svg{display: block}












.visual_character {
  position: absolute;

  top: 39px;
  right: 3px;

  z-index: 1;

  width: 150px;
}


.visual_slide.is_active .visual_character {
  animation:
    characterFloat 3.4s ease-in-out infinite;
}


.visual_character_second {
  top: 48px;
  right: -1px;
}


.visual_character_third {
  top: 42px;
  right: -5px;
}


@keyframes characterFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}


.visual_control {
  position: absolute;

  right: 20px;
  bottom: 27px;
  left: 20px;

  z-index: 10;

  display: flex;
  align-items: center;

  gap: 15px;
}


.visual_progress {
  position: relative;

  height: 2px;

  flex: 1;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.42);
}


.visual_progress span {
  position: absolute;

  top: 0;
  left: 0;

  width: 33.333%;
  height: 100%;

  background: #26b9ff;

  transition: width 0.45s ease;
}


.visual_pagination {
  display: flex;
  align-items: center;

  min-width: 42px;

  gap: 3px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 9px;
}


.visual_pagination strong {
  color: #fff;

  font-size: 11px;
  font-weight: 700;
}


.visual_arrows {
  display: flex;
  align-items: center;

  gap: 8px;
}


.visual_arrows button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;

  color: #e3eaf6;
  background: rgba(255, 255, 255, 0.03);

  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.visual_arrows button:hover {
  border-color: rgba(255, 255, 255, 0.45);

  background: rgba(255, 255, 255, 0.1);
}


.visual_arrows button:active {
  transform: scale(0.94);
}


/* ========================================
유료 서비스 안내
======================================== */

.payment_notice {
  display: flex;
  align-items: center;

  min-height: 35px;

  padding: 0 20px;

  border-bottom: 1px solid #ddd;

  color: #7a4d4d;
  background: #f4f2f2;

  font-size: 12px;
}


.notice_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 12px;
  height: 12px;

  margin-right: 7px;

  flex: 0 0 auto;

  border: 1px solid currentColor;
  border-radius: 50%;

  font-size: 8px;
  font-weight: 800;
}


/* ========================================
콘텐츠 영역
======================================== */

.content_area {
  padding: 18px 20px 105px;

  background: #fff;
}


/* ========================================
카카오 채널 배너
======================================== */

.channel_banner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 73px;

  padding: 12px 14px;

  border-radius: 10px;

  gap: 10px;

  background: var(--yellow);
}


.channel_text strong {
  color: #302400;

  font-size: 16px;
  font-weight: 800;
}


.channel_text p {
  margin-top: 4px;

  color: #665100;

  font-size: 12px;
  line-height: 1.4;
}


.channel_add_btn {
  display: flex;
  align-items: center;
  gap:4px;

  height: 39px;

  padding: 0 12px;

  border-radius: 8px;

  color: #fff;
  background: #51171d;

  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


.channel_add_btn:active {
  transform: scale(0.97);
}


.channel_add_btn.is_active {
  background: #1d5231;
}


.kakao_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

}


/* ========================================
섹션 제목
======================================== */

.section_title {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 18px 0 10px;
}


.section_title h2 {
  color: #222;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}


.section_title a {
  display: flex;
  align-items: center;

  color: #676767;

  font-size: 14px;
}


.section_title a span {
  margin-left: 4px;

  font-size: 14px;
}


/* ========================================
전문가 카드
======================================== */

.expert_card {
  overflow: hidden;

  margin-bottom: 19px;

  border: 1px solid #dedede;
  border-radius: 10px;

  background: #fff;
}


.expert_header {
  display: flex;
  align-items: center;

  min-height: 72px;

  padding: 13px 13px 11px;

  gap: 9px;
}


.expert_profile {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  flex: 0 0 auto;

  border-radius: 50%;

  color: #fff;

  font-size: 14px;
  font-weight: 800;
}


.profile_dr {
  background:
    radial-gradient(
      circle at 35% 30%,
      #587ddd 0%,
      #1e4ca7 40%,
      #092967 75%,
      #071d4d 100%
    );
}


.profile_money {
  background:
    linear-gradient(
      145deg,
      #527ee1 0%,
      #2d56b5 48%,
      #15367c 100%
    );
}


.profile_value {
  background:
    linear-gradient(
      145deg,
      #845bc5 0%,
      #56338f 55%,
      #311c67 100%
    );
}


.profile_chart {
  background:
    linear-gradient(
      145deg,
      #08a0a7 0%,
      #087987 50%,
      #075267 100%
    );
}


.profile_global {
  background:
    linear-gradient(
      145deg,
      #3986cb 0%,
      #1c5eaa 50%,
      #123571 100%
    );
}


.profile_issue {
  background:
    linear-gradient(
      145deg,
      #e57d43 0%,
      #c64a37 50%,
      #8d2632 100%
    );
}


.expert_info {
  min-width: 0;

  flex: 1;
}


.expert_name {
  display: flex;
  align-items: center;

  gap: 6px;
}


.expert_name strong {
  color: #222;

  font-size: 16px;
  font-weight: 800;
}


.expert_info p {
  margin-top: 4px;

  overflow: hidden;

  color: #777;

  font-size: 12px;

  text-overflow: ellipsis;
  white-space: nowrap;
}


.expert_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 19px;

  padding: 0 6px;

  border-radius: 3px;

  font-size: 9px;
  font-weight: 800;
}


.badge_ai {
  color: #0871a7;
  background: #d8efff;
}


.badge_hot {
  color: #ce2d2d;
  background: #ffe1e1;
}


.badge_expert {
  color: #21834a;
  background: #ddf5e4;
}


.badge_new {
  color: #0780a2;
  background: #d9f7ff;
}


.badge_global {
  color: #3258a0;
  background: #e1eaff;
}


.badge_issue {
  color: #a84a20;
  background: #ffe7d7;
}


.expert_alarm_btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 82px;
  height: 36px;

  padding: 0 10px;

  border: 1px solid #e0e0e0;
  border-radius: 8px;

  color: #363636;
  background: #fff;

  font-size: 14px;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}


.small_bell_icon {
  width: 16px;
  height: 16px;

  margin-right: 5px;
}


.expert_alarm_btn.is_active {
  color: #fff;

  border-color: var(--blue);

  background: var(--blue);
}


.expert_recommend {
  display: flex;
  align-items: center;

  min-height: 40px;

  padding: 8px 13px;

  gap: 6px;

  background: #f2f2f2;
}


.expert_recommend strong {
  overflow: hidden;

  color: #2e2e2e;

  font-size: 14px;
  font-weight: 800;

  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ========================================
영상 영역
======================================== */

.video_area {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 190px;

  overflow: hidden;

  background: #111;
}


.video_area::before {
  position: absolute;

  inset: 0;

  content: "";

  opacity: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(20, 61, 141, 0.35),
      transparent 48%
    );

  transition: opacity 0.3s ease;
}


.video_area:hover::before,
.video_area.playing::before {
  opacity: 1;
}


.play_button {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  padding-left: 2px;

  border-radius: 50%;

  color: #071a3b;
  background: #0d3988;

  font-size: 13px;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}


.video_area:hover .play_button {
  transform: scale(1.08);
}


.video_area.playing .play_button {
  padding-left: 0;

  color: #fff;
  background: #1b4da7;
}


.video_state_text {
  position: absolute;

  top: calc(50% + 31px);
  left: 50%;

  z-index: 2;

  color: rgba(255, 255, 255, 0.62);

  font-size: 12px;

  opacity: 0;

  transform:
    translateX(-50%)
    translateY(5px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


.video_area:hover .video_state_text,
.video_area.playing .video_state_text {
  opacity: 1;

  transform:
    translateX(-50%)
    translateY(0);
}


.expert_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 54px;

  padding: 10px 13px;

  color: #333;

  font-size: 14px;
}


.watch_btn {
  display: flex;
  align-items: center;

  height: 34px;

  padding: 0 11px;

  border: 1px solid #e0e0e0;
  border-radius: 8px;

  background: #fff;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}


.watch_btn:hover {
  border-color: #aac0e8;

  background: #f5f8ff;
}


.watch_btn span {
  margin-left: 8px;

  font-size: 14px;
}


/* ========================================
전문가 구분선
======================================== */

.expert_divider {
  display: flex;
  align-items: center;

  margin: 15px 0;

  gap: 10px;

  color: #999;

  font-size: 9px;
}


.expert_divider::before,
.expert_divider::after {
  height: 1px;

  content: "";

  flex: 1;

  background: #e6e6e6;
}


/* ========================================
전문가 더보기
======================================== */

.more_expert_card {
  display: none;

  opacity: 0;

  transform: translateY(25px);
}


.more_expert_card.is_revealed {
  display: block;

  animation:
    revealExpertCard 0.55s ease forwards;
}


@keyframes revealExpertCard {

  from {
    opacity: 0;

    transform: translateY(25px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }

}


.scroll_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 133px;
  height: 35px;

  margin: 4px auto 47px;

  padding: 0 13px;

  border: 1px solid #ddd;
  border-radius: 4px;

  color: #777;
  background: #f5f5f5;

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08);

  font-size: 9px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.scroll_more_btn:hover {
  color: #173f83;
  background: #edf3ff;
}


.scroll_more_btn:active {
  transform: scale(0.97);
}


.more_arrow {
  display: inline-block;

  margin-left: 7px;

  font-size: 12px;

  transition: transform 0.3s ease;
}


.scroll_more_btn.is_loading .more_arrow {
  animation:
    moreArrowMove 0.8s ease infinite;
}


@keyframes moreArrowMove {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }

}


.expert_end_message {
  margin: -27px 0 43px;

  color: #999;

  font-size: 9px;
  text-align: center;
}


.expert_end_message.show {
  display: block;
}


/* ========================================
ARS 서비스 안내
======================================== */

.service_guide {
  overflow: hidden;

  border: 1px solid #dcdcdc;
  border-radius: 9px;

  background: #fff;
}


.guide_header {
  min-height: 68px;

  padding: 14px 15px 12px;

  color: #fff;
  background: linear-gradient(265deg, #09193D 3.7%, #1944A3 96.89%);

}


.guide_header strong {
  display: flex;
  align-items: center;

  font-size: 16px;
  font-weight: 800;
}


.guide_info_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 15px;
  height: 15px;

  margin-right: 7px;

  border: 1px solid #fff;
  border-radius: 50%;

  font-size: 9px;
}


.guide_header p {
  margin-top: 3px;
  margin-left: 22px;

  color: #c6d5f3;

  font-size: 14px;
}


.guide_content {
  padding: 14px 15px 17px;
}


.guide_intro {
  margin-bottom: 8px;

  color: #555;

  font-size: 14px;
  line-height: 1.55;
}


.guide_intro strong {
  color: #153974;
}


.guide_steps li {
  display: flex;

  min-height: 54px;

  padding: 10px 0;

  border-bottom: 1px solid #e6e6e6;

  gap: 11px;
}


.guide_steps li:last-child {
  border-bottom: 0;
}


.step_number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  flex: 0 0 auto;

  border-radius: 50%;

  color: #fff;
  background: #0a2d70;

  font-size: 12px;
  font-weight: 800;
}


.guide_steps strong {
  display: block;

  color: #252525;

  font-size: 14px;
  font-weight: 800;
}


.guide_steps p {
  margin-top: 3px;

  color: #777;

  font-size: 12px;
  line-height: 1.4;
}


.price_box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 65px;

  margin-top: 11px;
  padding: 11px 13px;

  border: 1px solid #c6e5f9;
  border-radius: 8px;

  color: #09193D;
  background: #dff3ff;
}


.price_box > div strong {
  font-size: 14px;
  font-weight: 800;
}


.price_box > div p {
  margin-top: 4px;

  font-size: 12px;
}


.price_box > b {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  font-size: 14px;
  font-weight: 800;
}


.price_box > b small {
  margin-top: 1px;

  font-size: 12px;
  font-weight: 500;
}


.guide_notice {
  margin: 14px 7px 0;

  color: #666;

  font-size: 12px;
  line-height: 1.5;
}


/* ========================================
하단 메뉴
======================================== */

.bottom_menu {
  position: fixed;

  right: auto;
  bottom: 0;
  left: 50%;

  z-index: 100;

  display: grid;

  width: 100%;
  max-width: var(--mobile-width);
  height: 73px;

  border-top: 1px solid #ddd;

  grid-template-columns: repeat(4, 1fr);

  background: #fff;

  transform: translateX(-50%);

  box-shadow:
    0 -5px 15px rgba(0, 0, 0, 0.04);

  padding-bottom:
    env(safe-area-inset-bottom);
}


.bottom_menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  color: #888;

  transition: color 0.2s ease;
}


.bottom_menu a.active {
  color: #09193D;
}


.bottom_menu strong {
  font-size: 12px;
  font-weight: 500;
}


.menu_icon {
  position: relative;

  display: block;

  width: 24px;
  height: 24px;
}

.bottom_menu a.active .menu_icon.home_icon svg path{fill:#09193D}
.bottom_menu a.active .menu_icon.expert_icon svg path{stroke:#09193D}
.bottom_menu a.active .menu_icon.guide_icon svg path{stroke:#09193D}
.bottom_menu a.active .menu_icon.customer_icon svg path{stroke:#09193D}







/* ========================================
PC
======================================== */

@media (min-width: 391px) {

  body {
    padding: 0 20px;
  }

}


/* ========================================
작은 모바일
======================================== */

@media (max-width: 360px) {

  .status_bar {
    padding-right: 17px;
    padding-left: 17px;
  }


  .header_inner {
    padding-right: 16px;
    padding-left: 16px;
  }


  .kakao_alarm_btn {
    padding: 0 10px;

    font-size: 11px;
  }


  .visual_slide {
    padding-right: 16px;
    padding-left: 16px;
  }


  .main_visual h1 {
    font-size: 25px;
  }


  .visual_character {
    right: -8px;

    width: 143px;
  }


  .visual_features {
    width: 285px;
  }


  .visual_features > span {
    padding: 0 8px;

    font-size: 9px;
  }


  .visual_control {
    right: 16px;
    left: 16px;
  }


  .content_area {
    padding-right: 16px;
    padding-left: 16px;
  }


  .channel_text strong {
    font-size: 13px;
  }


  .channel_add_btn {
    padding: 0 9px;
  }


  .expert_alarm_btn {
    min-width: 76px;

    padding: 0 8px;

    font-size: 9px;
  }

}


/* ========================================
애니메이션 최소화 설정
======================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  .visual_slide,
  .visual_progress span,
  .visual_character,
  .more_expert_card,
  .scroll_more_btn,
  .play_button {
    transition: none;
    animation: none;
  }

}





/* ========================================
expert-list.html 전용
======================================== */

.expert_list_page {
  padding-top: 25px;
}

.expert_page_title {
  margin-top: 0;
  margin-bottom: 10px;
}

.expert_page_title h2 {
  font-size: 18px;
  font-weight: 700;
}

.expert_list_page .scroll_more_btn {
  margin-bottom: 0;
}



/* ========================================
전문가 상세 페이지
drk.html / m1.html
======================================== */

.expert_detail_page {
  padding-bottom: 73px;
}


/* 상단 상세 헤더 */

.detail_header {
  position: relative;

  display: flex;
  align-items: center;

  height: 75px;

  padding: 0 24px;

  border-bottom: 1px solid #e3e3e3;

  background: #fff;
}


.detail_header h1 {
  margin-left: 20px;

  color: #222;

  font-size: 17px;
  font-weight: 700;
}


.detail_back {
  position: relative;

  display: block;

  width: 10px;
  height: 18px;

  flex: 0 0 auto;
}


.detail_back::before,
.detail_back::after {
  position: absolute;

  left: 0;

  width: 10px;
  height: 2px;

  content: "";

  border-radius: 2px;

  background: #333;
}


.detail_back::before {
  top: 5px;

  transform: rotate(-45deg);
}


.detail_back::after {
  bottom: 5px;

  transform: rotate(45deg);
}


/* 프로필 히어로 */

.expert_detail_hero {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 343px;

  padding: 40px 20px 38px;

  text-align: center;
}


.expert_detail_hero_dr {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #163d87 0%,
      #071a44 82%
    );
}


.expert_detail_hero_m1 {
  color: #222;

  background: #eaf3ff;
}


.detail_type_badge {
  display: inline-flex;
  align-items: center;

  min-height: 25px;

  padding: 0 12px;

  border-radius: 15px;

  font-size: 12px;
  font-weight: 600;
}


.detail_type_ai {
  color: #0a3771;

  background: #8ee8ff;
}


.detail_type_human {
  color: #146a3a;

  background: #c8ffd4;
}


.detail_type_icon {
  margin-right: 6px;

  font-style: normal;
}


.detail_person_icon {
  position: relative;

  width: 12px;
  height: 12px;

  margin-right: 7px;

  border: 1px solid currentColor;
  border-radius: 50%;
}


.detail_person_icon::before {
  position: absolute;

  top: 2px;
  left: 50%;

  width: 3px;
  height: 3px;

  content: "";

  border-radius: 50%;

  background: currentColor;

  transform: translateX(-50%);
}


.detail_person_icon::after {
  position: absolute;

  left: 50%;
  bottom: 1px;

  width: 7px;
  height: 3px;

  content: "";

  border-radius: 5px 5px 2px 2px;

  background: currentColor;

  transform: translateX(-50%);
}


.detail_profile {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  margin-top: 10px;

  border-radius: 50%;

  color: #fff;

  font-size: 16px;
  font-weight: 800;
}


.detail_profile_dr {
  background:
    radial-gradient(
      circle at 30% 25%,
      #2e64d8 0%,
      #123d91 45%,
      #061a47 100%
    );
}


.detail_profile_m1 {
  background:
    linear-gradient(
      145deg,
      #2a62d1,
      #061b4a
    );
}


.expert_detail_hero h2 {
  margin-top: 12px;

  font-size: 18px;
  font-weight: 800;
}


.detail_expert_summary {
  margin-top: 5px;

  color: inherit;

  font-size: 14px;

  opacity: 0.75;
}


.detail_keyword_list {
  display: flex;
  justify-content: center;

  margin-top: 16px;

  gap: 6px;
}


.detail_keyword_list span {
  display: inline-flex;
  align-items: center;

  min-height: 30px;

  padding: 0 11px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;

  color: #fff;
  background: rgba(255, 255, 255, 0.02);

  font-size: 13px;
}


.detail_keyword_light span {
  color: #0d4a92;

  border-color: #c8deef;

  background: #e3f4ff;
}


.detail_alarm_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 173px;
  height: 39px;

  margin-top: 15px;
  padding: 0 17px;

  border-radius: 22px;

  color: #231d00;
  background: #ffe000;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.detail_alarm_btn:active {
  transform: scale(0.97);
}


.detail_alarm_btn.is_active {
  color: #fff;

  background: #123d86;
}


.detail_alarm_icon {
  display: inline-flex;

  width: 16px;
  height: 16px;

  margin-right: 6px;
}


.detail_alarm_icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* 소개 */

.detail_intro_section {
  padding: 29px 25px 27px;

  border-bottom: 1px solid #ddd;

  background: #fff;
}


.detail_intro_section h3 {
  margin-bottom: 8px;

  color: #777;

  font-size: 12px;
  font-weight: 500;
}


.detail_intro_section p {
  color: #343434;

  font-size: 12px;
  line-height: 1.55;
}


/* 콘텐츠 */

.detail_content_section {
  padding: 23px 25px 0;

  background: #fff;
}


.detail_analysis_section {
  padding-top: 26px;
}


.detail_section_title {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 10px;
}


.detail_section_title h2 {
  color: #222;

  font-size: 18px;
  font-weight: 700;
}


.detail_title_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 21px;

  padding: 0 8px;

  border-radius: 3px;

  font-size: 11px;
}


.detail_free_badge {
  color: #fff;

  background: #14713d;
}


.detail_vod_card {
  overflow: hidden;

  border: 1px solid #dedede;
  border-radius: 10px;

  background: #fff;
}


.detail_vod_title {
  display: flex;
  align-items: center;

  min-height: 49px;

  padding: 10px 16px;

  gap: 6px;

  background: #f3f3f3;
}


.detail_vod_title strong {
  color: #222;

  font-size: 14px;
  font-weight: 800;
}


.detail_video_area {
  height: 198px;
}


.detail_vod_information {
  padding: 0 16px 21px;
}


.detail_vod_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 47px;
}


.detail_vod_meta strong {
  color: #333;

  font-size: 13px;
  font-weight: 500;
}


.detail_vod_meta time {
  color: #888;

  font-size: 12px;
}


.detail_price_box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 44px;

  padding: 0 14px;

  border-radius: 6px;

  background: #f4f4f4;
}


.detail_price_box span {
  color: #666;

  font-size: 11px;
}


.detail_price_box strong {
  color: #0b3e8f;

  font-size: 12px;
  font-weight: 800;
}


.detail_price_box small {
  color: #333;

  font-size: 11px;
  font-weight: 400;
}


.detail_watch_button {
  width: 100%;
  height: 50px;

  margin-top: 13px;

  border-radius: 10px;

  color: #fff;
  background:
    linear-gradient(
      100deg,
      #204eae 0%,
      #071c4d 100%
    );

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


.detail_watch_button:active {
  transform: scale(0.98);
}


.detail_watch_button.is_active {
  opacity: 0.75;
}


/* AI 분석 */

.detail_content_free {
  color: #fff;

  background: #09703c;
}


.analysis_content {
  padding: 20px 17px;
}


.analysis_date {
  display: flex;
  align-items: center;

  color: #333;

  font-size: 13px;
}


.analysis_clock {
  position: relative;

  width: 13px;
  height: 13px;

  margin-right: 8px;

  border: 1.5px solid #333;
  border-radius: 50%;
}


.analysis_clock::before {
  position: absolute;

  top: 2px;
  left: 5px;

  width: 1px;
  height: 4px;

  content: "";

  background: #333;
}


.analysis_clock::after {
  position: absolute;

  top: 6px;
  left: 5px;

  width: 3px;
  height: 1px;

  content: "";

  background: #333;

  transform: rotate(25deg);
  transform-origin: left center;
}


.analysis_list {
  margin-top: 13px;
}


.analysis_list li {
  position: relative;

  padding: 10px 0 10px 16px;

  border-bottom: 1px solid #e2e2e2;

  color: #666;

  font-size: 11px;
  line-height: 1.5;
}


.analysis_list li::before {
  position: absolute;

  top: 16px;
  left: 1px;

  width: 5px;
  height: 5px;

  content: "";

  border-radius: 50%;

  background: #5371af;
}


.analysis_notice {
  margin-top: 13px;
  padding: 13px;

  border: 1px solid #ddd;
  border-radius: 5px;

  color: #999;
  background: #f6f6f6;

  font-size: 11px;
  line-height: 1.5;
}


/* 하단 주의 문구 */

.detail_warning {
  display: flex;

  margin: 10px 25px 38px;
  padding: 12px 15px;

  border: 1px solid #dedede;
  border-radius: 8px;

  color: #6c2828;
  background: #f3f3f3;

  gap: 9px;
}


.detail_warning_icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 13px;
  height: 13px;

  margin-top: 1px;

  flex: 0 0 auto;

  border: 1px solid currentColor;
  border-radius: 50%;

  font-size: 9px;
  font-weight: 800;
}


.detail_warning p {
  font-size: 11px;
  line-height: 1.5;
}


/* 상세 페이지 하단 메뉴 */

.expert_detail_page .bottom_menu a.active {
  color: #13499d;
}


.expert_detail_page .bottom_menu a.active svg path {
  stroke: #13499d;
}


/* 작은 화면 */

@media (max-width: 360px) {

  .detail_header {
    padding-right: 20px;
    padding-left: 20px;
  }


  .expert_detail_hero {
    padding-right: 16px;
    padding-left: 16px;
  }


  .detail_intro_section,
  .detail_content_section {
    padding-right: 20px;
    padding-left: 20px;
  }


  .detail_warning {
    margin-right: 20px;
    margin-left: 20px;
  }


  .detail_keyword_list span {
    padding: 0 9px;

    font-size: 12px;
  }

}










