@font-face {
  font-family: 'TAN Meringue';
  src: url('fonts/TAN MERINGUE.ttf') format('truetype');
}
.header-decor {
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
  position: relative;
}

.header-decor hr {
  border: none;
  border-top: 3px solid #883b54;
  margin: 10px auto;
  width: 95%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 5px;
}

.tortoise-wrapper {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  margin-left: 25px;
}

.tortoise-icon {
  width: 200px;
  height: auto;
}
.info-line {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
  color: #883b54;
  font-weight: 500;
}

.volume-label {
  width: 80px;
  text-align: left;
}

.date-line {
  flex: 1;
  text-align: center;
}

.right-placeholder {
  width: 80px; 
  text-align: right;
  visibility: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: #F7D6E0;
  color: #4e2c34;
  font-family: 'Darker Grotesque', sans-serif;
}

.volume-header {
  text-align: center;
  padding: 30px 20px 10px;
}

.brand-title {
  font-family: 'TAN Meringue', serif;
  font-size: 56px;
  color: #772C41;
  margin-bottom: 10px;
}

.volume-title {
  font-size: 40px;
  font-weight: 500;
  color: #772C41;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.article-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.article-box {
  background-color: #C26F83;
  border: 2px solid #772C41;
  border-radius: 12px;
  padding: 20px;
  width: 500px;
  box-sizing: border-box;
}

.article-box h3 {
  font-size: 20px;
  color: #fceef2;
  margin-bottom: 12px;
  font-weight: 600;
}

.article-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #f5e9e7;
}

.comic-section {
  padding: 40px 0;
  text-align: center;
}
.comic-caption {
  font-size: 30px;
  color: #772C41;
  margin-bottom: 20px;
}
.comic-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.comic-frame {
  flex: 0 1 calc(45% - 20px); 
  max-width: 45%;
  width: 100%;
  height: auto;
  border: 3px solid #772C41;
  border-radius: 10px;
}

.footer-message {
  text-align: center;
  padding: 40px 20px 60px;
  font-size: 16px;
  color: #772C41;
  font-weight: 500;
  line-height: 1.6;
}
.puzzle-section {
  text-align: center;
  background-color: #f8dfe5;
  margin: 50px auto 60px;
  padding: 30px 20px;
  border-top: 3px dashed #772C41;
  border-bottom: 3px dashed #772C41;
  max-width: 900px;
  border-radius: 12px;
}

.puzzle-title {
  font-size: 26px;
  color: #772C41;
  margin-bottom: 15px;
}

.puzzle-clue {
  font-size: 18px;
  color: #4e2c34;
  margin-bottom: 20px;
  line-height: 1.6;
}

.puzzle-answer {
  font-size: 16px;
  color: #883b54;
  transform: rotate(180deg);
  display: inline-block;
  font-family: monospace;
  letter-spacing: 1px;
}

@media (max-width: 1000px) {
  .article-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .article-box {
    width: 100%;
    max-width: 600px;
  }

  .brand-title {
    font-size: 44px;
  }

  .volume-title {
    font-size: 20px;
  }
  .comic-frame {
    flex: 0 1 100%;
    max-width: 90%;
  }
  /* .tortoise-icon {
    width: 120px;
  } */
  .tortoise-wrapper {
    display: none;
  }
}
