/* BASIC css start */
/* 타이틀 */

.page-header {
  background-color: #fff;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.page-header .page-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 49px;
}

.page-header .page-sub {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 24px;
}



/* 전체 그리드 */
.brand-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 20px;
}

/* 개별 아이템 */
.brand-item {
  position: relative;
  display: block;
  overflow: hidden;
}

/* 이미지 */
.brand-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border: 1px solid #eee;

}

/* 오버레이 */
.brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* 브랜드 텍스트 */
.brand-overlay span {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* hover 효과 */
.brand-item:hover img {
  transform: scale(1.05);
}

.brand-item:hover .brand-overlay {
  opacity: 1;
}

/* 모바일 */
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-overlay span {
    font-size: 22px;
  }
}

/* BASIC css end */

