#contents_page,
#contents_page * {
  box-sizing: border-box;
}

#contents_page {
  --contents-blue: #00aeef;
  --contents-blue-dark: #0098d1;
  --contents-text: #17191c;
  --contents-muted: #74787e;
  --contents-line: #e7e9eb;
  --contents-soft: #f7f8f9;

  min-width: 320px;
  color: var(--contents-text);
  background-color: #ffffff;
  font-family:
    나눔고딕,
    NanumGothic,
    "Nanum Gothic",
    맑은고딕,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

#contents_page a {
  color: inherit;
  text-decoration: none;
}

#contents_page a:hover,
#contents_page a:focus {
  text-decoration: none;
}

.contents_page_width {
  width: calc(100% - 48px);
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

/* 상단 소개 */

.contents_intro {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(67, 195, 242, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, #f0f8fc 0%, #e5f3fa 100%);
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
}

.contents_intro_inner {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.contents_intro_content {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 640px;
}

.contents_intro .contents_eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 14px;

  color: #1089b7;
  background-color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.contents_intro h1 {
  max-width: 640px;
  margin: 0;

  color: #1c2d38;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.contents_intro_description {
  max-width: 620px;
  margin: 22px 0 0;

  color: #586b75;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.contents_intro_visual {
  position: relative;
  z-index: 1;
  width: 34%;
  max-width: 330px;
  height: 260px;
  flex: 0 0 34%;
}

.contents_chat_bubble {
  position: absolute;
  border-radius: 28px;
}

.contents_chat_bubble::after {
  content: "";
  position: absolute;
  bottom: -17px;
  width: 0;
  height: 0;
  border-style: solid;
}

.contents_chat_bubble_primary {
  top: 46px;
  left: 10px;
  z-index: 3;

  display: flex;
  width: 188px;
  height: 122px;
  align-items: center;
  justify-content: center;
  gap: 13px;

  background: linear-gradient(135deg, #159fd3 0%, #43bce8 100%);
  box-shadow: 0 18px 36px rgba(16, 137, 183, 0.19);
}

.contents_chat_bubble_primary::after {
  left: 31px;
  border-width: 18px 22px 0 0;
  border-color: #159fd3 transparent transparent transparent;
}

.contents_chat_bubble_primary span {
  display: block;
  width: 13px;
  height: 13px;
  background-color: #ffffff;
  border-radius: 50%;
}

.contents_chat_bubble_secondary {
  top: 108px;
  left: 132px;
  z-index: 2;

  width: 160px;
  height: 102px;

  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(27, 143, 187, 0.05);
  box-shadow: 0 16px 36px rgba(52, 103, 124, 0.1);
}

.contents_chat_bubble_secondary::after {
  right: 24px;
  border-width: 18px 0 0 22px;
  border-color: #ffffff transparent transparent transparent;
}

.contents_intro_circle {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.contents_intro_circle.circle_1 {
  top: 22px;
  right: 23px;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(67, 195, 242, 0.22);
}

.contents_intro_circle.circle_2 {
  right: 12px;
  bottom: 22px;
  width: 36px;
  height: 36px;
  background-color: rgba(67, 195, 242, 0.24);
}

.contents_intro_circle.circle_3 {
  bottom: 50px;
  left: -8px;
  width: 22px;
  height: 22px;
  background-color: rgba(0, 174, 239, 0.86);
}

.contents_intro_dots {
  position: absolute;
  top: 78px;
  right: 0;

  display: grid;
  grid-template-columns: repeat(4, 4px);
  gap: 9px;
}

.contents_intro_dots span {
  display: block;
  width: 4px;
  height: 4px;
  background-color: rgba(0, 174, 239, 0.62);
  border-radius: 50%;
}

/* 목록 */

.contents_article_section {
  padding: 76px 0 110px;
}

.contents_category_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.contents_category_filter a {
  display: inline-flex;
  min-width: 64px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #74787e;
  background-color: #ffffff;
  border: 1px solid #dfe2e5;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease;
}

.contents_category_filter a:hover,
.contents_category_filter a:focus {
  color: #23262a;
  background-color: #f7f8f9;
  border-color: #d4d7da;
}

.contents_category_filter a:focus {
  outline: 2px solid rgba(0, 174, 239, 0.2);
  outline-offset: 2px;
}

.contents_category_filter a.active {
  color: #ffffff !important;
  background-color: var(--contents-blue);
  border-color: var(--contents-blue);
}

.contents_section_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.contents_section_header h2 {
  margin: 0;
  color: #1a1c1f;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.contents_section_header > span {
  color: #92969b;
  font-size: 12px;
}

.contents_section_header > span strong {
  color: var(--contents-blue-dark);
  font-weight: 700;
}

.contents_article_list {
  border-top: 1px solid #dfe1e3;
}

.contents_article_item {
  margin: 0;
  border-bottom: 1px solid #dfe1e3;
}

.contents_article_item > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 25px;
  align-items: center;
  min-height: 184px;
  padding: 32px 8px;
  transition: background-color 0.16s ease;
}

.contents_article_item > a:hover,
.contents_article_item > a:focus {
  background-color: #fafafa;
}

.contents_article_item > a:focus {
  outline: 2px solid rgba(0, 174, 239, 0.25);
  outline-offset: 3px;
}

.contents_article_content {
  min-width: 0;
}

.contents_article_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: #94989d;
  font-size: 11px;
  line-height: 1.4;
}

.contents_article_category {
  color: var(--contents-blue-dark);
  font-weight: 700;
}

.contents_meta_divider {
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: #bec1c4;
  border-radius: 50%;
}

.contents_article_content h2 {
  margin: 0;
  color: #1a1c1f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.045em;
  word-break: keep-all;
  transition: color 0.16s ease;
}

.contents_article_content p {
  max-width: 680px;
  margin: 11px 0 0;
  color: var(--contents-muted);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.contents_article_arrow {
  color: #a2a6ab;
  font-size: 17px;
  text-align: right;
  transition:
    color 0.16s ease,
    transform 0.16s ease;
}

.contents_article_item > a:hover .contents_article_content h2,
.contents_article_item > a:focus .contents_article_content h2,
.contents_article_item > a:hover .contents_article_arrow,
.contents_article_item > a:focus .contents_article_arrow {
  color: var(--contents-blue-dark);
}

.contents_article_item > a:hover .contents_article_arrow,
.contents_article_item > a:focus .contents_article_arrow {
  transform: translateX(4px);
}

.contents_empty {
  padding: 70px 20px;
  color: #92969b;
  border-top: 1px solid #dfe1e3;
  border-bottom: 1px solid #dfe1e3;
  text-align: center;
}

.contents_empty p {
  margin: 0;
  font-size: 13px;
}

/* 하단 CTA */

.contents_bottom_section {
  padding: 0 0 120px;
}

.contents_bottom_inner {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 52px;
  background-color: var(--contents-soft);
  border-radius: 12px;
}

.contents_bottom_label {
  margin: 0 0 13px;
  color: var(--contents-blue-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contents_bottom_inner h2 {
  margin: 0;
  color: #1a1c1f;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.contents_bottom_inner > div > p:last-child {
  margin: 12px 0 0;
  color: var(--contents-muted);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

.contents_start_button {
  display: inline-flex;
  min-width: 206px;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 21px;
  color: #ffffff !important;
  background-color: var(--contents-blue);
  border: 1px solid var(--contents-blue);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.contents_start_button:hover,
.contents_start_button:focus {
  color: #ffffff !important;
  background-color: var(--contents-blue-dark);
  border-color: var(--contents-blue-dark);
  transform: translateY(-1px);
}

.contents_start_button i {
  transition: transform 0.16s ease;
}

.contents_start_button:hover i,
.contents_start_button:focus i {
  transform: translateX(3px);
}

@media (max-width: 1024px) and (min-width: 721px) {
  .contents_intro {
    padding: 68px 0 64px;
  }

  .contents_intro_inner {
    min-height: 280px;
    gap: 34px;
  }

  .contents_intro_content {
    width: 62%;
  }

  .contents_intro h1 {
    font-size: 35px;
  }

  .contents_intro_visual {
    flex-basis: 32%;
    width: 32%;
    transform: scale(0.88);
    transform-origin: right center;
  }
}

@media (max-width: 720px) {
  .contents_page_width {
    width: calc(100% - 32px);
  }

  .contents_intro {
    padding: 49px 0 45px;
    background:
      radial-gradient(
        circle at 94% 18%,
        rgba(0, 174, 239, 0.09) 0,
        transparent 32%
      ),
      linear-gradient(135deg, #fbfdff 0%, #f1f9fd 100%);
  }

  .contents_intro_inner {
    display: block;
    min-height: 0;
  }

  .contents_intro_content {
    width: 100%;
    max-width: none;
  }

  .contents_intro .contents_eyebrow {
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .contents_intro h1 {
    max-width: none;
    font-size: 28px;
    line-height: 1.42;
  }

  .contents_intro_description {
    max-width: none;
    margin-top: 17px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
  }

  .contents_intro_visual {
    display: none;
  }

  .contents_article_section {
    padding: 58px 0 80px;
  }

  .contents_category_filter {
    flex-wrap: nowrap;
    gap: 7px;
    margin-right: -16px;
    margin-bottom: 32px;
    margin-left: -16px;
    padding: 0 16px 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contents_category_filter a {
    min-width: 62px;
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 13px;
    font-size: 11px;
  }

  .contents_section_header {
    margin-bottom: 18px;
  }

  .contents_section_header h2 {
    font-size: 20px;
  }

  .contents_article_item > a {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 15px;
    min-height: 0;
    padding: 27px 3px;
  }

  .contents_article_content h2 {
    font-size: 17px;
    line-height: 1.5;
  }

  .contents_article_content p {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.65;
  }

  .contents_article_arrow {
    font-size: 15px;
  }

  .contents_bottom_section {
    padding-bottom: 80px;
  }

  .contents_bottom_inner {
    display: block;
    min-height: 0;
    padding: 34px 26px;
  }

  .contents_bottom_inner h2 {
    font-size: 22px;
  }

  .contents_start_button {
    width: 100%;
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  .contents_article_meta {
    gap: 6px;
  }
}

/* -----------------------------------------
 * 가이드 상세 페이지
 * ----------------------------------------- */

#guide_detail_page,
#guide_detail_page * {
  box-sizing: border-box;
}

#guide_detail_page {
  --guide-blue: #00aeef;
  --guide-blue-dark: #0098d1;
  --guide-text: #17191c;
  --guide-muted: #74787e;
  --guide-line: #e7e9eb;
  --guide-soft: #f7f8f9;

  min-width: 320px;
  color: var(--guide-text);
  background-color: #ffffff;
  font-family:
    나눔고딕,
    NanumGothic,
    "Nanum Gothic",
    맑은고딕,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

#guide_detail_page a {
  color: inherit;
  text-decoration: none;
}

#guide_detail_page a:hover,
#guide_detail_page a:focus {
  text-decoration: none;
}

.guide_detail_width {
  width: calc(100% - 48px);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

/* Breadcrumb */

.guide_detail_breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  color: #92969b;
  font-size: 12px;
  line-height: 1.5;
}

.guide_detail_breadcrumb a {
  color: #72767b;
  transition: color 0.16s ease;
}

.guide_detail_breadcrumb a:hover,
.guide_detail_breadcrumb a:focus {
  color: var(--guide-blue-dark);
}

.guide_detail_breadcrumb i {
  color: #c2c5c8;
  font-size: 11px;
}

/* 본문 상단 */

.guide_detail_article {
  padding: 72px 0 110px;
}

.guide_detail_header {
  padding-bottom: 24px;
  border-bottom: 2px solid var(--guide-line);
}

.guide_detail_category {
  display: inline-block;
  margin-bottom: 19px;
  color: var(--guide-blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.guide_detail_header h1 {
  margin: 0;
  color: #15171a;
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.guide_detail_description {
  margin: 24px 0 0;
  color: var(--guide-muted);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.guide_detail_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 27px;
  color: #92969b;
  font-size: 11px;
  line-height: 1.5;
}

/* 본문 내용 */

.guide_detail_body {
  padding-top: 62px;
}

/* HTML 본문 */

.guide_detail_content {
  color: #4f545a;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: -0.018em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.guide_detail_content > *:first-child {
  margin-top: 0;
}

.guide_detail_content > *:last-child {
  margin-bottom: 0;
}

.guide_detail_content p {
  margin: 0 0 25px;
}

.guide_detail_content h2 {
  margin: 60px 0 21px;
  color: #1a1c1f;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.guide_detail_content h3 {
  margin: 42px 0 16px;
  color: #25282c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.guide_detail_content ul,
.guide_detail_content ol {
  margin: 8px 0 30px;
  padding-left: 25px;
}

.guide_detail_content li {
  margin: 0 0 9px;
  padding-left: 2px;
  line-height: 1.85;
}

.guide_detail_content li:last-child {
  margin-bottom: 0;
}

.guide_detail_content strong {
  color: #292d31;
  font-weight: 700;
}

.guide_detail_content blockquote {
  margin: 35px 0;
  padding: 21px 24px;
  color: #555b61;
  background-color: #f7f8f9;
  border: 0;
  border-left: 3px solid var(--guide-blue);
  font-size: 14px;
  line-height: 1.85;
}

.guide_detail_content blockquote p {
  margin: 0;
}

.guide_detail_content hr {
  margin: 52px 0;
  border: 0;
  border-top: 1px solid var(--guide-line);
}

.guide_detail_content a {
  color: var(--guide-blue-dark) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.guide_detail_content a:hover,
.guide_detail_content a:focus {
  color: #007eae !important;
}

/* 안전 안내 */

.guide_detail_notice {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 17px;
  margin-top: 72px;
  padding: 27px 29px;
  background-color: var(--guide-soft);
  border-radius: 10px;
}

.guide_detail_notice_icon {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--guide-blue-dark);
  background-color: #ffffff;
  border: 1px solid #e4e7e9;
  border-radius: 50%;
  font-size: 14px;
}

.guide_detail_notice strong {
  display: block;
  margin-bottom: 8px;
  color: #282c30;
  font-size: 14px;
  font-weight: 700;
}

.guide_detail_notice p {
  margin: 0;
  color: #686d73;
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

/* 하단 버튼 */

.guide_detail_navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 34px;
  border-top: 1px solid var(--guide-line);
}

.guide_back_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #676c71 !important;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.16s ease;
}

.guide_back_link i {
  transition: transform 0.16s ease;
}

.guide_back_link:hover,
.guide_back_link:focus {
  color: var(--guide-blue-dark) !important;
}

.guide_back_link:hover i,
.guide_back_link:focus i {
  transform: translateX(-3px);
}

.guide_detail_start_button {
  display: inline-flex;
  min-width: 194px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: #ffffff !important;
  background-color: var(--guide-blue);
  border: 1px solid var(--guide-blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.guide_detail_start_button:hover,
.guide_detail_start_button:focus {
  color: #ffffff !important;
  background-color: var(--guide-blue-dark);
  border-color: var(--guide-blue-dark);
  transform: translateY(-1px);
}

.guide_detail_start_button i {
  transition: transform 0.16s ease;
}

.guide_detail_start_button:hover i,
.guide_detail_start_button:focus i {
  transform: translateX(3px);
}

/* 관련 글 */

.guide_related_section {
  padding: 82px 0 110px;
  background-color: var(--guide-soft);
  border-top: 1px solid var(--guide-line);
}

.guide_related_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}

.guide_related_header > div > p {
  margin: 0 0 12px;
  color: var(--guide-blue-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.guide_related_header h2 {
  margin: 0;
  color: #1a1c1f;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.guide_related_header > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #777c81;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.16s ease;
}

.guide_related_header > a i {
  transition: transform 0.16s ease;
}

.guide_related_header > a:hover,
.guide_related_header > a:focus {
  color: var(--guide-blue-dark);
}

.guide_related_header > a:hover i,
.guide_related_header > a:focus i {
  transform: translateX(3px);
}

.guide_related_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dfe2e4;
}

.guide_related_item {
  min-width: 0;
  margin: 0;
  border-bottom: 1px solid #dfe2e4;
}

.guide_related_item + .guide_related_item {
  border-left: 1px solid #dfe2e4;
}

.guide_related_item > a {
  display: block;
  min-height: 275px;
  padding: 29px 24px;
  transition: background-color 0.16s ease;
}

.guide_related_item > a:hover,
.guide_related_item > a:focus {
  background-color: #ffffff;
}

.guide_related_category {
  display: block;
  margin-bottom: 15px;
  color: var(--guide-blue-dark);
  font-size: 11px;
  font-weight: 700;
}

.guide_related_item h3 {
  margin: 0;
  color: #202327;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.04em;
  word-break: keep-all;
  transition: color 0.16s ease;
}

.guide_related_item p {
  margin: 13px 0 0;
  color: #73787d;
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}

.guide_related_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 21px;
  color: #999da1;
  font-size: 10px;
}

.guide_related_item > a:hover h3,
.guide_related_item > a:focus h3 {
  color: var(--guide-blue-dark);
}

@media (max-width: 720px) {
  .guide_detail_width {
    width: calc(100% - 32px);
  }

  .guide_detail_article {
    padding: 51px 0 80px;
  }

  .guide_detail_breadcrumb {
    margin-bottom: 32px;
  }

  .guide_detail_header {
    padding-bottom: 15px;
  }

  .guide_detail_category {
    margin-bottom: 15px;
  }

  .guide_detail_header h1 {
    font-size: clamp(25px, 9.2vw, 34px);
    line-height: 1.32;
  }

  .guide_detail_description {
    margin-top: 19px;
    font-size: 14px;
    line-height: 1.75;
  }

  .guide_detail_meta {
    margin-top: 22px;
  }

  .guide_detail_body {
    padding-top: 47px;
  }

  .guide_detail_content {
    font-size: 14px;
    line-height: 1.85;
  }

  .guide_detail_content p {
    margin-bottom: 22px;
  }

  .guide_detail_content h2 {
    margin: 48px 0 17px;
    font-size: 20px;
  }

  .guide_detail_content h3 {
    margin: 35px 0 14px;
    font-size: 17px;
  }

  .guide_detail_content ul,
  .guide_detail_content ol {
    margin-bottom: 25px;
    padding-left: 21px;
  }

  .guide_detail_content blockquote {
    margin: 29px 0;
    padding: 18px 19px;
    font-size: 13px;
  }

  .guide_detail_content hr {
    margin: 42px 0;
  }

  .guide_detail_notice {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
    margin-top: 55px;
    padding: 23px 20px;
  }

  .guide_detail_notice_icon {
    width: 30px;
    height: 30px;
  }

  .guide_detail_navigation {
    display: block;
    margin-top: 44px;
    padding-top: 28px;
  }

  .guide_back_link {
    display: inline-flex;
  }

  .guide_detail_start_button {
    width: 100%;
    margin-top: 27px;
  }

  .guide_related_section {
    padding: 65px 0 75px;
  }

  .guide_related_header {
    align-items: center;
  }

  .guide_related_header h2 {
    font-size: 22px;
  }

  .guide_related_header > a {
    flex: 0 0 auto;
  }

  .guide_related_list {
    grid-template-columns: 1fr;
  }

  .guide_related_item + .guide_related_item {
    border-left: 0;
  }

  .guide_related_item > a {
    min-height: 0;
    padding: 27px 3px;
  }

  .guide_related_item h3 {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .guide_detail_breadcrumb {
    gap: 7px;
    font-size: 11px;
  }

  .guide_related_header > a span {
    display: none;
  }
}

.content-safety-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 38px;
  padding: 20px 22px;

  color: #555b62;
  background-color: #f7f8f9;
  border: 1px solid #e4e6e8;
  border-radius: 8px;
}

.content-safety-notice > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #00a0dc;
  font-size: 18px;
}

.content-safety-notice strong {
  display: block;
  margin-bottom: 7px;
  color: #25282c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.content-safety-notice p {
  margin: 0 !important;
  color: #6f7479;
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

@media (max-width: 720px) {
  .content-safety-notice {
    gap: 11px;
    margin-bottom: 30px;
    padding: 16px;
  }

  .content-safety-notice > i {
    font-size: 16px;
  }

  .content-safety-notice strong {
    font-size: 13px;
  }

  .content-safety-notice p {
    font-size: 12px;
    line-height: 1.7;
  }
}
