﻿:root {
  --color-background: #f7f3f3;
  --color-surface: #ffffff;
  --color-surface-muted: #efeded;
  --color-border: #d8d3d3;
  --color-text: #171717;
  --color-text-soft: #5f5e5e;
  --color-text-inverse: #ffffff;
  --color-dark: #1a1a1a;
  --header-background: #ffffff;
  --header-text: #171717;
  --header-border: rgba(23, 23, 23, 0.14);
  --header-border-strong: rgba(23, 23, 23, 0.22);
  --header-divider: rgba(23, 23, 23, 0.08);
  --color-red: #e31b23;
  --color-red-dark: #b90014;
  --shadow-none: none;
  --radius-none: 0;
  --container-width: 1280px;
  --header-container-width: 1280px;
  --header-side-width: 400px;
  --gutter: 24px;
  --header-height: 84px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-label: "Poppins", sans-serif;
  --display-title-line: 1.08;
  --display-title-track: -0.02em;
  --display-block-line: 1.12;
  --display-block-track: -0.016em;
  --display-card-line: 1.28;
  --display-card-track: -0.01em;
}

html[data-theme="dark"] {
  --color-background: #111315;
  --color-surface: #181b1f;
  --color-surface-muted: #20242a;
  --color-border: #343941;
  --color-text: #f2f3f5;
  --color-text-soft: #c6ccd5;
  --header-background: #1a1a1a;
  --header-text: #ffffff;
  --header-border: rgba(255, 255, 255, 0.16);
  --header-border-strong: rgba(255, 255, 255, 0.22);
  --header-divider: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--color-dark);
  border-radius: var(--radius-none);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 1.1rem 1.2rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6d7385;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-red);
}

:focus-visible {
  outline: 3px solid rgba(227, 27, 35, 0.28);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(calc(100% - 32px), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-background);
  border-bottom: 3px solid var(--color-red);
  visibility: hidden;
}

.site-header.is-ready {
  visibility: visible;
}

.site-header .container {
  width: min(calc(100% - 32px), var(--header-container-width));
}

.breaking-bar {
  border-bottom: 1px solid var(--header-divider);
  background:
    linear-gradient(90deg, #151515 0%, #252525 55%, #151515 100%);
  color: var(--color-text-inverse);
}

.breaking-bar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breaking-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.9rem;
  background: var(--color-red);
  color: var(--color-text-inverse);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breaking-viewport {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.breaking-rail {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  animation: breaking-scroll 34s linear infinite;
}

.breaking-viewport:hover .breaking-rail {
  animation-play-state: paused;
}

.breaking-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: var(--font-label);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.breaking-item:hover,
.breaking-item:focus-visible {
  color: #ffd7d9;
}

.breaking-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 0 0 5px rgba(227, 27, 35, 0.18);
}

@keyframes breaking-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 0.65vw, 0.7rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--header-text);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: auto;
}

.site-header .brand-logo {
  height: clamp(3.25rem, 4vw, 4.1rem);
  max-width: min(29vw, 310px);
}

.page-title h1,
.article-title,
.contact-title h1 {
  line-height: var(--display-title-line);
  letter-spacing: var(--display-title-track);
  text-wrap: balance;
}

.section-heading h2,
.related-panel h2,
.text-block h2,
.info-card h3,
.ad-card h3,
.job-card h3,
.contact-form-card h2 {
  line-height: var(--display-block-line);
  letter-spacing: var(--display-block-track);
  text-wrap: balance;
}

.news-card h3,
.mini-card-body h3,
.search-result-card h3 {
  line-height: var(--display-card-line);
  letter-spacing: var(--display-card-track);
  text-wrap: balance;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: clamp(0.45rem, 0.7vw, 0.8rem);
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-inline: clamp(0.75rem, 1.8vw, 1.5rem);
  padding: 0;
  overflow: hidden;
}

.desktop-nav a,
.footer-nav a,
.mobile-menu a,
.button,
.hero-link,
.contact-form span,
.detail-item strong,
.social-card h3 {
  font-family: var(--font-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: var(--header-text);
  font-size: 0.99rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.38rem 0;
  letter-spacing: 0.018em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--color-red);
}

