/* Собрано из шаблонов — tools/extract_template_styles.php */


/* --- template/aurora/header.php --- */
.theme-aurora {
  --pol-red: #e4002b;
  --pol-red-dark: #b80024;
  --pol-black: #000000;
  --pol-gray: #6b6b6b;
  --pol-line: #d9d9d9;
  --pol-bg: #ffffff;
  --pol-bg-soft: #f7f7f7;
}

.pol-super {
  background: var(--pol-black);
  color: #fff;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pol-super-inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pol-super-date { color: rgba(255, 255, 255, 0.75); font-weight: 500; }

.pol-masthead {
  background: var(--pol-bg);
  border-bottom: 1px solid var(--pol-line);
}
.pol-masthead-inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 18px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pol-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pol-black);
}
.pol-logo:hover { color: var(--pol-red); }

.pol-nav-btn {
  display: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--pol-black);
  padding: 10px 18px;
  cursor: pointer;
}
.pol-nav-btn:hover { background: var(--pol-black); color: #fff; }

.pol-nav {
  background: var(--pol-bg);
  border-bottom: 4px solid var(--pol-red);
}
.pol-nav-inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 20px;
}
.pol-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
.pol-nav-list li {
  border-right: 1px solid var(--pol-line);
}
.pol-nav-list li:first-child { border-left: 1px solid var(--pol-line); }
.pol-nav-list a {
  display: block;
  padding: 12px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pol-black);
  text-decoration: none;
}
.pol-nav-list a:hover {
  background: var(--pol-bg-soft);
  color: var(--pol-red);
}

@media (min-width: 901px) {
  .pol-nav-list > li.menu-item-has-children {
    position: relative;
  }

  .pol-nav-list .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--pol-line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    z-index: 200;
  }

  .pol-nav-list .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 2px;
  }

  .pol-nav-list li.menu-item-has-children:hover > .sub-menu,
  .pol-nav-list li.menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }

  .pol-nav-list .sub-menu li {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--pol-line);
  }

  .pol-nav-list .sub-menu li:last-child {
    border-bottom: none;
  }

  .pol-nav-list .sub-menu a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
  }
}

.pol-nav-empty {
  display: block;
  padding: 12px 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--pol-gray);
}

@media (max-width: 900px) {
  .pol-nav-btn { display: block; }
  .pol-nav-inner { padding: 0; }
  .pol-nav-list {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--pol-line);
  }
  .pol-nav-list.is-open { display: flex; }
  .pol-nav-list li { border-left: none; border-right: none; border-bottom: 1px solid var(--pol-line); }
  .pol-nav-list li:first-child { border-left: none; }

  .pol-nav-list .sub-menu {
    display: block;
    position: static;
    margin: 0;
    padding: 0 0 0 14px;
    list-style: none;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .pol-nav-list .sub-menu li {
    border-bottom: 1px solid var(--pol-line);
  }

  .pol-nav-list .sub-menu a {
    padding: 10px 14px;
  }
}

/* --- template/aurora/footer.php --- */
.pol-footer--rich {
  margin-top: 56px;
  background: #0a0a0a;
  border-top: 4px solid #e4002b;
  font-family: 'Barlow Condensed', 'Source Sans 3', system-ui, sans-serif;
  position: relative;
}
.pol-footer__accent {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #e4002b,
    #e4002b 12px,
    #ffffff 12px,
    #ffffff 24px
  );
  opacity: 0.9;
}
.pol-footer-inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 40px 20px 36px;
}
.pol-footer__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 22px;
}
.pol-footer__title {
  margin: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.pol-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
}
.pol-footer__links a {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pol-footer__links a:hover {
  color: #e4002b;
  border-bottom-color: #e4002b;
}
.pol-footer__contacts-band {
  margin: 0 0 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(228, 0, 43, 0.35);
  border-left: 4px solid #e4002b;
}
.pol-footer__contacts .cms-foot-contact__strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.pol-footer__contacts .cms-foot-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pol-footer__contacts .cms-foot-contact__glyph {
  color: #e4002b;
  font-weight: 700;
}
.pol-footer__contacts .cms-foot-contact__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  word-break: break-word;
}
.pol-footer__contacts .cms-foot-contact__link:hover {
  color: #e4002b;
}
.pol-footer-text {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 800px;
}
@media (max-width: 640px) {
  .pol-footer__links {
    justify-content: flex-start;
  }
}

