@import url(./info_press.css);

.contents_g--wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-top: 1px solid var(--gray-200);
}
.contents_g {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 48px 40px;
  gap: 32px;
}
.contents_g__title--wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contents_g__title {
  font-family: "NanumSquare";
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: var(--gray-600);
}
.contents_g__description--wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  gap: 4px;
  background: var(--gray-50);
  border-radius: 16px;
}
.contents_g__description {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contents_g__description li {
  color: var(--gray-500);
  margin-left: 16px;
  line-height: 160%;
  list-style: outside;
}
.contents_g__board--wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.contents_g__board--title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.contents_g__board--title .feather-user-check {
  width: 24px;
  height: 24px;
  stroke-width: 3px;
  color: var(--brandgreen-500);
}
.contents_g__board--title h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: var(--gray-600);
}
.contents_g__board__body__row {
  gap: 8px;
}
.select-wrapper,
.selectbox {
  width: 100%;
  max-width: unset;
}
.contents_g__button--wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contents_g__button {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brandgreen-600);
}
/* .grid__header,
.grid__header__row {
  height: 100%;
} */

/* 테블릿 가로 (해상도 768px ~ 1023px)*/
@media all and (max-width: 1023px) {
}

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/
@media all and (max-width: 767px) {
  .contents_g {
    padding: 32px 20px;
  }
  .contents_g__board__body__row {
    flex-direction: column;
  }
}

/* 모바일 세로 (해상도 ~ 479px)*/
@media all and (max-width: 479px) {
}