.desktop-nav a.is-selected {
  color: var(--header-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: flex-end;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  min-width: max-content;
  margin-left: auto;
}


.header-social {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.header-social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-text);
  border: 1px solid var(--header-border);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.header-social i {
  font-size: 1.15rem;
  line-height: 1;
}

.search-trigger i,
.theme-trigger i {
  font-size: 1.05rem;
  line-height: 1;
}

.header-social a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-text-inverse);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 2rem;
  border: 2px solid var(--color-red);
  border-radius: var(--radius-none);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--color-red);
  color: var(--color-text-inverse);
}

.button-primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.button-small {
  min-height: 46px;
  padding: 0 1.35rem;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-text);
  border: 1px solid transparent;
}

.icon-button:hover {
  border-color: var(--header-border-strong);
}

.icon-button svg,
.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  border-top: 1px solid var(--header-divider);
  background: var(--header-background);
}

.mobile-menu-inner {
  padding: 1rem 0 1.5rem;
}

.mobile-menu nav {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.mobile-menu-footer .button {
  flex: 1;
  min-height: 46px;
  padding: 0 1rem;
}

.mobile-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
  justify-content: flex-start;
}

.mobile-social a {
  background: var(--color-surface-muted);
  color: var(--header-text);
  border-color: var(--header-border-strong);
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 1rem;
  background: rgba(12, 12, 12, 0.72);
}

.search-modal[hidden] {
  display: none;
}

.search-modal-panel {
  width: min(100%, 860px);
  max-height: min(80vh, 760px);
  overflow: auto;
  background: var(--color-surface);
  border: 2px solid var(--color-dark);
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.search-modal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.search-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-dark);
}

.search-modal-body {
  padding: 1.25rem;
}

.search-field-wrap {
  display: grid;
  gap: 0.75rem;
}

.search-field-wrap label {
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.search-result-card {
  display: block;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.search-result-card:hover {
  border-color: var(--color-dark);
  transform: translateY(-2px);
}

.search-result-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-red);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-result-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.search-result-card p,
.search-empty {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.mobile-menu a {
  color: var(--header-text);
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--header-divider);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--color-red);
}

.hero-section {
  padding: 1rem 0 4.5rem;
}

.hero-frame {
  position: relative;
  height: clamp(540px, 78vh, 820px);
  overflow: hidden;
  border: 2px solid var(--color-dark);
  background: var(--color-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.35s ease;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.86) 0%, rgba(12, 12, 12, 0.45) 38%, rgba(12, 12, 12, 0.12) 60%, rgba(12, 12, 12, 0.44) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.08) 0%, rgba(15, 15, 15, 0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 44rem;
  padding: clamp(2rem, 5vw, 4.25rem);
  padding-right: clamp(2rem, 6vw, 5rem);
  color: var(--color-text-inverse);
}

.hero-tag {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--color-red);
  color: var(--color-text-inverse);
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 900;
  line-height: var(--display-title-line);
  letter-spacing: var(--display-title-track);
  text-wrap: balance;
}

.hero-content p {
  max-width: 36rem;
  margin: 0 0 2rem;
  font-size: clamp(0.5rem, 0.7vw, 0.59rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 0.25rem;
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-pagination {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.4rem;
}

.hero-pagination-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: var(--color-text-inverse);
  background: rgba(20, 20, 20, 0.2);
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-pagination-button:hover,
.hero-pagination-button.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-text-inverse);
}

.slider-button {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: var(--color-text-inverse);
  font-size: 2rem;
  line-height: 1;
  background: rgba(20, 20, 20, 0.2);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.slider-button:hover {
  background: var(--color-surface);
  color: var(--color-dark);
}

.hero-authors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 6cm;
  margin-top: 1.85rem;
}

.hero-author-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  transition: transform 0.2s ease;
}

.hero-author-card:hover {
  transform: translateY(-3px);
}

.hero-author-card img {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 999px;
  object-fit: cover;
}

.hero-author-meta {
  min-width: 0;
}

