main {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}
.pagination {
  margin-top: 60px;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 18px;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: 0.3s;
  color: #333;
}
.pagination .page-numbers:hover {
  background: #C9A227;
  color: #fff;
}
.pagination .page-numbers.current {
  background: #C9A227;
  color: #fff;
}

.single-post-page {
  padding: 180px 0 100px;
}

.single-post__inner {
  max-width: 900px;
  margin: 0 auto;
}

.entry-header {
  text-align: center;
  margin-bottom: 50px;
}

.post-date {
  color: #888;
  letter-spacing: 0.1em;
  margin-right: 15px;
}

.entry-title {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

.entry-thumbnail {
  margin-bottom: 60px;
}
.entry-thumbnail img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.entry-content {
  font-size: 17px;
  line-height: 2.2;
}
.entry-content p {
  margin-bottom: 2em;
}
.entry-content h2 {
  margin: 70px 0 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}
.entry-content h3 {
  margin: 45px 0 20px;
}
.entry-content img {
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

.single-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding-top: 50px;
  border-top: 1px solid #ddd;
}

.single-navigation__prev,
.single-navigation__next {
  width: 200px;
}

.single-navigation__next {
  text-align: right;
}

.single-navigation a {
  color: #C9A227;
  text-decoration: none;
  transition: 0.3s;
}

.single-navigation a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .single-post-page {
    padding: 120px 0 80px;
  }
  .entry-title {
    font-size: 16px;
  }
  .single-navigation {
    flex-direction: column;
    gap: 25px;
  }
  .single-navigation__prev,
  .single-navigation__next {
    width: 100%;
    text-align: center;
  }
}
.custom-button {
  width: 300px;
}

.performance-archive .post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
.performance-archive .post-item {
  list-style: none;
}
.performance-archive .post-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}
.performance-archive .post-link:hover {
  transform: translateY(-5px);
}
.performance-archive .post-thumbnail {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.performance-archive .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.5s;
}
.performance-archive .post-thumbnail .new-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #938AA9;
  color: #ffffff;
  font-size: 0.75em;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
  z-index: 2;
}
.performance-archive .post-link:hover img {
  transform: scale(1.08);
}
.performance-archive .post-info {
  padding: 20px;
}
.performance-archive .performance-date {
  font-size: 14px;
  color: #C9A227;
  margin-bottom: 8px;
}
.performance-archive .post-title {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.performance-archive .performance-place {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  text-align: center;
}
.performance-archive .new-badge {
  display: inline-block;
  margin-left: 8px;
  background: #938AA9;
  color: #fff;
  font-size: 0.65em;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

@media screen and (max-width: 900px) {
  .performance-archive .post-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .performance-archive .post-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.performance-single {
  margin: 60px auto;
}
.performance-single article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.performance-image {
  position: relative;
  margin-bottom: 40px;
}
.performance-image img {
  display: block;
  width: 100%;
  height: auto;
}
.performance-image .new-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.performance-info {
  padding: 40px;
  border-bottom: 1px solid #eee;
}

.performance-date {
  color: #C9A227;
  font-weight: bold;
  margin-bottom: 10px;
}

.performance-title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.performance-place {
  color: #666;
  margin-bottom: 0;
}

.entry-content {
  padding: 40px;
  line-height: 2;
  font-size: 16px;
}

.performance-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-top: 1px solid #eee;
}
.performance-navigation a {
  color: #C9A227;
  text-decoration: none;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .performance-single article {
    border-radius: 12px;
  }
  .performance-info {
    padding: 24px;
  }
  .entry-content {
    padding: 24px;
  }
  .performance-navigation {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}/*# sourceMappingURL=custom_pages.css.map */