/* 헤더 및 메인 페이지 */
@media screen and (max-width: 768px) {
  body {
    padding: 0;
  }
  #header {
    align-items: center;
    height: 72px;
    padding: 2rem;
  }
  .logo {
    width: 96px;
    height: 30px;
  }
  .app-download {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .mobile-menu.active ~ .logo,
  .mobile-menu.active ~ .app-download {
    display: none;
  }
  .desktop-nav {
    display: none;
  }

  #main {
    gap: 72px;
    padding: 0 48px;
  }
  #main > section,
  #main > footer {
    height: calc(100dvh - 72px);
    padding: 5rem 0;
  }
  #main > section h2 {
    margin-bottom: 3rem;
    font-size: 48px;
  }
  #main > section p {
    margin-bottom: 1rem;
    font-size: 20px;
  }
  #main > section > span {
    font-size: 14px;
  }
  #main > section .image {
    bottom: 5rem;
    max-width: 360px;
    max-height: 432px;
    width: 58.1vw;
    height: 68.1vw;
  }

  .download {
    display: none;
  }

  .section2-image-slide {
    bottom: 5rem;
  }

  .slide-images {
    bottom: 5rem;
    max-width: 360px;
    max-height: 432px;
  }

  .section-indicators {
    right: 3%;
  }

  .threads img {
    width: 64px;
    height: 64px;
  }
  .threads p {
    font-size: 20px;
  }
  .company > address {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .company > address p {
    margin-bottom: 0;
  }
  .company hr {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  #main {
    padding: 0 24px;
  }
  #main > section h2 {
    margin-bottom: 2rem;
    font-size: 28px;
  }
  #main > section p {
    margin-bottom: 1rem;
    font-size: 16px;
  }
  #main > section > span {
    margin-top: 4px;
  }
  #main > section .image {
    max-width: 240px;
    max-height: 290px;
    width: 93.3vw;
    height: 103.3vw;
  }
  .slide-images {
    min-width: 240px;
    min-height: 290px;
  }
  .section-indicators {
    right: 24px;
    gap: 2rem;
    padding: 6px;
    border-radius: 12px;
  }
  .indicator {
    width: 9px;
    height: 9px;
  }
  .indicator.active {
    filter: blur(2.25px);
  }
}

@media screen and (max-height: 800px) {
  #main > section {
    height: calc(100dvh - 120px);
    padding: 5rem 0;
  }
  #main > section .image {
    bottom: 5rem;
    max-width: 360px;
    max-height: 432px;
    width: 58.1vw;
    height: 68.1vw;
  }

  .slide-images {
    bottom: 5rem;
    max-width: 360px;
    max-height: 432px;
  }
}

@media screen and (max-height: 650px) {
  #main > section .image {
    max-width: 240px;
    max-height: 290px;
    width: 93.3vw;
    height: 103.3vw;
  }
  .slide-images {
    min-width: 240px;
    min-height: 290px;
  }
}

@media screen and (max-height: 800px) and (max-width: 768px) {
  #main > section {
    height: calc(100dvh - 72px);
  }
}

/* faq 페이지 */
@media screen and (max-width: 768px) {
  #faq-main {
    gap: 2rem;
    height: calc(100dvh - 72px);
    padding: 0;
    padding-top: 1rem;
  }
  #faq-main h2 {
    font-size: 24px;
  }
  .faq-list {
    gap: 0;
    padding-bottom: 0;
  }
  .faq-item {
    border-radius: 0;
    background-color: var(--mono-200);
  }
  .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid var(--mono-300);
  }
  .faq-item .faq-label {
    padding: 0;
    font-size: 16px;
  }
  .faq-item .faq-label::before {
    content: none;
  }
  .faq-item .faq-label::after {
    background: url("../assets/icons/mini_arrow.svg") no-repeat center;
  }
  .faq-content {
    background-color: var(--mono-100);
  }

  .faq-content p {
    padding: 0 20px;
  }
  .faq-checkbox:checked + .faq-question + .faq-content p {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
