@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&family=Zen+Kaku+Gothic+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=picture_as_pdf,read_more");
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.main-content {
  min-height: 60vh;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .main-content {
    padding: 1rem 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

body {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-family: "Zen Antique", serif;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  font-family: "Zen Antique", serif;
}
h2 span {
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  color: #C19B02;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

header #site-navigation.main-navigation {
  display: block;
}
@media (max-width: 768px) {
  header #site-navigation.main-navigation {
    display: none;
  }
}
header nav {
  border-width: 1px 0 1px;
  border-style: solid;
  border-color: #C19B02;
  padding: 2rem 1.5rem;
}
header nav ul {
  display: flex;
  gap: 5rem;
  justify-content: center;
}
@media (max-width: 768px) {
  header nav ul {
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
  }
}
header nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
header nav ul li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(231.55deg, #E7C943 15.75%, #F3D439 42.68%, #C46F1A 112.32%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 50%;
}
header nav ul li a {
  font-family: "Zen Antique", serif;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header nav ul li a span {
  color: #C19B02;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
}
header .header-default .header-content .site-branding hgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
header .header-default .header-content .site-branding hgroup .site-title {
  margin: 1.5rem 0;
}
header .header-default .header-content .site-branding hgroup .site-title img {
  width: 160px;
}
header .header-default .header-content .site-branding hgroup .site-description {
  order: -1;
  background-color: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
  width: 100vw;
  margin-bottom: 0;
  margin-inline: calc(50% - 50cqi);
  font-weight: 600;
}
@media (max-width: 768px) {
  header .header-default .header-content .site-branding hgroup .site-description {
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #333;
  }
}
header .mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  header .mobile-menu {
    display: block;
  }
}

.entry-content h3 {
  margin-top: 2.5rem;
}
.entry-content a {
  display: inline-block;
  border-bottom: 1px solid #C19B02;
  padding-bottom: 0.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.breadcrumb {
  margin-bottom: 2rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
  justify-content: flex-end;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #ccc;
}
.breadcrumb a {
  color: #C19B02;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header {
  margin-bottom: 3rem;
  text-align: center;
}
.page-header .page-title {
  margin-bottom: 1rem;
}
.page-header .page-description {
  color: #666;
  font-size: 1.125rem;
}

.site-footer {
  margin-top: 5rem;
}
.site-footer .footer-content {
  padding: 0 7.5rem;
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 2.5rem;
  }
}
.site-footer .footer-content .footer-sns a {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-width: 1px 0 1px;
  border-style: solid;
  border-color: #333;
}
.site-footer .footer-content .footer-sns p {
  margin-bottom: 0;
}
.site-footer .footer-bottom {
  background-color: #000;
  color: #fff;
  padding: 2.5rem 7.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    font-size: 0.75rem;
  }
}
.site-footer .footer-bottom .footer-nav ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-nav ul {
    flex-wrap: wrap;
    gap: 0.25rem 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-nav ul li {
    width: calc(50% - 0.5rem);
  }
}

.category-filter {
  margin-bottom: 3rem;
}
.category-filter h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.category-filter .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.category-filter .filter-item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.category-filter .filter-item a:hover, .category-filter .filter-item a.active {
  background-color: #007cba;
  color: white;
}
.category-filter .filter-item .count {
  font-size: 0.875rem;
  opacity: 0.7;
}

