.downloadBtnContainer {
  display: flex;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .downloadBtnContainer {
    flex-direction: column;
    align-items: center;
  }

  .main-TitleLayout {
    width: unset;
    padding-bottom: unset;
    border-bottom: unset;
  }
}

.download_Content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
  margin-top: 20px;
}

.downloadBtn {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  display: inline-block;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

.downloadBtnContainer button iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  cursor: pointer;
}

.downloadTitle {
  color: #1b1b1b;
  text-align: center;
  font-family: "Spoqa Han Sans Neo";
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.downloadMockup {
  width: 50%;
}
.downloadBtn_Layout {
  display: flex;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .downloadTitle {
    font-size: 1.6rem;
  }

  .download_Content {
    padding: 20px;
  }

  .downloadMockup {
    aspect-ratio: 4 / 3; /* 원하는 비율 설정 */
    width: 80%;
    height: auto;
    object-fit: contain; /* or cover */
  }
}
