/*
   Blog
*/
.blog {
  padding-top: 3rem;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -2px;
  line-height: 3rem;
}

.blog h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #898989;
  line-height: 3rem;
}

.blog strong {
  color: rgba(66, 155, 7, 1);
}

.blog strong.plus {
  color: #fff600 !important;
}

.blog img {
  width: 50px;
  height: auto;
  margin: 0.7rem 0;
  padding-left: 5px;
  padding-right: 10px;
}

.list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
  max-width: 1024px;
  margin: 5rem auto;
}

.list .item {
  flex-basis: calc(33% - 20px);
  aspect-ratio: 422 / 334;
  /* 422:334 비율 유지 */
  height: auto;
  background-color: #262727;
  border: 1px solid #898989;
  border-radius: 10px;
}

.inner-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  width: 100%;
  height: 100%;
}

.inner-container h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7rem;
  text-align: center;
}

.inner-container button {
  margin-top: 1rem;
  padding: 3px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background-color: #898989;
  color: white;
  border-radius: 5px;
}

.inner-container .close-button {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 24px;
  height: 24px;
  padding: unset;
  background: transparent;
  border: none;
  cursor: pointer;
}

.inner-container .close-button img {
  width: 24px;
  height: 24px;
}

.inner-container h3 {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #898989;
  text-align: center;
}

.input-container {
  display: flex;
  width: 80%;
  margin-top: 1rem;
  background-color: white;
  border-radius: 12px;
}

.inner-container-plus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.inner-container-plus h4 {
  margin-top: 2rem;
  font-size: 1rem;
  color: #909090;
}

.input-field {
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  color: #6b7280;
  border: none;
  outline: none;
  border-radius: 12px 0 0 12px;
  box-sizing: border-box;
  text-align: center;
}

.status-box {
  width: 9rem;
  height: 100%;
  display: flex;
  align-items: center;
  /* 세로 가운데 정렬 */
  justify-content: center;
  /* 가로 가운데 정렬 */
  background-color: #429b07;
  /* Tailwind의 bg-mainColor 대체 (bg-greenColor로 변환) */
  color: white;
  border-radius: 0 12px 12px 0;
  /* 우측 모서리만 둥글게 */
  white-space: nowrap;
  /* 텍스트가 줄바꿈되지 않도록 */
  font-weight: bold;
  /* 글자 굵게 */
}

.status-inspection {
  background-color: #000000 !important;
}

.status-inspection-complete {
  background-color: #429b07 !important;
}

.status-reject {
  background-color: #9b1107 !important;
  cursor: pointer;
}

.status-pointer {
  cursor: pointer;
}

.status-box h1 {
  font-size: 1rem;
  line-height: unset;
}

.select {
  width: 80%;
  margin: 0 auto;
}

.select>h3 {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  line-height: 3rem;
}

.select .inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 1024px;
}

.select .inner .box {
  position: relative;
  width: 50%;
  padding: 40px;
  background: #1a1b1b;
  border: 1px solid #898989;
  cursor: pointer;
}

.box>h1 {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  text-align: left;
  font-weight: 500;
  margin-bottom: 2rem;
}

.box .fixed-img {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 80px;
  height: auto;
}

.box>.desc {
  display: flex;
  align-items: center;
  /* 세로 중앙 정렬 */
  gap: 10px;
  margin-bottom: 1.5rem;
  color: white;
}

.box>.desc img {
  width: 20px;
  /* 이미지 크기 조정 */
  height: auto;
}

.box>.desc p {
  margin: 0;
  font-size: 1.3rem;
}

.box>.desc p span {
  color: #429b07;
}

.box>.desc p span.yellow {
  color: #fff600 !important;
}

.select .box-wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  margin: 30px auto 0 auto;
  padding: 40px;
  background: #1a1b1b;
  border: 1px solid #898989;
  cursor: pointer;
}

.box-wide .left {
  flex: 1;
}

.box-wide .left h1 {
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
  margin: 0;
}

.box-wide .right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box-wide .right .desc {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.box-wide .right .desc img {
  width: 20px;
  height: auto;
}

.box-wide .right .desc p {
  margin: 0;
  font-size: 1.3rem;
}

.box-wide .right .desc p span {
  color: #429b07;
}

.box-wide .right .desc p span.green {
  color: #429b07;
  /* 이미지 상의 더 밝은 초록색인 경우 조정 가능 */
}

.select .desc-inner {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 20px 40px;
  background: #151515;
  border: 1px solid #333;
}

.select .desc-inner p {
  color: #898989;
  font-size: 1rem;
  margin: 5px 0;
}

/*  mobile  */
@media (min-width: 320px) and (max-width: 675px) {
  .blog {
    padding: 3rem 1rem 0 1rem;
    font-size: 1.5rem;
    letter-spacing: -1px;
    line-height: 2.5rem;
  }

  .blog h3 {
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .list {
    flex-direction: column;
    align-items: center;
  }

  .list .item {
    width: 90%;
    flex-basis: unset;
    aspect-ratio: 5 / 4;
    height: auto;
  }

  .select .inner {
    display: flex;
    flex-direction: column;
  }

  .select .inner .box {
    position: relative;
    width: 100%;
    padding: 25px;
  }

  .box>h1 {
    font-size: 1.6rem;
    font-weight: 500;
    color: white;
    text-align: left;
    font-weight: 500;
    margin-top: 3rem;
  }

  .box>.desc img {
    width: 15px;
    /* 이미지 크기 조정 */
    height: auto;
  }

  .box>.desc p {
    margin: 0;
    font-size: 1rem;
  }

  .select .box-wide {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 20px;
  }

  .box-wide .left h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .box-wide .right {
    width: 100%;
  }

  .box-wide .right .desc p {
    font-size: 1rem;
  }

  .select .desc-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem auto;
    background: #151515;
    border: 1px solid #333;
    padding: 20px;
  }

  .select .desc-inner p {
    color: #898989;
    font-size: 0.85rem;
    text-align: center;
  }
}