/* CTS header: single row — nav left, logo dead-center, lang/sns right */
.header.cts-header {
  display: block !important;
  position: relative;
  height: 64px !important;
  min-height: 64px;
  padding: 0 24px;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
  overflow: visible;
}

.header.cts-header .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
  text-decoration: none;
  color: inherit;
  line-height: 1.05;
  white-space: nowrap;
}

.header.cts-header .logo small {
  white-space: nowrap;
}

.header.cts-header .cts-nav {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.header.cts-header .cts-nav a {
  opacity: 0.45;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  line-height: 1;
}

.header.cts-header .cts-nav a:hover,
.header.cts-header .cts-nav a[aria-current="page"] {
  opacity: 1;
  color: #b8860b;
}

.header.cts-header .cts-header-tools {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header.cts-header .lang {
  position: static !important;
  right: auto !important;
  display: flex !important;
  align-items: center;
  gap: 4px;
  margin: 0 !important;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.header.cts-header .sns {
  position: static !important;
  right: auto !important;
  display: flex;
  gap: 8px;
}

@media (max-width: 1024px) {
  .header.cts-header {
    display: block !important;
    height: 64px !important;
    padding: 0 16px;
    text-align: center;
  }

  .header.cts-header .lang,
  .header.cts-header .sns {
    position: static !important;
  }

  .header.cts-header .cts-nav {
    gap: 14px;
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .header.cts-header {
    height: auto !important;
    min-height: 0;
    padding: 12px 16px 14px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .header.cts-header .logo,
  .header.cts-header .cts-nav,
  .header.cts-header .cts-header-tools {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
  }

  .header.cts-header .cts-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .header.cts-header .cts-header-tools {
    justify-content: center;
  }

  .header.cts-header .sns {
    display: none;
  }
}

/* CTS inner pages: archive / single / fixed page */
.cts-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.cts-page-hero {
  text-align: center;
  padding: 48px 0 36px;
}

.cts-page-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.cts-page-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-size: 48px;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 400;
}

.cts-page-lead {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.cts-news-list {
  margin-top: 8px;
}

.cts-news-head {
  display: grid;
  grid-template-columns: 110px 120px 1fr 28px;
  gap: 12px;
  padding: 0 4px 10px;
  border-bottom: 3px solid var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.cts-news-item {
  border-bottom: 1px solid #e6e2dc;
}

.cts-news-item a {
  display: grid;
  grid-template-columns: 110px 120px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 18px 4px;
  text-decoration: none;
  color: inherit;
}

.cts-news-item a:hover h2 {
  color: #b8860b;
}

.cts-news-item time {
  font-size: 13px;
  font-weight: 700;
}

.cts-news-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.cts-news-item h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.cts-news-arrow {
  text-align: right;
  font-weight: 700;
}

.cts-empty {
  padding: 40px 0;
  text-align: center;
  font-weight: 700;
  color: var(--muted);
}

.cts-pagination {
  margin-top: 28px;
  text-align: center;
}

.cts-pagination .nav-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cts-pagination a,
.cts-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.cts-pagination .current {
  background: var(--gold);
}

.cts-article-header {
  padding: 48px 0 24px;
  text-align: center;
}

.cts-article-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 18px;
  font-size: 13px;
  font-weight: 700;
}

.cts-article-title {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.cts-article-thumb {
  margin: 0 0 28px;
}

.cts-article-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.cts-article-body,
.cts-page-body {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
}

.cts-article-body > *:first-child,
.cts-page-body > *:first-child {
  margin-top: 0;
}

.cts-article-body p,
.cts-page-body p {
  margin: 0 0 1.2em;
}

.cts-article-body h2,
.cts-page-body h2 {
  margin: 2em 0 0.7em;
  font-size: 20px;
  font-weight: 900;
}

.cts-article-body a,
.cts-page-body a {
  color: #b8860b;
}

.cts-back {
  margin: 40px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.cts-back a {
  text-decoration: none;
  color: inherit;
}

.cts-back a:hover {
  color: #b8860b;
}

@media (max-width: 768px) {
  .cts-inner {
    padding: 0 20px 48px;
  }

  .cts-page-title {
    font-size: 36px;
  }

  .cts-news-head {
    display: none;
  }

  .cts-news-item a {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "time arrow"
      "cat arrow"
      "title arrow";
    gap: 4px 12px;
    padding: 16px 0;
  }

  .cts-news-item time { grid-area: time; font-size: 12px; }
  .cts-news-cat { grid-area: cat; }
  .cts-news-item h2 { grid-area: title; font-size: 14px; }
  .cts-news-arrow { grid-area: arrow; align-self: center; }

  .cts-article-title {
    font-size: 22px;
  }
}