@charset "UTF-8";

.wallpaper-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
  margin-top: 2rem;
}

.wallpaper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%;
}

.wallpaper-title {
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.p-news__body .wallpaper-item img {
  width: 100%;
  height: auto;
  margin: 0 0 2rem 0;
  object-fit: contain;
  border: 1px solid #eee;
}

.download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.5rem;
  background-color: var(--base-color, #00a0e9);
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4rem;
  margin-top: auto;
  transition: opacity 0.3s;
}

.download-btn:hover {
  opacity: 0.7;
}


@media (max-width: 768px) {
  .wallpaper-container {
    gap: 3vw;
  }

  .wallpaper-title {
    font-size: 3.2vw;
    margin-bottom: 2vw;
  }

  .p-news__body .wallpaper-item img {
    margin: 0 0 3vw 0;
  }

  .download-btn {
    width: 95%;
    padding: 3vw;
    font-size: 3.5vw;
    border-radius: 8vw;
  }
}