
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1080px;
}

img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}




.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  list-style: none;
  margin: 0;
  justify-items: center;
  align-items: start;
  background: #111; /* 배경 */
}

.video-list li {
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 3px solid orange;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
}

.video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  
}


.floating-icons {
  position: fixed;
  bottom: 170px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 0;
  border-radius: 50px;
  background: transparent;
}

.floating-icons li {
  list-style: none;
}

.floating-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.floating-icons a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;

}

@media (max-width: 768px) {
  .floating-icons {
    bottom: 55px;
    right: 16px;
    gap: 10px;
  }

  .floating-icons a {
    width: 48px;
    height: 48px;
  }

  .floating-icons img {
    width: 24px;
    height: 24px;
  }
}


.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px;
  height: 400px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info,
.footer-meta {
  flex: 1 1 300px;
}

.site-footer h2 {
  font-size: 1.5rem;
  color: #ff7a00;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 6px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer a {
  color: #ffb366;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

    .footer-info,
    .footer-meta {
    flex: 1 1 100px;
    }

    .site-footer {

    height: 400px;
    }
}


.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.img-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.img-list > li {
  width: 450px;

}