/* 가이드 메인 컨텐츠 스타일 */
@media (max-width: 1024px) {
  .main_content_section {
    display: flex;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 80px;
    min-height: 100vh;
  }

  .main_left_content_section {
    display: flex;
    flex-direction: column;

    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 60px;
  }

  .main_content_header {
    width: 100%;

    padding: 40px 28px;
  }

  .main_content_title_box {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* 헤더 부분 레이블 */
  .main_content_label {
    font-size: 16px;
    letter-spacing: -0.48px;
  }

  /* 헤더 부분 제목 */
  .main_content_title {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .copy_icon {
    cursor: pointer;
  }

  /* 본문 부분 */
  .main_content_body_wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px 80px 20px;
    box-sizing: border-box;
    border-bottom: none;
  }

  .main_content_body {
    flex: 1 1 0;
    min-width: 0;
    color: #434d62;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75; /* 175% */
    letter-spacing: -0.48px;
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    width: 100%;
  }

  /* 본문에서 제목 관련 스타일 */

  /* 제목1 */
  .main_content_body h1 {
    color: #313743;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.84px;
  }
  /* 제목2 */
  .main_content_body h2 {
    color: #313743;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.72px;
  }

  /* 제목3 */
  .main_content_body h3 {
    color: #313743;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
  }
  /* 본문1 */
  .main_text_1 {
    color: #434d62;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5; /* 100% */
    letter-spacing: -0.54px;
  }
  /* 본문2 */
  .main_text_2 {
    color: #434d62;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65; /* 165% */
    letter-spacing: -0.48px;
  }
  /* 본문3 */
  .main_text_3 {
    color: #434d62;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4; /* 100% */
    letter-spacing: -0.42px;
  }
  /* 설명1 */
  .main_text_small_1 {
    color: #75777d;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4; /* 100% */
    letter-spacing: -0.39px;
  }
  /* 설명2 */
  .main_text_small_2 {
    color: #75777d;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px; /* 100% */
    letter-spacing: -0.36px;
  }
  /* 모바일 환경에서는 이전글다음글 버튼 안보임 */
  .main_content_nav {
    display: none;
  }
}

/* ✅ 모바일 공통 — 0~739px */
@media (max-width: 739px) {
}

/* ✅ 태블릿 세로(portrait) 전용 — 740~1100px */
@media (min-width: 740px) and (max-width: 1100px) and (orientation: portrait) {
}
/* ✅ 태블릿 가로(landscape) 전용 — 740~1100px */
@media (min-width: 740px) and (max-width: 1366px) and (orientation: landscape) {
}