body.home .header-front {
  height: 55vh;
  display: flex;
  align-items: center;
}
body.home .header-front .header-content.container {
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 640px) {
  body.home .header-front .header-content.container {
    padding-left: 1rem;
    padding-right: 0.75rem;
  }
}
body.home .header-front .site-title img {
  width: 560px;
}
@media (max-width: 768px) {
  body.home .header-front .site-title img {
    width: 240px;
  }
}
body.home .header-front p.site-description {
  font-family: "Zen Antique", serif;
  font-size: 1.25rem;
  text-align: center;
  display: inline-block;
  align-self: flex-end;
}
@media (max-width: 768px) {
  body.home .header-front p.site-description {
    font-size: 0.875rem;
    text-align: right;
  }
}
body.home .header-front p.site-description .br-sp {
  display: none;
}
@media (max-width: 768px) {
  body.home .header-front p.site-description .br-sp {
    display: block;
  }
}
body.home .header-front p.site-description span {
  color: #C19B02;
}
body.home section {
  margin-bottom: 10rem;
}
body.home section h2 {
  text-align: center;
  margin-bottom: 2.25rem;
}
@media (max-width: 768px) {
  body.home section h2:first-child {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  body.home section h2 span {
    display: block;
  }
}
body.home .front-news {
  background-color: #F7F5F0;
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  padding: 2.5rem 15rem 3.5rem;
}
@media (max-width: 768px) {
  body.home .front-news {
    padding: 2.5rem 1.5rem 3.5rem;
  }
}
body.home .front-news .news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
body.home .front-news .news-list .news-item {
  background-color: #fff;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
body.home .front-news .news-list .news-item h3 {
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  body.home .front-news .news-list .news-item h3 {
    font-size: 1rem;
  }
}
body.home .front-news .news-list .news-item h3 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
body.home .front-news .news-list .news-item h3 a span {
  color: #C19B02;
}
@media (max-width: 768px) {
  body.home .front-news .news-list .news-item h3 a {
    gap: 0.5rem;
  }
}
body.home .front-news .news-list time.post-date {
  font-family: "Zen Antique", serif;
  font-size: 1rem;
}
body.home .front-news .news-more {
  display: flex;
  justify-content: end;
  width: 100%;
}
body.home .front-news .news-more a {
  width: 220px;
  border-width: 1px 0 1px;
  border-style: solid;
  border-color: #C19B02;
  padding: 12px 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body.home .front-news .news-more a:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(231.55deg, #E7C943 15.75%, #F3D439 42.68%, #C46F1A 112.32%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 50%;
}
body.home .front-latest-issue {
  padding-top: 5rem;
}
body.home .front-latest-issue .issue-container .issue-detail {
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  justify-content: center;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-container .issue-detail {
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    justify-content: center;
    align-items: center;
  }
  body.home .front-latest-issue .issue-container .issue-detail .cover-image {
    width: 45%;
  }
}
body.home .front-latest-issue .issue-container .issue-title {
  font-size: 1.75rem;
  font-family: "Zen Antique", serif;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-container .issue-title {
    font-size: 1.25rem;
    text-align: center;
  }
}
body.home .front-latest-issue .issue-container .issue-link {
  border: 1px solid #333;
  width: 240px;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-container .issue-link {
    margin: 2rem auto;
  }
}
body.home .front-latest-issue .issue-container .issue-link a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-container .issue-link a {
    font-size: 1rem;
  }
}
body.home .front-latest-issue .issue-container .issue-link a img {
  margin-top: 0.125rem;
}
body.home .front-latest-issue .issue-container .issue-topic {
  font-weight: 600;
  margin-bottom: 1rem;
}
body.home .front-latest-issue .issue-container .issue-topic:last-child {
  margin-bottom: 0;
}
body.home .front-latest-issue .issue-container .issue-topic span {
  font-size: 1.125rem;
  color: #C19B02;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-container .issue-topic span {
    font-size: 1rem;
  }
}
body.home .front-latest-issue .issue-container .issue-topic span:after {
  content: "|";
  margin-left: 1rem;
  font-weight: 400;
}
body.home .front-latest-issue .issue-container .issue-topic.misc {
  line-height: 2.25;
}
body.home .front-latest-issue .issue-shop {
  margin: 2.5rem auto 0;
  padding: 1.5rem 0 2.5rem;
}
body.home .front-latest-issue .issue-shop h5 {
  color: #C19B02;
  text-align: center;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border: 2px solid #C19B02;
  border-radius: 60px;
  min-width: calc(50% - 1rem);
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-shop h5 {
    width: 100%;
  }
}
body.home .front-latest-issue .issue-shop a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body.home .front-latest-issue .issue-shop .shop-button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-shop .shop-button-group {
    flex-direction: column;
    gap: 1rem;
  }
}
body.home .front-latest-issue .issue-shop .shop-button-group img {
  width: 120px;
}
body.home .front-latest-issue .issue-shop .shop-button-group img.shop-icon {
  width: 24px;
}
body.home .front-latest-issue .issue-shop span.shop-button-note {
  font-size: 0.75rem;
  display: flex;
  justify-content: end;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  body.home .front-latest-issue .issue-shop span.shop-button-note {
    justify-content: center;
    margin-right: 0;
  }
}
body.home .front-diplomacy h3 {
  margin-bottom: 1.5rem;
  font-family: "Zen Antique", serif;
  font-weight: 500;
}
body.home .front-diplomacy .magazine-info {
  border: 1px solid #333;
  font-family: "Zen Antique", serif;
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  width: 60%;
}
@media (max-width: 768px) {
  body.home .front-diplomacy .magazine-info {
    width: 100%;
  }
}
body.home .front-diplomacy .magazine-info p {
  margin-bottom: 0;
}
body.home .front-diplomacy .displomacy-concept {
  margin: 2.25rem auto;
}
@media (max-width: 768px) {
  body.home .front-diplomacy .displomacy-concept {
    margin: 2.5rem auto 3.5rem;
  }
}
body.home .front-diplomacy .editor-list {
  margin-bottom: 2.25rem;
}
@media (max-width: 768px) {
  body.home .front-diplomacy .editor-list {
    margin-top: 1.5rem;
  }
}
body.home .front-diplomacy .editor-list h5 {
  display: inline-block;
  font-size: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.25rem;
}
body.home .front-diplomacy .editor-list ul li {
  margin-bottom: 0.25rem;
}
body.home .front-diplomacy .editor-list ul li:last-child {
  margin-bottom: 0;
}
body.home .front-diplomacy .editor-list ul li span.editor-title {
  display: inline-block;
  width: 6rem;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  body.home .front-diplomacy .editor-list ul li span.editor-title {
    width: 80px;
  }
}
body.home .front-diplomacy .editor-list ul li span.editor-note {
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.news-archive .news-list,
.news-archive .feature-list,
.news-archive .posts-list,
.feature-archive .news-list,
.feature-archive .feature-list,
.feature-archive .posts-list,
.posts-archive .news-list,
.posts-archive .feature-list,
.posts-archive .posts-list {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  margin-bottom: 3rem;
}
.news-archive .news-list h2,
.news-archive .feature-list h2,
.news-archive .posts-list h2,
.feature-archive .news-list h2,
.feature-archive .feature-list h2,
.feature-archive .posts-list h2,
.posts-archive .news-list h2,
.posts-archive .feature-list h2,
.posts-archive .posts-list h2 {
  margin-bottom: 0.5rem;
}
.news-archive .news-list article.post-item,
.news-archive .feature-list article.post-item,
.news-archive .posts-list article.post-item,
.feature-archive .news-list article.post-item,
.feature-archive .feature-list article.post-item,
.feature-archive .posts-list article.post-item,
.posts-archive .news-list article.post-item,
.posts-archive .feature-list article.post-item,
.posts-archive .posts-list article.post-item {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.news-archive .news-list article.post-item .post-thumbnail,
.news-archive .feature-list article.post-item .post-thumbnail,
.news-archive .posts-list article.post-item .post-thumbnail,
.feature-archive .news-list article.post-item .post-thumbnail,
.feature-archive .feature-list article.post-item .post-thumbnail,
.feature-archive .posts-list article.post-item .post-thumbnail,
.posts-archive .news-list article.post-item .post-thumbnail,
.posts-archive .feature-list article.post-item .post-thumbnail,
.posts-archive .posts-list article.post-item .post-thumbnail {
  width: 280px;
}
.news-archive .news-list article.post-item .post-thumbnail img,
.news-archive .feature-list article.post-item .post-thumbnail img,
.news-archive .posts-list article.post-item .post-thumbnail img,
.feature-archive .news-list article.post-item .post-thumbnail img,
.feature-archive .feature-list article.post-item .post-thumbnail img,
.feature-archive .posts-list article.post-item .post-thumbnail img,
.posts-archive .news-list article.post-item .post-thumbnail img,
.posts-archive .feature-list article.post-item .post-thumbnail img,
.posts-archive .posts-list article.post-item .post-thumbnail img {
  width: 100%;
  height: auto;
}
.news-archive .news-list .entry-header,
.news-archive .feature-list .entry-header,
.news-archive .posts-list .entry-header,
.feature-archive .news-list .entry-header,
.feature-archive .feature-list .entry-header,
.feature-archive .posts-list .entry-header,
.posts-archive .news-list .entry-header,
.posts-archive .feature-list .entry-header,
.posts-archive .posts-list .entry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.news-archive .news-list .entry-header .entry-meta,
.news-archive .feature-list .entry-header .entry-meta,
.news-archive .posts-list .entry-header .entry-meta,
.feature-archive .news-list .entry-header .entry-meta,
.feature-archive .feature-list .entry-header .entry-meta,
.feature-archive .posts-list .entry-header .entry-meta,
.posts-archive .news-list .entry-header .entry-meta,
.posts-archive .feature-list .entry-header .entry-meta,
.posts-archive .posts-list .entry-header .entry-meta {
  margin-bottom: 0.25rem;
}
.news-archive .news-list .entry-summary p,
.news-archive .feature-list .entry-summary p,
.news-archive .posts-list .entry-summary p,
.feature-archive .news-list .entry-summary p,
.feature-archive .feature-list .entry-summary p,
.feature-archive .posts-list .entry-summary p,
.posts-archive .news-list .entry-summary p,
.posts-archive .feature-list .entry-summary p,
.posts-archive .posts-list .entry-summary p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
.news-archive .news-list a.read-more,
.news-archive .feature-list a.read-more,
.news-archive .posts-list a.read-more,
.feature-archive .news-list a.read-more,
.feature-archive .feature-list a.read-more,
.feature-archive .posts-list a.read-more,
.posts-archive .news-list a.read-more,
.posts-archive .feature-list a.read-more,
.posts-archive .posts-list a.read-more {
  border-bottom: 1px solid #C19B02;
  padding: 0 0.25rem 0.25rem;
  font-weight: 600;
}
.news-archive .news-list a.read-more img,
.news-archive .feature-list a.read-more img,
.news-archive .posts-list a.read-more img,
.feature-archive .news-list a.read-more img,
.feature-archive .feature-list a.read-more img,
.feature-archive .posts-list a.read-more img,
.posts-archive .news-list a.read-more img,
.posts-archive .feature-list a.read-more img,
.posts-archive .posts-list a.read-more img {
  display: block;
}

.news-archive .news-list p.post-link {
  display: inline-block;
  margin: 0.75rem 0 1.5rem;
}
.news-archive .news-list a.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-archive .news-list a.read-more span {
  color: #C19B02;
}

@media (max-width: 768px) {
  .posts-archive article.post-item {
    flex-direction: column;
    gap: 1rem !important;
  }
  .posts-archive article.post-item .post-thumbnail {
    width: 50% !important;
  }
}
.feature-archive article.feature-item {
  border-bottom: 1px solid #dcd9cc;
  padding-bottom: 3.5rem;
}
.feature-archive article.feature-item:last-child {
  border-bottom: none;
}
.feature-archive .feature-list h2 {
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.feature-archive .feature-list h2 .feature-label {
  font-size: 1.25rem;
  color: #C19B02;
  font-family: "Zen Antique", serif;
}
.feature-archive .pdf_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-archive .pdf_link a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-archive .pdf_link .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  color: #333;
}

.news-single,
.feature-single {
  max-width: 800px;
  margin: 0 auto;
}
.news-single article header,
.feature-single article header {
  margin-bottom: 2.5rem;
}
.news-single article a,
.feature-single article a {
  border-bottom: 1px solid #C19B02;
  padding: 0 0.25rem 0.25rem;
}
.news-single .entry-meta,
.feature-single .entry-meta {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}
.news-single .entry-meta .entry-date-tag,
.feature-single .entry-meta .entry-date-tag {
  background-color: #C19B02;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}
.news-single .featured-image,
.feature-single .featured-image {
  margin-bottom: 2rem;
}
.news-single .featured-image img,
.feature-single .featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.news-single .entry-content,
.feature-single .entry-content {
  line-height: 1.8;
}
.news-single .entry-content p,
.feature-single .entry-content p {
  margin-bottom: 1.5rem;
}
.news-single .entry-content h2, .news-single .entry-content h3, .news-single .entry-content h4,
.feature-single .entry-content h2,
.feature-single .entry-content h3,
.feature-single .entry-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.news-single .entry-content ul, .news-single .entry-content ol,
.feature-single .entry-content ul,
.feature-single .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.news-single .entry-content ul li, .news-single .entry-content ol li,
.feature-single .entry-content ul li,
.feature-single .entry-content ol li {
  margin-bottom: 0.5rem;
}
.news-single .entry-content blockquote,
.feature-single .entry-content blockquote {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-left: 4px solid #007cba;
  background-color: #f9f9f9;
  font-style: italic;
}
.news-single .post-navigation,
.feature-single .post-navigation {
  margin-top: 2.5rem;
}
.news-single .post-navigation .nav-links,
.feature-single .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.news-single .post-navigation .nav-links .nav-previous a,
.news-single .post-navigation .nav-links .nav-next a,
.feature-single .post-navigation .nav-links .nav-previous a,
.feature-single .post-navigation .nav-links .nav-next a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  border-width: 1px 0 1px;
  border-style: solid;
  border-color: #C19B02;
  padding: 0.5em 1em;
}

.post-single h1 {
  margin-bottom: 2.5rem;
}
.post-single h2 {
  margin-bottom: 2.5rem;
}
.post-single .issue-summary {
  display: flex;
  gap: 3.5rem;
}
@media (max-width: 768px) {
  .post-single .issue-summary {
    justify-content: space-between;
    flex-direction: column;
  }
}
.post-single .issue-summary .featured-image {
  width: calc(33.3333333333% - 1rem);
}
@media (max-width: 768px) {
  .post-single .issue-summary .featured-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}
.post-single .issue-summary .issue-topic-group {
  max-width: calc(66.6666666667% - 1rem);
  padding: 2rem;
  border-width: 1px 0 1px;
  border-style: solid;
  border-color: #333;
}
@media (max-width: 768px) {
  .post-single .issue-summary .issue-topic-group {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
}
.post-single .entry-content {
  margin-top: 4rem;
}
.post-single .entry-content p {
  margin-bottom: 1.5rem;
}

.page-content .issue-shop {
  padding-bottom: 2.5rem;
  width: 50%;
}
@media (max-width: 768px) {
  .page-content .issue-shop {
    width: 100%;
  }
}
.page-content .issue-shop h5 {
  color: #C19B02;
  text-align: center;
  padding: 1.5rem 2rem;
  border: 2px solid #C19B02;
  border-radius: 60px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .page-content .issue-shop h5 {
    width: 100%;
  }
}
.page-content .issue-shop a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .page-content .issue-shop a {
    flex-direction: column;
  }
}
.page-content .issue-shop img {
  width: 120px;
}
.page-content .issue-shop img.shop-icon {
  width: 24px;
}
.page-content .issue-shop span.shop-button-note {
  font-size: 0.875rem;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .page-content .issue-shop span.shop-button-note {
    margin: 0.3rem auto 0;
    text-align: center;
    display: block;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background-color: #007cba;
  color: white;
  border-color: #007cba;
}

.no-posts {
  text-align: center;
  padding: 3rem 0;
}
.no-posts h2 {
  margin-bottom: 1rem;
  color: #666;
}
.no-posts p {
  margin-bottom: 2rem;
  color: #999;
}
.no-posts .back-home {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #C19B02;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 1px solid #C19B02;
}
.no-posts .back-home:hover {
  color: #fff;
  background-color: #C19B02;
}

.issue-topic-group ul li {
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.issue-topic-group ul li:last-child {
  margin-bottom: 0;
}
.issue-topic-group ul li span {
  font-size: 0.875rem;
  color: #C19B02;
  display: block;
}

.news-no-link {
  cursor: default;
}/*# sourceMappingURL=style.css.map */