.sec-news > .flex-container {
  align-items: flex-start;
  gap: 56px;
}
@media screen and (max-width: 768px) {
  .sec-news > .flex-container {
    flex-direction: column;
  }
}

.news-list {
  width: 100%;
  max-width: 940px;
}

.news-item {
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.news-item:last-child {
  border-bottom: 1px solid #ddd;
}
.news-item::after {
  content: url("/asset/common/img/arrow-btn-small.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 8px;
  position: absolute;
  right: 0;
  pointer-events: none;
}
.news-item a {
  width: 100%;
  margin: 24px 0;
  padding-right: 36px;
  display: block;
}
.news-item .inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-item .flex-container {
  justify-content: flex-start;
  gap: 8px;
  position: relative;
}
.news-item .title {
  font-size: 18px;
  font-weight: 600;
}

.side-nav {
  width: 284px;
}
@media screen and (max-width: 768px) {
  .side-nav {
    width: 100%;
  }
}
.side-nav .links-container {
  border-top: 1px solid #ddd;
  padding: 16px 0;
  min-width: 100px;
}
.side-nav .links-container:last-child {
  border-bottom: 1px solid #ddd;
}
.side-nav .title {
  font-size: 18px;
  font-weight: 600;
}
.side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.side-nav a {
  color: #555;
}

.page-numbers {
  background: #ffffff;
  color: #1558a0 !important;
  min-width: 32px;
  min-height: 32px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  margin-inline: auto;
  flex-wrap: wrap;
}

.page-numbers.current {
  color: #555 !important;
}

.page-numbers.next,
.page-numbers.prev {
  padding: 0 12px;
}

.nav-previous span,
.nav-next span {
  font-size: 14px;
}

.nav-previous a,
.nav-next a {
  background-color: #fff;
  border-radius: 100px;
  padding: 8px 16px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 480px) {
  .nav-previous a,
  .nav-next a {
    display: block;
  }
}

.nav-previous a {
  padding-left: 32px;
}

.nav-next a {
  padding-right: 32px;
}

.nav-previous a::before {
  content: url(/asset/common/img/arrow.svg);
  display: inline-block;
  transform: rotate(90deg);
  top: 29%;
  left: 17px;
  position: absolute;
}

.nav-next a::after {
  content: url(/asset/common/img/arrow.svg);
  display: inline-block;
  transform: rotate(270deg);
  top: 29%;
  right: 17px;
  position: absolute;
}

.nav-links-top {
  width: 100%;
  flex-basis: 100%;
  display: flex;
  justify-content: space-between !important;
  gap: 20px;
  margin-top: 0;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.nav-links-top a {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.nav-links-top a:hover {
  background: #fff;
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.nav-links-top .nav-subtitle {
  display: block;
  font-size: 12px;
  color: #999;
}
.nav-links-top .nav-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}
.nav-links-top .nav-next {
  text-align: right;
}
.nav-links-top .nav-next .nav-title {
  text-align: right;
}

.back-to-archive {
  text-align: center;
  margin-top: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: #667eea;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.back-link:hover {
  opacity: 0.7;
}

.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous,
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  flex: auto;
}

.post-navigation {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
  }
}
.post-navigation .nav-subtitle {
  display: block;
  font-size: 0.875em;
  color: #666;
}
.post-navigation .nav-title {
  display: block;
  font-weight: 600;
}

.entry-header {
  margin-bottom: 32px;
}
.entry-header .post-meta {
  margin-bottom: 16px;
  gap: 8px;
  justify-content: flex-start;
  gap: 16px;
}
.entry-header .entry-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .entry-header .entry-title {
    font-size: 20px;
  }
}

.entry-content,
.wp-block-post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}
.entry-content p,
.wp-block-post-content p {
  margin: 0 0 1.5em 0;
}
.entry-content p:last-child,
.wp-block-post-content p:last-child {
  margin-bottom: 0;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6,
.wp-block-post-content h1,
.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4,
.wp-block-post-content h5,
.wp-block-post-content h6 {
  font-weight: 600;
  line-height: 1.4;
  margin: 2em 0 1em 0;
}
.entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child,
.wp-block-post-content h1:first-child,
.wp-block-post-content h2:first-child,
.wp-block-post-content h3:first-child,
.wp-block-post-content h4:first-child,
.wp-block-post-content h5:first-child,
.wp-block-post-content h6:first-child {
  margin-top: 0;
}
.entry-content h1,
.wp-block-post-content h1 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .entry-content h1,
  .wp-block-post-content h1 {
    font-size: 28px;
  }
}
.entry-content h2,
.wp-block-post-content h2 {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .entry-content h2,
  .wp-block-post-content h2 {
    font-size: 24px;
  }
}
.entry-content h3,
.wp-block-post-content h3 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .entry-content h3,
  .wp-block-post-content h3 {
    font-size: 20px;
  }
}
.entry-content h4,
.wp-block-post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .entry-content h4,
  .wp-block-post-content h4 {
    font-size: 18px;
  }
}
.entry-content h5,
.wp-block-post-content h5 {
  font-size: 18px;
}
.entry-content h6,
.wp-block-post-content h6 {
  font-size: 16px;
}
.entry-content ul, .entry-content ol,
.wp-block-post-content ul,
.wp-block-post-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.entry-content ul li, .entry-content ol li,
.wp-block-post-content ul li,
.wp-block-post-content ol li {
  margin: 0.5em 0;
}
.entry-content ul,
.wp-block-post-content ul {
  list-style-type: disc;
}
.entry-content ol,
.wp-block-post-content ol {
  list-style-type: decimal;
}
.entry-content a,
.wp-block-post-content a {
  color: #1558a0;
  text-decoration: underline;
}
.entry-content a:hover,
.wp-block-post-content a:hover {
  text-decoration: none;
}
.entry-content strong,
.entry-content b,
.wp-block-post-content strong,
.wp-block-post-content b {
  font-weight: 700;
}
.entry-content em,
.entry-content i,
.wp-block-post-content em,
.wp-block-post-content i {
  font-style: italic;
}
.entry-content blockquote,
.wp-block-post-content blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #1558a0;
  background-color: #f5f5f5;
  font-style: italic;
}
.entry-content blockquote p,
.wp-block-post-content blockquote p {
  margin: 0;
}
.entry-content code,
.wp-block-post-content code {
  background-color: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}
