/* 전체 영역 */

/*
.wrapcontent {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.wrapcontent ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 20px; }
.wrapcontent li { width: 200px; border: 1px solid #eee; padding: 10px; text-align: center; }
.wrapcontent img { width: 100%; height: auto; display: block; margin-top: 10px; }
.wrapcontent a { text-decoration: none; color: #333; font-weight: bold; }
*/



/* 전체 영역 */
.wrapcontent {
  width: 100%;
  max-width: 1240px;
  margin: 60px auto 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* 섹션 타이틀 */
.brand-title {
  position: static;
  width: auto;
  height: auto;
  margin-bottom: 30px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
}

/* 리스트 */
.brand_list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 300px));
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 아이템 */
.brand_list .item {
  width: 100%;
}

/* 링크 */
.brand_list .item a {
  display: block;
  text-decoration: none;
  color: #111;
}

/* 썸네일 */
.brand_list .thumbnail {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* 이미지 – 가로 300px 기준, 세로 auto */
.brand_list .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* 타이틀 */
.brand_list .title {
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* 태블릿 – 3개 */
@media (max-width: 1024px) {
  .brand_list ul {
    grid-template-columns: repeat(3, minmax(0, 300px));
  }

  .brand-title {
    font-size: 22px;
  }
}

/* 모바일 – 2개 */
@media (max-width: 768px) {
  .brand_list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .brand-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .brand_list .title {
    font-size: 14px;
  }
}
