/**
 * Contact 페이지 스타일
 *
 * 연구실 연락처 정보 및 추천 수강 과목 안내 페이지의 스타일
 * - .contact-container: 페이지 메인 컨테이너
 * - .contact-intro: 상단 소개 문구
 * - .contact-section: 각 섹션 (연락처, 과목)
 * - .contact-item: 연락처 항목 (아이콘 + 텍스트)
 * - .course-list: 과목 목록
 */

/* ==================== Contact 컨테이너 ==================== */
.contact-container {
  display: flex;
  flex-direction: column;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 40px auto;
  margin-top: 50px;

  & .contact-intro {
    margin: 0;
    margin-bottom: 10px;
    margin-top: 50px;
    padding: 0;
    text-align: center;
    font-family: "Caveat", cursive;
    font-size: 38px;
    color: var(--bg-nav-primary);
  }

  & .contact-section {
    margin-top: 30px;

    & .section-title {
      margin: 0;
      margin-bottom: 10px;
      font-size: 25px;
      font-weight: 600;
      color: #333;
    }

    & .contact-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin: 5px 0;

      & img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        flex-shrink: 0;
      }

      & p {
        font-size: 15px;
        margin: 0;
        margin-bottom: 5px;
        line-height: 1.6;
      }
    }

    & .course-list {
      list-style: none;
      padding: 0;
      margin: 0;

      & li {
        font-size: 15px;
        margin: 0;
        margin-bottom: 5px;
        padding-left: 20px;
        position: relative;

        &::before {
          content: "•";
          position: absolute;
          left: 5px;
          color: var(--bg-nav-primary);
          font-weight: bold;
        }
      }
    }
  }
}

/* ==================== 반응형: 모바일 (760px 이하) ==================== */
@media screen and (max-width: 760px) {
  .contact-container {
    width: 90%;
    margin-top: 30px;

    & .contact-intro {
      font-size: 28px;
      margin-top: 30px;
    }

    & .contact-section {
      & .section-title {
        font-size: 20px;
      }

      & .contact-item {
        & p {
          font-size: 14px;
        }
      }

      & .course-list {
        & li {
          font-size: 14px;
        }
      }
    }
  }
}
