@font-face {
  font-family: "CDCRoboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CDCRoboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CDCRoboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CDCPlay";
  src: url("../fonts/Play-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fff;
  --ink: #151515;
  --muted: #666;
  --line: #e2e2e2;
  --soft: #f7f7f5;
  --panel: #050505;
  --panel-2: #202020;
  --accent: #ff6600;
  --link: #e95a22;
  --max: 1584px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: "CDCRoboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 0;
}

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

a:hover,
a:focus {
  color: var(--link);
}

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

button,
input {
  font: inherit;
}

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

.content-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  color: #5b5b5b;
  background: #fff;
}

.header-brand {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--panel);
  line-height: 0;
}

.brand-link {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.brand-link img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.primary-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.primary-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 38px);
  width: min(960px, calc(100% - 64px));
  min-height: 58px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 18px 0 17px;
  color: #626262;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav a.is-active,
.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--link);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 23px;
  margin: 5px auto;
  background: #333;
}

.featured-section {
  margin-top: 52px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: clamp(330px, 26vw, 430px) clamp(215px, 16vw, 260px);
  gap: 2px;
  background: #fff;
}

.featured-grid > div {
  min-width: 0;
}

.featured-large {
  grid-column: span 3;
}

.featured-small {
  grid-column: span 2;
}

.featured-large .article-card-overlay h3 {
  max-width: 92%;
  font-size: 24px;
}

.featured-small .article-card-overlay .card-body {
  padding: 66px 24px 23px;
}

.featured-small .article-card-overlay h3 {
  font-size: 19px;
}

.recommended-section {
  margin-top: 34px;
}

.recommended-section > h2,
.main-feed > h1 {
  margin: 0 0 18px;
  color: #2a2a2a;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.recommended-section > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 17px;
}

.recommended-section > h2::before,
.recommended-section > h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: var(--accent);
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.recommended-grid .article-card {
  min-height: 205px;
}

.site-columns {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.1fr) minmax(220px, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 38px;
}

.sidebar {
  position: sticky;
  top: 14px;
  display: grid;
  gap: 22px;
  font-size: 14px;
}

.sidebar-widget {
  border-top: 2px solid var(--panel);
  padding-top: 10px;
}

.sidebar-widget-promo {
  border: 1px solid var(--line);
  padding: 0;
  background: #fff;
}

.sidebar-widget h2 {
  margin: 0 0 12px;
  color: #2b2b2b;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.sidebar-widget-promo h2 {
  margin: 0;
  padding: 10px 12px;
  background: #202020;
  color: #fff;
  font-size: 14px;
}

.sidebar-widget-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 13px;
}

.sidebar-widget-logo img {
  display: block;
  width: 108px;
  max-width: 72%;
  height: auto;
}

.sidebar-promo-card {
  display: grid;
  gap: 10px;
  color: #222;
}

.sidebar-promo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.sidebar-promo-text {
  padding: 0 12px;
  color: #444;
  font-size: 13px;
  line-height: 1.45;
}

.sidebar-promo-action {
  display: inline-flex;
  width: fit-content;
  margin: 0 12px 12px;
  border-bottom: 2px solid var(--accent);
  color: #111;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.link-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  color: #333;
  font-weight: 500;
}

.link-list a:hover,
.link-list a:focus {
  color: var(--link);
}

.compact-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.main-feed {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.events-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.events-head {
  border-top: 2px solid var(--panel);
  padding-top: 14px;
}

.events-head h1 {
  margin: 0;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.events-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.events-kicker {
  margin: 0 0 8px !important;
  color: var(--link) !important;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.1 !important;
  text-transform: uppercase;
}

.events-grid {
  display: grid;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  background: #fff;
}

.event-card-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 214px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .42)),
    linear-gradient(135deg, #9b9b9b, #6f6f6f);
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-media span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.event-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 18px 20px;
  overflow-wrap: anywhere;
}

