#content{margin-top: 200px;width: 80%; margin: 200px auto 100px;}

.post {
    display: block;
    border-radius: 8px; /* 모서리 둥글기 */
    padding: 15px;
    margin: 10px 0; /* 위아래 마진 */
    text-decoration: none; /* 링크 기본 스타일 제거 */
    color: #333; /* 글자 색상 */
    transition: transform 0.3s; /* 호버 효과 */
    width: 15%;

}

.post:hover {
    transform: scale(1.02); /* 호버 시 살짝 커지는 효과 */
}

.box_img01 {
    background-color: #ccc;
    width: 100%; /* a 태그의 부모 크기에 맞게 */
    height: 200px;
    border-radius: 5px;
    margin-bottom: 10px;

    /* 이미지 스타일 */
    background-size: cover; /* 이미지를 컨테이너에 맞게 채움 */
    background-repeat: no-repeat; /* 반복 방지 */
    background-position: center; /* 이미지를 정중앙 배치 */
}


.management-number {
    font-size: .8rem; /* 크게 표시 */
    margin: 5px 0; /* 위아래 마진 */
}

.maker_name{margin: 5px 0; font-weight: 600px; font-size: 1.1rem;}

.details {
    font-size: 0.8rem; /* 작게 표시 */
    margin: 5px 0; /* 위아래 마진 */
}

.price {
    font-size: 0.8em; /* 작게 표시 */
    color: #e74c3c; /* 가격 색상 */
    margin: 5px 0; /* 위아래 마진 */
}

.flex_box{display: flex; flex-wrap: wrap; justify-content: space-evenly;}

#searchInput {
    width: 100%; /* 너비 100% */
    max-width: 300px; /* 최대 너비 설정 */
    padding: 10px 15px; /* 패딩 추가 */
    border: 1px solid #ccc; /* 테두리 색상 */
    border-radius: 5px; /* 모서리 둥글기 */
    margin-bottom: 45px;
    margin-left: 50px;

}

.n_box {
    display: flex; /* 내부 요소를 가로 정렬 */
    justify-content: center; /* 자식 요소를 가로 중앙 정렬 */
    margin: 0 auto; /* 부모 컨테이너 기준 가로 중앙 정렬 */
    gap: 10px; /* 링크 사이 간격 */
    width: fit-content; /* 콘텐츠 크기에 맞게 너비 조정 */
}

.blink {
    font-weight: bold; /* 강조 */
    color: red; /* 강조 색상 */
    animation: blink-animation 1s infinite; /* 깜빡이는 효과 */
}


/*작품 준비중입니다*/
.construction-container {
    text-align: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin: 100px auto 150px;
  }
  
  .icon {
    font-size: 60px;
    color: #007bff;
    margin-bottom: 20px;
  }
  
  .message-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .message-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
  }

/* 일반 pc */
@media screen and (max-width:1280px) {
	
}

/* 테블릿 */
@media screen and (max-width:1024px) {
  
}

/* 소형 테블릿 */
@media screen and (max-width:768px) {


}
/* 모바일 */
@media screen and (max-width:640px) {
    
    
}

/* 최소 사이즈 처리 */
@media screen and (max-width:480px) {
     .flex_box {
    flex-direction: column;
    align-items: center;
  }

  .post {
    width: 90%;
    margin: 15px 0;
    padding: 10px;
  }

  .img_box01 {
    height: 200px;
  }

  .management-number {
    font-size: 1rem;
  }

  .details {
    font-size: 0.85rem;
  }

  #searchInput {
    max-width: 80%;
    margin-left: 0;
    font-size: .8rem;
  }

}