/* --- template/aurora/home.php --- */
body.theme-aurora {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.au-home {
  max-width: 1232px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}
.au-hero {
  margin-bottom: 48px;
  border: 1px solid #c4c4c4;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.au-hero a.au-hero-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
}
@media (max-width: 900px) {
  .au-hero a.au-hero-split { grid-template-columns: 1fr; }
}
.au-hero-text {
  padding: clamp(22px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #d9d9d9;
}
@media (max-width: 900px) {
  .au-hero-text { border-right: none; border-bottom: 1px solid #d9d9d9; }
}
.au-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e4002b;
  margin-bottom: 14px;
}
.au-hero h1 {
  margin: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
}
.au-hero-media {
  min-height: 300px;
  position: relative;
  background: #f0f0f0;
}
@media (min-width: 901px) {
  .au-hero-media {
    min-height: 400px;
  }
}
.au-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.au-hero-split:hover .au-hero-media img {
  transform: scale(1.04);
}
.au-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e4002b;
  margin: 48px 0 0;
  padding-bottom: 8px;
  border-bottom: 3px solid #000;
}
.theme-aurora .cms-home-top-stories {
  margin-bottom: 24px;
}
.theme-aurora .cms-home-top-stories__inner {
  padding: 12px 14px 14px;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  border-left: 4px solid #e4002b;
}
.theme-aurora .cms-home-top-stories__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e4002b;
  margin: 0 0 10px;
}
.theme-aurora .cms-home-top-stories__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.theme-aurora .cms-home-top-stories__item {
  flex: 1 1 140px;
  min-width: 0;
}
.theme-aurora .cms-home-top-stories__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 8px 10px;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: 1px solid #d9d9d9;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.theme-aurora .cms-home-top-stories__link:hover {
  border-color: #e4002b;
  box-shadow: 0 4px 16px rgba(228, 0, 43, 0.1);
}
.theme-aurora .cms-home-top-stories__thumb {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}
.theme-aurora .cms-home-top-stories__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theme-aurora .cms-home-top-stories__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .theme-aurora .cms-home-top-stories__inner {
    padding: 10px 10px 12px;
  }
  .theme-aurora .cms-home-top-stories__label {
    font-size: 10px;
    margin: 0 0 8px;
  }
  .theme-aurora .cms-home-top-stories__list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    overflow: visible;
    overflow-y: visible;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    padding: 0;
    margin: 0;
    scrollbar-width: auto;
  }
  .theme-aurora .cms-home-top-stories__item {
    flex: none;
    width: 100%;
    max-width: none;
    scroll-snap-align: none;
  }
  .theme-aurora .cms-home-top-stories__link {
    min-height: 52px;
    padding: 7px 9px;
    gap: 8px;
  }
  .theme-aurora .cms-home-top-stories__thumb {
    width: 46px;
    height: 46px;
  }
  .theme-aurora .cms-home-top-stories__title {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}

.au-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}
.au-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  transition: background 0.15s;
}
.au-card:hover { background: #fafafa; }
.au-card:hover .au-card-body h3 { color: #e4002b; }
.au-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #d9d9d9;
}
.au-card-body { padding: 14px 16px 18px; }
.au-card h3 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #000;
}
.au-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.au-cat {
  display: block;
  text-decoration: none;
  color: #000;
  border: 1px solid #d9d9d9;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.au-cat:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.au-cat:hover .au-cat-cap h3 { color: #e4002b; }
.au-cat img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.au-cat-cap {
  padding: 16px 18px 20px;
  border-top: 4px solid #e4002b;
}
.au-cat-cap span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4002b;
  display: block;
  margin-bottom: 8px;
}
.au-cat-cap h3 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

