@charset "utf-8";

/* ===== 협력업체 최신글 ===== */
.partners-latest-wrap {
  width: 100%;
  text-align: center;
  margin: 60px auto;
  padding: 20px 0;
}

.partners-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  display: inline-block;
  border-bottom: 3px solid #ff5757;
  padding-bottom: 6px;
}

/* 리스트 flex 정렬 */
.partners-list {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 25px !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 아이템 박스 */
.partner-item {
  flex: 0 1 calc(20% - 25px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.partner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* 이미지 영역 */
.partner-img-wrap {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  overflow: hidden;
}

.partner-img-wrap img {
  width: 80%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
}

/* 제목 */
.partner-title {
  font-size: 15px;
  color: #333;
  margin: 12px 0 15px;
  font-weight: 500;
}

/* 빈 게시물 */
.empty_list {
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 15px;
  padding: 40px 0;
}

/* 반응형 */
@media (max-width: 1200px) {
  .partner-item { flex: 0 1 calc(25% - 25px); }
}
@media (max-width: 992px) {
  .partner-item { flex: 0 1 calc(33.333% - 25px); }
}
@media (max-width: 768px) {
  .partner-item { flex: 0 1 calc(50% - 25px); }
}
@media (max-width: 480px) {
  .partner-item { flex: 0 1 100%; }
}
