/* 이웃 사랑 페이지 */

/* @font-face {
  font-family: "Pretendard-Regular";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
    format("woff");
  font-weight: 100;
  font-style: normal;
} */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

#neighbor {
  background-color: #bbedfa;
  color: #3c3c3c;
  padding: 0 3%;
  font-size: 24px;
  font-family: "Pretendard";

  /* 드래그방지 */
  user-select: none; /* 텍스트 선택 방지 */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  cursor: default; /* 커서 변경 */
}

/* 타이틀과 캐릭터 이미지 */
#neighbor .neighbor_header {
  padding-top: 30px;
  width: 95%;
  margin: auto;
}

#neighbor .neighbor_header .neighbor_date {
  font-size: 0.9em;
  position: absolute;
  top: 50px;
}

/* ul */
#neighbor .neighbor_container {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding-bottom: 3em;
}

/* list - 동 카드 */
#neighbor .neighbor_card {
  background-color: white;
  border-radius: 1.3em;
  overflow: hidden;
  padding: 0 3%;
  padding-bottom: 2.5em;
  /* font-family: "Pretendard-Regular"; */
  font-family: "Pretendard";
}

#neighbor .card_title {
  background-image: url("../img/common/neighbor/card_header.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 98%;
  padding: 1em 0;
}
#neighbor .card_title h2 {
  font-family: "NanumSquareRound";
  color: #3c3c3c;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.1em;
  font-size: 1.9em;
}

/* 기사 */
#neighbor .card_content {
  margin-top: 2.7em;
  color: #3c3c3c;
  font-family: "Pretendard";
  font-weight: 300;
}
/* 첫 번째 기사 */
#neighbor .neighbor_card :nth-of-type(2) {
  margin-top: 0;
}

#neighbor .card_img img {
  width: 100%;
  height: auto;
}

/* 기사 글 */
#neighbor .card_detail {
  margin-top: 0.7em;
  font-size: 1.92em;
  line-height: 1.8;
  width: 100%;
  text-align: justify;
  word-break: normal;
  letter-spacing: -0.093em;
}
/* 기사 제목 */
#neighbor .card_detail strong {
  font-weight: 600;
}

/* 단락 구분 */
#neighbor .card_detail .space {
  display: block;
  width: 100%;
  height: 0.8em;
}

.neighbor_footer {
  width: 100%;

  margin-bottom: 5em;
}

/* Tablet */
@media all and (max-width: 900px) {
  #neighbor {
    font-size: 20px;
  }

  #neighbor .card_title {
    padding: 1.7em 0;
  }
  /* 타이틀과 캐릭터 이미지 */
  #neighbor .neighbor_header {
    padding-top: 20px;
  }
  #neighbor .neighbor_header .neighbor_date {
    top: 35px;
  }
}

/* Mobile */
@media all and (max-width: 460px) {
  #neighbor {
    font-size: 10px;
  }
  /* 타이틀과 캐릭터 이미지 */
  #neighbor .neighbor_header {
    padding-top: 10px;
  }
  #neighbor .neighbor_header .neighbor_date {
    top: 18px;
  }
  #neighbor .card_detail {
    line-height: 1.6;
  }
  #neighbor .card_title h2 {
    font-size: 2.1em;
  }
}