/* --- template/aurora/article.php --- */
body.theme-aurora {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  line-height: 1.7;
}
.theme-aurora main {
  max-width: 720px;
  margin: 32px auto 40px;
  padding: 0 20px;
}
.post h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
}
.meta {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}
.meta a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #e4002b;
}
.meta a:hover { color: #e4002b; }
.content { font-size: 1.08rem; color: #222; }
.content p { margin-bottom: 1.45em; }
.post .content p:empty { min-height: 1.4em; }
.content img {
  max-width: 100%;
  margin: 24px auto;
  display: block;
  border: 1px solid #d9d9d9;
}
.content h2, .content h3 {
  margin-top: 1.5em;
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.content blockquote {
  border-left: 4px solid #e4002b;
  margin: 1.5em 0;
  padding: 8px 0 8px 20px;
  color: #444;
  font-style: italic;
  background: #f7f7f7;
}
.content a { color: #e4002b; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.content a:hover { color: #000; }
.post-image { margin: 24px 0; text-align: center; }
.post-image img {
  max-width: 100%;
  border: 1px solid #d9d9d9;
}
.related-articles {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 32px 20px 0;
  border-top: 4px solid #000;
}
.related-articles h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e4002b;
  margin: 0 0 20px;
}
.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid #d9d9d9;
}
.related-list article {
  background: #fff;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
}
.related-list img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid #d9d9d9;
}
.related-list h3 {
  font-size: 17px;
  padding: 12px 14px 16px;
  margin: 0;
  line-height: 1.25;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}
.related-list a { color: #000; text-decoration: none; }
.related-list a:hover { color: #e4002b; }
@media (max-width: 768px) {
  .theme-aurora main { padding: 0 16px; }
  .related-list { grid-template-columns: 1fr; }
}

/* --- template/aurora/category.php --- */
body.theme-aurora {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    color: #000;
}
.theme-aurora h1 {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    margin: 36px 20px 28px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.page-content {
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 24px 28px;
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    line-height: 1.7;
    color: #222;
    font-size: 1.04rem;
    word-wrap: break-word;
}
.page-content p { margin: 0 0 1.1em; }
.page-content h2, .page-content h3, .page-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    color: #000;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}
.page-content h2 {
    font-size: 1.35rem;
    border-left: 4px solid #e4002b;
    padding-left: 12px;
}
.page-content ul, .page-content ol { margin: 1em 0 1em 1.5em; }
.page-content a { color: #e4002b; font-weight: 600; }
.page-content img { max-width: 100%; margin: 18px auto; display: block; border: 1px solid #d9d9d9; }
.page-content blockquote {
    margin: 1.2em 0;
    padding: 1em 1.2em;
    border-left: 4px solid #e4002b;
    background: #f7f7f7;
    font-style: italic;
    color: #444;
}
.page-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.page-content th, .page-content td { border: 1px solid #d9d9d9; padding: 10px; }
.page-content th { background: #000; color: #fff; font-weight: 700; }
.au-cat-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0;
    padding: 0 20px;
    list-style: none;
    margin: 0 auto 28px;
    max-width: 1232px;
    border-top: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
}
.au-cat-feed > li {
    background: #fff;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background 0.15s;
}
.au-cat-feed > li:hover { background: #fafafa; }
.au-cat-feed > li img {
    width: 100%;
    height: 176px;
    object-fit: cover;
    border-bottom: 1px solid #d9d9d9;
}
.au-cat-feed > li a { text-decoration: none; color: inherit; }
.au-cat-feed strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #000;
    display: block;
    margin-bottom: 8px;
}
.au-cat-feed > li:hover strong { color: #e4002b; }
.au-cat-feed small { color: #6b6b6b; font-size: 0.85rem; }
.post-content { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0 48px;
}
.pagination a {
    background: #fff;
    border: 1px solid #000;
    padding: 8px 14px;
    color: #000;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.pagination a:hover { background: #000; color: #fff; }
.pagination a[style*="font-weight:bold"] {
    background: #e4002b;
    border-color: #e4002b;
    color: #fff;
    font-weight: 700 !important;
}
@media (max-width: 768px) {
    .page-content { padding: 18px; }
}

/* --- template/aurora/page.php --- */
body.theme-aurora {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    margin: 0;
    background: #fff;
    color: #000;
    line-height: 1.65;
  }
  .theme-aurora h1 {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    margin: 40px 22px 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
  .theme-aurora main {
    max-width: 820px;
    margin: 0 auto 64px;
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    padding: clamp(26px, 4vw, 44px);
  }
  .theme-aurora main p { margin: 1.1em 0; font-size: 1.06rem; color: #222; }
  .theme-aurora main img { max-width: 100%; margin: 20px auto; display: block; border: 1px solid #d9d9d9; }
  .theme-aurora main a { color: #e4002b; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
  .theme-aurora main a:hover { color: #000; }
  .theme-aurora blockquote {
    margin: 24px 0;
    padding: 16px 22px;
    background: #fff;
    border-left: 4px solid #e4002b;
    font-style: italic;
    color: #444;
  }
  @media (max-width: 700px) {
    .theme-aurora main { margin-left: 16px; margin-right: 16px; padding: 22px; }
  }

/* --- template/aurora/author.php --- */
body.theme-aurora {
      font-family: 'Source Sans 3', system-ui, sans-serif;
      background: #fff;
      color: #000;
      margin: 0;
      line-height: 1.6;
    }
    .theme-aurora .author-page-title {
      font-family: 'Barlow Condensed', sans-serif;
      text-align: center;
      margin: 40px 20px 12px;
      font-size: clamp(2rem, 4.5vw, 2.85rem);
      font-weight: 800;
      color: #000;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }
    .author-desc {
      max-width: 720px;
      margin: 8px auto 36px;
      text-align: center;
      font-size: 1rem;
      color: #6b6b6b;
      padding: 0 20px;
    }
    .theme-aurora main {
      max-width: 1232px;
      margin: 0 auto;
      padding: 0 20px 64px;
    }
    .articles {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 0;
      padding: 0;
      margin: 0;
      border-top: 1px solid #d9d9d9;
      border-left: 1px solid #d9d9d9;
    }
    .article-card {
      background: #fff;
      border-right: 1px solid #d9d9d9;
      border-bottom: 1px solid #d9d9d9;
      overflow: hidden;
      transition: background 0.15s;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover { background: #fafafa; }
    .article-card:hover .card-body h3 a { color: #e4002b; }
    .preview { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #eee; }
    .preview img { width: 100%; height: 100%; object-fit: cover; }
    .card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex-grow: 1; }
    .card-body h3 { margin: 0 0 10px; font-size: 1.25rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }
    .card-body h3 a { text-decoration: none; color: #000; }
    .excerpt { font-size: 0.94rem; color: #444; flex-grow: 1; margin-bottom: 12px; }
    .read-more { align-self: flex-start; text-decoration: none; color: #e4002b; font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
    .read-more:hover { color: #000; }
    .theme-aurora main > p { text-align: center; color: #6b6b6b; }
    @media (max-width: 600px) {
      .theme-aurora .author-page-title { font-size: 1.7rem; }
    }


/* --- 404 --- */
/* Страница 404 */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  font-family: "Inter", system-ui, sans-serif;
  text-align: center;
  background: #fafafa;
  color: #111;
  margin: 0;
}
.page-404__hero {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 280px;
  background: #e5e7eb center/contain no-repeat;
  margin-bottom: 20px;
  border-radius: 12px;
}
.page-404__hero h1 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: clamp(4rem, 14vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.page-404__lead {
  margin: 0 0 16px;
  max-width: 420px;
  line-height: 1.5;
}
.page-404__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}
.page-404__btn:hover {
  background: #15803d;
}