.event-card-body h2 {
  margin: 0;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.event-card-body h2 a:hover,
.event-card-body h2 a:focus {
  color: var(--link);
}

.event-card-excerpt {
  margin: 0;
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.article-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
}

.article-card-full {
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}

.card-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 180px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .42)),
    linear-gradient(135deg, #a1a1a1, #777 58%, #4e4e4e);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media img.placeholder-cover-image,
.event-card-media img.placeholder-cover-image {
  object-fit: contain;
  padding: clamp(18px, 5vw, 44px);
  background: #050505;
}

.article-card-full .card-media {
  height: 353px;
}

.article-card-overlay {
  height: 100%;
  min-height: inherit;
}

.article-card-overlay .card-media {
  height: 100%;
  min-height: inherit;
}

.article-card-overlay .card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 72px 28px 26px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .92));
}

.article-card-overlay h3 {
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}

.article-card-compact {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 11px;
  max-width: 100%;
}

.article-card-compact .card-media {
  min-height: 63px;
  height: 63px;
}

.article-card-compact .card-media img.placeholder-cover-image {
  padding: 10px;
}

.article-card-compact .card-body {
  min-width: 0;
  padding: 0;
}

.category-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  padding: 3px 7px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.card-body {
  display: grid;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 18px 0 22px;
}

.card-body h3 {
  margin: 0;
  color: #181818;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.card-body h3 a {
  overflow-wrap: anywhere;
}

.article-card-overlay .card-body h3,
.article-card-overlay .card-body h3 a {
  color: #fff;
}

.article-card-compact h3 {
  font-size: 13px;
  line-height: 1.24;
  word-break: break-word;
}

.card-body p {
  margin: 0;
}

.card-body > p:not(.meta) {
  color: #555;
  font-size: 15px;
  line-height: 1.55;
}

.card-excerpt,
.event-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.meta-author a,
.article-author-link {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.meta-author a:hover,
.meta-author a:focus-visible,
.article-author-link:hover,
.article-author-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.meta-icons {
  gap: 8px 10px;
}

.meta-icons .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.meta-icons .meta-item::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: currentColor;
  opacity: .78;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.meta-icons .meta-author::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5Z'/%3E%3C/svg%3E");
}

.meta-icons .meta-date::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3H7V2Zm8 0h2v3h-2V2ZM4 5h16a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 6v9h16v-9H4Zm3 2h3v3H7v-3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3H7V2Zm8 0h2v3h-2V2ZM4 5h16a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 6v9h16v-9H4Zm3 2h3v3H7v-3Z'/%3E%3C/svg%3E");
}

.meta-icons .meta-comments::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm3 5v2h10V9H7Zm0 4v2h7v-2H7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm3 5v2h10V9H7Zm0 4v2h7v-2H7Z'/%3E%3C/svg%3E");
}

.meta-icons .meta-views::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5c5.8 0 9.5 5.1 10 6.7a1 1 0 0 1 0 .6C21.5 13.9 17.8 19 12 19S2.5 13.9 2 12.3a1 1 0 0 1 0-.6C2.5 10.1 6.2 5 12 5Zm0 3.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm0 2a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5c5.8 0 9.5 5.1 10 6.7a1 1 0 0 1 0 .6C21.5 13.9 17.8 19 12 19S2.5 13.9 2 12.3a1 1 0 0 1 0-.6C2.5 10.1 6.2 5 12 5Zm0 3.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm0 2a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z'/%3E%3C/svg%3E");
}

.article-card-overlay .meta {
  color: #f0f0f0;
}

