@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 20px 10px;
  background: #fff;
  overflow-x: hidden;
}

.banner-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.banner-wrapper a {
  display: block;
  width: 250px;
  height: 250px;
  text-align: center;
}

.banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: ;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .banner-wrapper {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .banner-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
