/* ===== Linkwheel Carousel (메인) ===== */
.linkwheel-carousel{
  margin: 40px auto;
  max-width: 1200px;
}
.linkwheel-carousel .item{
  text-align: center;
  padding: 5px 1px;
}
.linkwheel-carousel .item img{
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: inline-block;
}

/* Owl dots */
.owl-dots{
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.owl-dot span{
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #999 !important;
  display: block;
  border-radius: 50%;
  transition: all 0.3s;
}
.owl-dot.active span{
  background: #000 !important;
  transform: scale(1.2);
}

/* ===== Footer links (서브) ===== */
.linkwheel-footer{
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 16px;
  border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}
.linkwheel-footer .lw-head{
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin: 0 0 10px;
}
.linkwheel-footer .lw-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  line-height: 1.5;
}
.linkwheel-footer .lw-list a{
  color: #777;
  text-decoration: none;
}
.linkwheel-footer .lw-list a:hover{
  color: #111;
  text-decoration: underline;
}