.entry-content pre,
.wp-block-post-content pre {
  background-color: #f5f5f5;
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.entry-content pre code,
.wp-block-post-content pre code {
  background: none;
  padding: 0;
}
.entry-content img,
.wp-block-post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
.entry-content table,
.wp-block-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry-content table th,
.entry-content table td,
.wp-block-post-content table th,
.wp-block-post-content table td {
  padding: 0.75em;
  border: 1px solid #ddd;
  text-align: left;
}
.entry-content table th,
.wp-block-post-content table th {
  background-color: #f5f5f5;
  font-weight: 600;
}
.entry-content hr,
.wp-block-post-content hr {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #ddd;
}
.entry-content .wp-block-group,
.wp-block-post-content .wp-block-group {
  margin: 1.5em 0;
}
.entry-content .wp-block-columns,
.wp-block-post-content .wp-block-columns {
  display: flex;
  gap: 2em;
  margin: 1.5em 0;
}
@media screen and (max-width: 768px) {
  .entry-content .wp-block-columns,
  .wp-block-post-content .wp-block-columns {
    flex-direction: column;
    gap: 1em;
  }
}
.entry-content .wp-block-column,
.wp-block-post-content .wp-block-column {
  flex: 1;
}
.entry-content .wp-block-image,
.wp-block-post-content .wp-block-image {
  margin: 1.5em 0;
}
.entry-content .wp-block-image img,
.wp-block-post-content .wp-block-image img {
  margin: 0;
}
.entry-content .wp-block-quote,
.wp-block-post-content .wp-block-quote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #1558a0;
  background-color: #f5f5f5;
}
.entry-content .wp-block-quote p,
.wp-block-post-content .wp-block-quote p {
  margin: 0;
}
.entry-content .wp-block-separator,
.wp-block-post-content .wp-block-separator {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #ddd;
}
.entry-content .has-small-font-size,
.wp-block-post-content .has-small-font-size {
  font-size: 0.875em;
}
.entry-content .has-normal-font-size,
.wp-block-post-content .has-normal-font-size {
  font-size: 1em;
}
.entry-content .has-medium-font-size,
.wp-block-post-content .has-medium-font-size {
  font-size: 1.25em;
}
.entry-content .has-large-font-size,
.wp-block-post-content .has-large-font-size {
  font-size: 1.5em;
}
.entry-content .has-x-large-font-size,
.wp-block-post-content .has-x-large-font-size {
  font-size: 2em;
}
.entry-content .has-huge-font-size,
.wp-block-post-content .has-huge-font-size {
  font-size: 2.5em;
}/*# sourceMappingURL=news.css.map */