.article-detail,
.static-page {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.article-head {
  min-width: 0;
}

.article-head h1,
.static-page h1 {
  margin: 0;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.article-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.article-category-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border: 1px solid #f0b08d;
  padding: 4px 9px;
  color: #b84310;
  background: #fff7f2;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.article-category-chips a:hover,
.article-category-chips a:focus {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.article-subtitle {
  margin: 10px 0 0;
  color: #555;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-meta-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-view-counter {
  white-space: nowrap;
}

.category-line {
  margin: 0 0 9px;
  color: var(--link);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-hero {
  margin: 0;
}

.article-hero img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  background: var(--soft);
}

.article-hero img.placeholder-cover-image {
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: contain;
  padding: clamp(26px, 6vw, 72px);
  background: #050505;
}

.image-placeholder {
  min-height: 353px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .38)),
    linear-gradient(135deg, #a4a4a4, #747474);
}

.article-hero figcaption {
  padding-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.article-content {
  min-width: 0;
  color: #222;
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: normal;
}

.article-content > * {
  margin-top: 0;
  margin-bottom: 16px;
}

.article-content p,
.static-page p {
  margin: 0 0 16px;
}

.article-content > *:last-child,
.static-page > *:last-child {
  margin-bottom: 0;
}

.article-content a,
.comment-body a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content blockquote {
  position: relative;
  min-width: 0;
  max-width: 100%;
  margin: 28px 0;
  border: 1px solid #eadfd8;
  border-left: 5px solid var(--accent);
  border-radius: 2px;
  padding: 24px 28px 22px 64px;
  color: #292929;
  background: linear-gradient(135deg, #fff7f2 0%, #fff 72%);
  box-shadow: 0 12px 28px rgba(32, 22, 16, .06);
  font-size: 1em;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.article-content .cdc-text-justify {
  text-align: justify;
}

.article-content blockquote::before {
  position: absolute;
  top: 9px;
  left: 19px;
  color: var(--accent);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  opacity: .52;
  pointer-events: none;
}

.article-content blockquote > :first-child {
  margin-top: 0;
}

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

.article-content blockquote > p {
  margin-bottom: 12px;
}

.article-content blockquote strong {
  color: #171717;
}

.cdc-embed {
  width: 100%;
  margin: 24px 0;
}

.cdc-embed-youtube,
.cdc-embed-rumble,
.cdc-embed-odysee,
.cdc-embed-bitchute {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.cdc-embed-facebook {
  width: min(100%, 500px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
}

.cdc-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.topics-page {
  align-content: start;
  gap: 24px;
}

.topics-hero {
  border-top: 3px solid #151515;
  padding-top: 18px;
}

.topics-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.topics-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 198px;
  border: 1px solid var(--line);
  border-top: 4px solid #151515;
  border-radius: 6px;
  padding: 18px;
  background: #fff;
  color: #181818;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .045);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.topic-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: .78;
}

.topic-card:hover,
.topic-card:focus {
  border-color: #cfcfcf;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.topic-card-index {
  color: #a0a0a0;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.topic-card-title {
  color: #141414;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.topic-card-description {
  color: #565656;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.topic-card-meta {
  align-self: end;
  padding-right: 52px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-page {
  align-content: start;
  gap: 22px;
}

.contact-hero {
  border-top: 3px solid #151515;
  padding-top: 18px;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 14px;
}

.contact-card,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .045);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 20px;
}

.contact-card-primary {
  border-top: 4px solid #151515;
}

.contact-card-label {
  color: #858585;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card h2,
.contact-section h2 {
  margin: 0;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.contact-card p,
.contact-section p {
  margin: 0;
  color: #565656;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.contact-button,
.contact-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 5px;
  padding: 10px 14px;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.contact-button-primary {
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
}

.contact-button-primary:hover,
.contact-button-primary:focus {
  color: #fff;
  background: #d84d16;
}

.contact-button-secondary {
  border: 1px solid #d6d6d6;
  color: #171717;
  background: #fff;
}

.contact-button-secondary:hover,
.contact-button-secondary:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-email-link {
  justify-self: start;
  border: 1px solid #202020;
  color: #171717;
  background: var(--soft);
  text-transform: none;
  overflow-wrap: anywhere;
}

.contact-email-link:hover,
.contact-email-link:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-section {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.contact-note {
  border-left: 4px solid var(--accent);
  background: #fffaf6;
}

.contact-section-head {
  display: grid;
  gap: 2px;
}

.telegram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.telegram-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  min-width: 0;
  min-height: 184px;
  border: 1px solid #d8e5f5;
  border-radius: 6px;
  padding: 16px;
  color: #152033;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.telegram-card:hover,
.telegram-card:focus {
  border-color: #2c86d5;
  color: #152033;
  box-shadow: 0 14px 30px rgba(44, 134, 213, .13);
  transform: translateY(-2px);
}

.telegram-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2c86d5;
}

.telegram-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 4.3 18.5 20c-.2 1.1-.9 1.4-1.8.9l-5-3.7-2.4 2.3c-.3.3-.5.5-1 .5l.4-5.1L18 6.5c.4-.4-.1-.6-.6-.3L5.8 13.5.8 12c-1.1-.3-1.1-1.1.2-1.6L20.5 2.9c.9-.3 1.7.2 1.2 1.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 4.3 18.5 20c-.2 1.1-.9 1.4-1.8.9l-5-3.7-2.4 2.3c-.3.3-.5.5-1 .5l.4-5.1L18 6.5c.4-.4-.1-.6-.6-.3L5.8 13.5.8 12c-1.1-.3-1.1-1.1.2-1.6L20.5 2.9c.9-.3 1.7.2 1.2 1.4Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 20px 20px;
  mask-size: 20px 20px;
}

.telegram-card-title {
  color: #141414;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.telegram-card-description {
  color: #526174;
  font-size: 14px;
  line-height: 1.45;
}

.telegram-card-url {
  align-self: end;
  color: #2c86d5;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.access-page {
  align-content: start;
  gap: 22px;
}

.access-hero {
  border-top: 3px solid #151515;
  padding-top: 18px;
}

.access-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.access-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}

.access-guidance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.access-card,
.access-cta {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .045);
}

.access-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 20px;
}

.access-card-primary {
  border-top: 4px solid #151515;
}

.access-card-label {
  color: #858585;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.access-card h2,
.access-cta h2 {
  margin: 0;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.access-card p,
.access-cta p {
  margin: 0;
  color: #565656;
  font-size: 15px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.access-inline-link {
  justify-self: start;
  color: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.access-inline-link:hover,
.access-inline-link:focus {
  color: #151515;
}

.access-cta {
  display: grid;
  gap: 12px;
  border-left: 4px solid var(--accent);
  padding: 22px;
  background: #fffaf6;
}

.access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  padding: 12px 18px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.access-button:hover,
.access-button:focus {
  color: #fff;
  background: #d84d16;
}

.page-rivoluzione .article-detail {
  min-width: 0;
}

.rivoluzione-lead {
  margin-bottom: 22px;
  color: #333;
  font-size: 18px;
  line-height: 1.55;
}

.rivoluzione-section {
  margin: 30px 0;
}

.rivoluzione-section h2,
.rivoluzione-section h3 {
  margin: 0 0 14px;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.rivoluzione-section h2 {
  font-size: 23px;
}

.rivoluzione-section h3 {
  font-size: 18px;
}

.rivoluzione-manifesto {
  margin: 26px 0;
}

.rivoluzione-manifesto img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--soft);
}

.rivoluzione-info-panel {
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  background: var(--soft);
}

.rivoluzione-info-panel p {
  margin: 0;
}

.rivoluzione-credit-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rivoluzione-clips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rivoluzione-clips .cdc-embed {
  margin: 0;
}

.comments-preview,
.search-panel,
.empty-state {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--soft);
}

.comment-success,
.comment-alert {
  margin: 0 0 16px;
  border-left: 4px solid #16834a;
  padding: 10px 12px;
  background: #eef8f1;
  color: #145c35;
}

.comment-alert {
  border-left-color: #b42318;
  background: #fff0ee;
  color: #8f1d13;
}

.comment-form {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.comment-form label {
  display: grid;
  gap: 7px;
  color: #222;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.comment-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
}

.comment-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(224, 75, 26, .16);
  outline-offset: 1px;
}

.comment-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.comment-reply-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  border-left: 3px solid var(--accent);
  padding: 10px 12px;
  color: #222;
  background: #fff4ee;
  font-size: 14px;
}

.comment-reply-context[hidden] {
  display: none;
}

.comment-form .comment-reply-context button {
  border: 0;
  padding: 3px 0;
  color: #8f2e0b;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.comment-form .comment-reply-context button:hover,
.comment-form .comment-reply-context button:focus {
  color: #5f1c05;
  background: transparent;
}

.comment-form button,
.comment-login-link {
  justify-self: start;
  border: 0;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.comment-form button:hover,
.comment-login-link:hover,
.comment-form button:focus,
.comment-login-link:focus {
  background: #b84310;
}

.comment-auth-actions,
.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.registration-secondary-link {
  background: #555;
}

.registration-secondary-link:hover,
.registration-secondary-link:focus {
  background: #333;
}

.registration-recovery-box {
  display: grid;
  gap: 10px;
}

.registration-recovery-box p {
  margin: 0;
}

.registration-recovery-box form {
  margin: 0;
}

.registration-recovery-box button {
  border: 0;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.registration-recovery-box button:hover,
.registration-recovery-box button:focus {
  background: #b84310;
}

.registration-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px) 0;
}

.registration-panel {
  border-top: 3px solid var(--accent);
  background: #fff;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.registration-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.registration-panel h1 {
  margin: 0 0 10px;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  text-transform: uppercase;
}

.registration-panel > p {
  max-width: 720px;
}

.registration-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.registration-field-wide {
  grid-column: 1 / -1;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="password"] {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 11px 12px;
  font-size: 15px;
}

.registration-form input:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(224, 75, 26, .16);
  outline-offset: 1px;
}

.registration-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: start;
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--soft);
  text-transform: none !important;
}

.registration-check input {
  margin-top: 2px;
  accent-color: var(--accent);
}

.registration-muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .registration-form-grid {
    grid-template-columns: 1fr;
  }
}

.not-found-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  border-top: 2px solid var(--panel);
  padding: clamp(28px, 5vw, 46px) clamp(20px, 4vw, 34px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, var(--soft) 100%);
}

.not-found-kicker {
  margin: 0;
  color: var(--link);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.not-found-panel h1 {
  margin: 0;
  color: #171717;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.not-found-copy {
  max-width: 680px;
  margin: 0;
  color: #444;
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.not-found-search {
  display: grid;
  gap: 9px;
  max-width: 650px;
  margin-top: 4px;
}

.not-found-search label {
  color: #222;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.not-found-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.not-found-search input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
}

.not-found-search button {
  border: 1px solid var(--accent);
  padding: 10px 17px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.not-found-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 9px 13px;
  color: #333;
  background: #fff;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.not-found-actions a:first-child {
  border-color: var(--panel);
  color: #fff;
  background: var(--panel);
}

.not-found-actions a:hover,
.not-found-actions a:focus-visible,
.not-found-search button:hover,
.not-found-search button:focus-visible {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.pagination-nav {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 8px 0 6px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.pagination-summary {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-link,
.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  color: #333;
  background: #fff;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.pagination-arrow {
  min-width: 92px;
}

.pagination-link:hover,
.pagination-link:focus {
  border-color: var(--accent);
  color: var(--link);
}

.pagination-link.is-current {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.pagination-ellipsis {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
}

.comments-preview h2,
.search-panel label,
.main-feed h2 {
  margin: 0 0 12px;
  color: #222;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.comments-box {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.comments-disclosure {
  margin-top: 14px;
}

.comments-disclosure > summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--accent);
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.comments-disclosure > summary::-webkit-details-marker {
  display: none;
}

.comments-disclosure > summary:hover,
.comments-disclosure > summary:focus-visible {
  background: #b84310;
}

.comments-toggle-count {
  border-left: 1px solid rgba(255, 255, 255, .42);
  padding-left: 9px;
  font-size: 11px;
  font-weight: 600;
}

.comment-thread-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-thread {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.comment-thread + .comment-thread {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.comment-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-item {
  margin-left: min(calc(var(--comment-depth, 0) * 18px), 120px);
  border-left: 3px solid var(--line);
  padding: 12px 14px;
  background: #fff;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.comment-meta strong {
  color: #222;
}

.comment-body {
  color: #222;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.comment-body p {
  margin: 0 0 10px;
}

.comment-body p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.comment-reply-button {
  border: 1px solid #d4d8de;
  padding: 5px 9px;
  color: #30343a;
  background: #f7f8fa;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.comment-reply-button:hover,
.comment-reply-button:focus,
.comment-reply-button[aria-pressed="true"] {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.comment-page-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.comments-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.comment-load-more,
.comment-latest-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--accent);
  padding: 8px 12px;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.comment-load-more {
  color: #fff;
  background: var(--accent);
}

.comment-latest-link {
  color: var(--accent);
  background: #fff;
}

.comment-load-more:hover,
.comment-load-more:focus,
.comment-load-more[aria-busy="true"] {
  color: #fff;
  background: #b84310;
}

.comment-latest-link:hover,
.comment-latest-link:focus {
  color: #fff;
  background: var(--accent);
}

.comment-load-more[aria-busy="true"] {
  cursor: wait;
  pointer-events: none;
}

.comment-pagination-error {
  margin: 10px 0 0;
  color: #8f1d13;
  font-size: 13px;
}

.comment-pagination-error[hidden] {
  display: none;
}

.search-fields {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) minmax(104px, 0.75fr) minmax(126px, 0.85fr) minmax(180px, 1.25fr);
  gap: 12px;
  align-items: end;
}

.search-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.search-panel .search-field label {
  margin: 0;
  font-size: 12px;
  line-height: 1.1;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.search-panel select {
  min-width: 0;
  cursor: pointer;
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.search-panel button,
.comments-preview button {
  border: 1px solid var(--accent);
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.search-reset {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  border: 1px solid var(--line);
  padding: 9px 13px;
  color: #333;
  background: #fff;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 16px;
  padding: 0;
  list-style: none;
}

.search-active-filters li {
  border: 1px solid var(--line);
  padding: 6px 10px;
  color: #333;
  background: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.site-footer {
  margin-top: 52px;
  padding: 30px 20px;
  color: #e7e7e7;
  background: var(--panel);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  width: min(var(--max), 100%);
  margin: 0 auto 22px;
  padding: 13px 16px;
  background: #4f4f4f;
  font-family: "CDCPlay", Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav a {
  color: #f3f3f3;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ff8a3d;
}

.footer-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 34px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 12px;
  line-height: 1.55;
}

.footer-copy p {
  margin: 0 0 6px;
}

.footer-copy a {
  color: #f15a24;
  text-decoration: none;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: #ff8a3d;
  text-decoration: underline;
}

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

.footer-license-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-license-badge img {
  display: block;
}

.site-popup-card {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-left: 4px solid #b34620;
  border-radius: 8px;
  padding: 18px 46px 18px 18px;
  color: #222;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.site-popup-card[hidden] {
  display: none;
}

.site-popup-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.site-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: #555;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-popup-close:hover,
.site-popup-close:focus-visible {
  color: #111;
  background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1180px) {
  .primary-nav ul {
    justify-content: center;
    width: min(920px, calc(100% - 40px));
    gap: 20px 28px;
  }

  .primary-nav a {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav ul {
    display: none;
    width: 100%;
    min-height: 0;
    padding-bottom: 10px;
  }

  .primary-nav ul.is-open {
    display: grid;
    gap: 0;
  }

  .primary-nav a {
    padding: 12px 20px;
    text-align: center;
  }

  .featured-grid,
  .recommended-grid {
    grid-template-columns: 1fr;
  }

  .site-columns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .featured-grid {
    grid-template-rows: none;
    gap: 12px;
  }

  .featured-large,
  .featured-small {
    grid-column: auto;
  }

  .article-card-overlay .card-media,
  .featured-grid .card-media,
  .recommended-grid .card-media {
    height: 230px;
  }

  .sidebar {
    position: static;
  }

  .sidebar-left {
    order: 2;
  }

  .main-feed,
  .article-detail,
  .static-page,
  .events-main {
    order: 1;
  }

  .sidebar-right {
    order: 3;
  }

  .rivoluzione-clips {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .access-guidance {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header-brand,
  .brand-link {
    width: 100%;
    max-width: 100%;
  }

  .brand-link img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .content-wrap {
    width: min(calc(100% - 24px), var(--max));
    max-width: calc(100% - 24px);
  }

  .search-fields,
  .not-found-search-row,
  .footer-copy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-popup-card {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    max-width: 420px;
  }

  .search-panel input,
  .search-panel select {
    min-width: 0;
    width: 100%;
  }

  .article-card-full .card-media,
  .image-placeholder {
    height: auto;
    min-height: 220px;
  }

  .article-card-full,
  .article-card-full .card-body,
  .article-card-full .card-body h3,
  .article-card-full .card-body h3 a,
  .article-card-full .card-excerpt {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-card-full .card-body {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    padding-right: 28px;
  }

  .article-card-full .card-excerpt {
    display: block;
    overflow: visible;
    -webkit-line-clamp: initial;
  }

  .article-card-full .meta-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
  }

  .article-card-full .meta-icons .meta-item {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .article-card-overlay .card-media,
  .featured-grid .card-media,
  .recommended-grid .card-media {
    height: clamp(255px, 58vw, 300px);
  }

  .article-card-overlay .card-body {
    width: 100%;
    max-width: 100%;
    padding: 42px 28px 20px;
  }

  .featured-large .article-card-overlay h3 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.15;
  }

  .featured-small .article-card-overlay .card-body {
    padding: 42px 24px 20px;
  }

  .article-head h1,
  .static-page h1,
  .events-head h1 {
    font-size: 27px;
  }

  .article-content blockquote {
    margin: 22px 0;
    border-left-width: 4px;
    padding: 20px 16px 18px 46px;
    font-size: 16px;
    line-height: 1.65;
    box-shadow: 0 8px 20px rgba(32, 22, 16, .05);
  }

  .article-content blockquote::before {
    top: 8px;
    left: 12px;
    font-size: 42px;
  }

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

  .contact-card,
  .contact-section,
  .access-card,
  .access-cta {
    padding: 16px;
  }

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

  .contact-button,
  .contact-email-link,
  .access-button {
    width: 100%;
    justify-self: stretch;
  }

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

  .topic-card {
    min-height: 176px;
    padding: 16px;
  }

  .topic-card-title {
    font-size: 20px;
  }

  .not-found-panel {
    gap: 16px;
    padding: 26px 20px;
  }

  .not-found-panel h1 {
    font-size: 29px;
    line-height: 1.12;
  }

  .not-found-copy {
    max-width: 29ch;
    font-size: 16px;
    line-height: 1.55;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card-media {
    min-height: 220px;
  }

  .event-card-body {
    padding: 16px;
  }

  .event-card .meta {
    gap: 7px 10px;
    font-size: 12px;
  }

  .recommended-section > h2::before,
  .recommended-section > h2::after {
    width: 42px;
  }

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

  .comments-disclosure > summary {
    width: 100%;
    justify-content: space-between;
  }

  .comment-item {
    margin-left: min(calc(var(--comment-depth, 0) * 8px), 48px);
    padding: 11px 10px;
  }

  .comments-pagination {
    display: grid;
    grid-template-columns: 1fr;
  }

  .comment-load-more,
  .comment-latest-link {
    width: 100%;
  }

  .pagination-nav {
    justify-items: stretch;
  }

  .pagination-list {
    justify-content: flex-start;
  }

  .pagination-link,
  .pagination-ellipsis {
    min-width: 32px;
    min-height: 32px;
    padding: 6px 9px;
  }
}