.hero-author-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-author-meta span {
  display: block;
  color: var(--color-text-soft);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-section {
  padding: 0 0 4.5rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading span {
  flex: 1;
  height: 2px;
  background: var(--color-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-dark);
}

.news-card-media,
.news-card-title {
  color: inherit;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.05rem 1rem 1rem;
}

.news-label {
  color: var(--color-red);
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 1.5vw, 1.58rem);
  font-weight: 700;
}

.news-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  min-height: 4.75rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.news-author {
  color: var(--color-text);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-card time {
  color: #787878;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.1rem;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.news-card-button:hover,
.news-card-button:focus-visible {
  background: var(--color-red);
  color: var(--color-text-inverse);
}

.section-action {
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
}

.empty-state {
  padding: 1.4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  margin-top: auto;
  background: var(--color-surface);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1.5rem 2rem;
  padding: 2rem 0 2.25rem;
}

.brand-footer {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.brand-footer .brand-logo {
  height: 2rem;
  max-width: 180px;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-nav a {
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-nav a:hover,
.hero-link:hover {
  color: var(--color-red);
}

html[data-theme="dark"] .site-footer {
  background: var(--color-dark);
  color: var(--color-text-inverse);
  border-top-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .footer-brand p,
html[data-theme="dark"] .footer-copy {
  color: rgba(255, 255, 255, 0.78);
}

html[data-theme="dark"] .footer-nav a {
  color: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .search-close {
  color: var(--color-text);
  border-color: var(--color-border);
}

.contact-main {
  padding-bottom: 4.5rem;
}

.page-main {
  padding-bottom: 4.5rem;
}

.category-page-section {
  padding-top: 1rem;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
}

.page-title {
  max-width: 62rem;
  border-left: 8px solid var(--color-red);
  padding-left: clamp(1rem, 2vw, 2rem);
}

.page-title h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.1vw, 2.95rem);
  font-weight: 900;
  text-transform: uppercase;
}

.page-title p {
  margin: 0;
  max-width: 48rem;
  color: var(--color-text-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.7;
}

.article-main {
  padding-bottom: 4.5rem;
}

.article-shell {
  padding-top: 2.5rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
  gap: 1.4rem;
  align-items: start;
}

.article-primary,
.article-sidebar {
  display: grid;
  gap: 1rem;
}

.article-panel,
.related-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.article-header {
  padding: 1.35rem 1.35rem 0;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--color-text-soft);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-breadcrumbs a:hover {
  color: var(--color-red);
}

.article-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.9vw, 3.85rem);
  font-weight: 900;
}

.article-summary {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.article-author-label,
.article-author-name {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-author-label {
  color: var(--color-red);
}

.article-author-name {
  color: var(--color-text);
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content {
  padding: 1.35rem;
}

.article-content p {
  margin: 0 0 1.1rem;
  color: var(--color-text);
  font-size: 1.04rem;
  line-height: 1.9;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 1.35rem 1.35rem;
}

.related-panel {
  padding: 1.2rem;
}

.related-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  gap: 0.85rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  color: inherit;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.mini-card-body span {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--color-red);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mini-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
}

.mini-card:hover h3 {
  color: var(--color-red);
}

.text-page {
  padding-top: 1rem;
}

.content-stack {
  display: grid;
  gap: 1.4rem;
}

.text-block {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.text-block h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
}

.text-block p,
.text-block li {
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.text-block ul {
  margin: 0;
  padding-left: 1.15rem;
}

.info-grid,
.ad-grid,
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.ad-card,
.job-card {
  padding: 1.4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.info-card strong,
.ad-card strong,
.job-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--color-red);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-card h3,
.ad-card h3,
.job-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.info-card p,
.ad-card p,
.job-card p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.contact-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem;
}

.contact-title {
  max-width: 60rem;
  border-left: 8px solid var(--color-red);
  padding-left: clamp(1rem, 2vw, 2rem);
}

.contact-title h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-title p {
  margin: 0;
  max-width: 44rem;
  color: var(--color-text-soft);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.contact-section {
  padding: 1rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.85fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.contact-form-card {
  min-height: 820px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--color-surface);
  border: 2px solid var(--color-dark);
}

.contact-form-card h2 {
  margin: 0 0 1.6rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--color-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
}

.contact-submit {
  min-width: 240px;
}

.form-feedback {
  margin: 0;
  color: var(--color-red-dark);
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-sidebar {
  display: grid;
  gap: 2rem;
}

.office-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-dark);
  background: var(--color-dark);
}

.office-card img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.office-card:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.office-card span {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.45rem;
  background: var(--color-red);
  color: var(--color-text-inverse);
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.detail-item {
  border-left: 4px solid var(--color-dark);
  padding-left: 1.4rem;
}

.detail-item strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-red);
  font-size: 0.95rem;
  font-weight: 700;
}

.detail-item p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.detail-item:last-child p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.social-card {
  padding: 1.65rem;
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

.social-card h3 {
  margin: 0 0 1.3rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links-header {
  gap: 0.75rem;
}

.social-links-header a {
  width: 52px;
  height: 52px;
  background: var(--color-red);
  border-color: transparent;
}

.social-links-header i {
  font-size: 1.15rem;
  line-height: 1;
}

.social-links-header a:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.social-links a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--color-text-inverse);
  border: 2px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1360px) {
  :root {
    --header-side-width: 300px;
  }

  .site-header .brand-logo {
    height: clamp(2.9rem, 3.55vw, 3.4rem);
    max-width: min(25vw, 260px);
  }

  .desktop-nav {
    gap: 0.45rem;
  }

  .desktop-nav a {
    font-size: 0.91rem;
    letter-spacing: 0.01em;
  }

  .button-small {
    min-height: 42px;
    padding: 0 0.8rem;
  }

  .header-social {
    display: none;
  }
}

@media (max-width: 1180px) {
  .button-small {
    min-height: 40px;
    padding: 0 0.7rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    min-height: auto;
  }

  .info-grid,
  .ad-grid,
  .career-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1240px) {
  .desktop-nav,
  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-frame {
    height: 72vh;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-modal {
    padding-top: 4rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--container-width));
  }

  .breaking-bar-inner {
    min-height: 44px;
    gap: 0.75rem;
  }

  .breaking-label {
    padding: 0 0.75rem;
    font-size: 0.72rem;
  }

  .breaking-item {
    gap: 0.6rem;
    padding-right: 1.35rem;
    font-size: 0.82rem;
  }

  .header-inner {
    min-height: 96px;
  }

  .site-header .brand-logo {
    height: 3.35rem;
    max-width: min(58vw, 280px);
  }

  .header-actions {
    gap: 0.45rem;
  }

  .mobile-menu-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .mobile-menu-footer .button {
    width: 100%;
  }

  .mobile-social {
    width: 100%;
  }

  .search-modal-header,
  .search-modal-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    padding-top: 0.75rem;
  }

  .hero-frame {
    height: 78vh;
  }

  .hero-authors {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    margin-top: 1.6rem;
  }

  .hero-author-card {
    width: min(100%, 320px);
    justify-content: flex-start;
  }

  .footer-inner {
    min-height: auto;
    justify-items: center;
    gap: 1.1rem;
    padding: 1.8rem 0 2rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-footer .brand-logo {
    height: 3rem;
    max-width: 270px;
  }

  .footer-nav {
    justify-content: center;
    gap: 0.9rem 1rem;
  }

  .hero-content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem 1.15rem 5.25rem;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-summary,
  .article-content p {
    font-size: 0.98rem;
  }

  .mini-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .hero-content h1 {
    font-size: clamp(1.25rem, 5.5vw, 2rem);
  }

  .hero-content p {
    font-size: 0.5rem;
    line-height: 1.6;
  }

  .hero-controls {
    right: 0.9rem;
    bottom: 0.9rem;
    gap: 0.55rem;
  }

  .hero-pagination {
    gap: 0.35rem;
    margin-right: 0.1rem;
  }

  .slider-button {
    width: 50px;
    height: 50px;
  }

  .hero-pagination-button {
    width: 38px;
    height: 38px;
  }

  .section-heading {
    gap: 0.9rem;
    align-items: flex-end;
  }

  .section-heading h2 {
    font-size: 2rem;
    white-space: normal;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card h3 {
    font-size: 1.72rem;
  }

  .news-card p {
    min-height: 0;
  }

  .news-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .contact-title h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .contact-form-card {
    padding: 1.2rem;
  }

  .contact-submit {
    min-width: 100%;
  }

  .social-card {
    padding: 1.25rem;
  }
}
