:root {
  --cnn-red: #e31e24;
  --cnn-blue: #0066cc;
  --cnn-dark: #1a1a1a;
  --cnn-header-bg: #1a1a2e;
  --cnn-text: #333;
  --cnn-gray: #666;
  --cnn-light-gray: #999;
  --cnn-border: #e0e0e0;
  --cnn-bg: #f8f8f8;
  --font-main: Helvetica, Arial, sans-serif;
  --main-font-size: 1.06rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--cnn-text);
  background: #fff;
  line-height: 1.6;
}
a {
  color: var(--cnn-blue);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  opacity: 0.85;
}
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  color: #1f2544;
  border-bottom: 1px solid #eee;
}
.app-header button {
  font: inherit;
}
.app-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.app-header__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1200px;
  min-height: 56px;
  margin: 0 auto;
  padding: 0 24px;
}
.app-header__content-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.app-header__content-main-menu {
  flex: 1;
  min-width: 0;
}
.main-menu__list,
.tools-menu {
  display: flex;
  align-items: center;
}
.main-menu__list {
  height: 56px;
  overflow: hidden;
}
.app-nav-item {
  flex: 0 0 auto;
}
.app-nav-item__link,
.app-nav-item__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: 0;
  background: none;
  color: #1f2544;
  cursor: pointer;
  text-decoration: none;
}
.app-nav-item__link,
.app-nav-item__cta {
  padding: 0 10px;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.app-header a:hover {
  opacity: 1;
}
.app-header .app-nav-item__link,
.app-header .app-nav-item__cta {
  transition: none;
}
.app-header .app-nav-item__link:hover,
.app-header .app-nav-item__cta:hover {
  background: none;
  border-bottom-color: transparent;
  opacity: 1;
  text-decoration: none;
}
.app-button {
  border-radius: 0;
}
.app-button--show-more svg {
  display: block;
}
.app-button--cta {
  --button-bg-color: transparent;
  --button-fg-color: #1f2544;
  background: transparent;
  border: 0;
  color: #1f2544;
}
.app-header__content-tools-menu {
  flex: 0 0 auto;
  margin-left: auto;
  padding-right: 0;
}
.tools-menu {
  gap: 12px;
  align-self: stretch;
}
.tools-menu > div {
  display: flex;
  align-items: center;
}
.tools-menu__tool,
.account-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #1f2544;
  cursor: pointer;
  text-decoration: none;
}
.app-header .tools-menu__tool:hover,
.app-header .account-trigger:hover {
  background: none;
  opacity: 1;
}
.tools-menu__tool__label {
  font-size: 13.6px;
  font-weight: 700;
  line-height: 1;
  display: none;
}
.account-trigger {
  padding: 0;
}
.account-trigger__icon {
  position: relative;
  display: inline-flex;
}
.account-trigger__icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  aspect-ratio: 1;
  line-height: 0;
  background-repeat: no-repeat;
  background-image: url("/img/a05f5b23a31ec167119d3e484ff932745c600109.svg");
}
@media (min-width: 320px) {
  .tools-menu__tool__label {
    display: block;
  }
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.app-hide--d {
  display: none;
}
.app-header__content-full-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  background: #fff;
  color: #1f2544;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid #d8d8e8;
}
.app-header__content-full-menu .full-menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}
.full-menu__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 22px;
}
.full-menu .app-nav-item__link {
  justify-content: flex-start;
  height: auto;
  padding: 6px 0;
  border: 0;
  color: #1f2544;
  font-size: 14px;
  line-height: 1.25;
  white-space: normal;
}
.app-header .full-menu .app-nav-item__link:hover {
  background: none;
  color: #1f2544;
}
.nav-item-group > .app-nav-item__link {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
}
.nav-item-group ul .app-nav-item__link {
  color: #1f2544;
  font-weight: 500;
}
@media (max-width: 768px) {
  .app-header__content {
    flex-wrap: wrap;
    gap: 0 10px;
    min-height: 96px;
    padding: 0 12px;
  }
  .app-header__content-main-menu {
    order: 3;
    flex: 0 0 calc(100% + 24px);
    margin: 0 -12px;
    overflow: hidden;
  }
  .main-menu__list {
    height: 40px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .main-menu__list::-webkit-scrollbar {
    display: none;
  }
  .app-nav-item__link,
  .app-nav-item__cta {
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }
  .tools-menu {
    margin-left: auto;
    gap: 8px;
  }
  .tools-menu__tool,
  .account-trigger {
    min-width: 0;
    padding: 0;
  }
  .tools-menu__tool__label {
    display: none;
  }
  .app-hide--d {
    display: list-item;
  }
  .app-hide--m {
    display: none;
  }
  .app-header__content-full-menu .full-menu {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 18px 16px;
  }
  .full-menu__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.main-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 10px 200px;
}
.main-content {
  min-width: 0;
}
.breadcrumb {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #1e4b9b;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: var(--cnn-light-gray);
  stroke-width: 2;
  fill: none;
}
.article-hero {
  margin-bottom: 12px;
}
.article-hero--lead {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.article-hero--lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 32%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}
.hero-title {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  max-width: calc(100% - 48px);
  font-size: 1.375rem;
  line-height: 1.27273;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.hero-lead {
  font-size: var(--main-font-size);
  line-height: 1.7;
  color: var(--cnn-text);
  margin-top: 16px;
}
.hero-source {
  font-size: 12px;
  color: var(--cnn-gray);
  margin-top: 8px;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cnn-border);
  margin-bottom: 24px;
}
.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}
.author-info {
  flex: 1;
}
.author-meta {
  font-size: 14px;
  color: var(--cnn-dark);
}
.author-meta a {
  color: var(--cnn-dark);
  font-weight: 500;
}
.author-date {
  font-size: 13px;
  color: var(--cnn-light-gray);
}
.share-icon {
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}
.share-icon svg {
  width: 24px;
  height: 24px;
}
.article-body {
  font-size: var(--main-font-size);
  line-height: 1.8;
  color: var(--cnn-text);
}
.article-body p {
  margin-bottom: 20px;
}
.article-body a {
  color: var(--cnn-blue);
  text-decoration: underline;
}
.article-body strong {
  font-weight: 600;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--cnn-dark);
  margin: 32px 0 16px;
}
.video-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cnn-dark);
  stroke-width: 2;
}
.video-badge svg polygon {
  fill: var(--cnn-dark);
  stroke: none;
}
.recommended-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--cnn-border);
}
.recommended-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.recommended-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recommended-item {
  display: flex;
  gap: 16px;
}
.recommended-image {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
}
.recommended-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommended-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recommended-item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
.recommended-item-title a {
  color: #1a1a1a;
}
.recommended-item-title a:hover {
  color: var(--cnn-blue);
  text-decoration: underline;
}
.recommended-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--cnn-gray);
}
.recommended-meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--cnn-gray);
  stroke-width: 2;
  fill: none;
}
.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--cnn-border);
}
.comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.comments-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--cnn-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comments-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cnn-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  padding: 0 8px;
}
.comments-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--cnn-gray);
}
.comments-sort select {
  font-family: inherit;
  font-size: 14px;
  color: var(--cnn-dark);
  border: 1px solid var(--cnn-border);
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  background: #fff url("/img/01e45869481e693249f21dea20b7374b98368112.svg")
    no-repeat right 8px center;
  -webkit-appearance: none;
  cursor: pointer;
}
.comment-form {
  margin-bottom: 32px;
  background: #f9f9fb;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eee;
}
.comment-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.comment-form-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cnn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comment-form-avatar svg {
  width: 22px;
  height: 22px;
  stroke: var(--cnn-light-gray);
  stroke-width: 1.5;
  fill: none;
}
.comment-form-info {
  font-size: 14px;
  color: var(--cnn-gray);
}
.comment-form-info a {
  color: var(--cnn-blue);
  font-weight: 600;
  cursor: pointer;
}
.comment-form textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid var(--cnn-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
  color: var(--cnn-dark);
  background: #fff;
  transition: border-color 0.2s;
}
.comment-form textarea:focus {
  outline: none;
  border-color: var(--cnn-blue);
}
.comment-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.btn-submit-comment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cnn-red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit-comment:hover {
  background: #c41920;
}
.btn-submit-comment svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comment-item {
  padding: 20px 0;
  border: 2px solid #eee;
  border-radius: 0.5rem;
  padding: 1rem;
}
.comment-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #e8e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-avatar.blue {
  background: #dce8f5;
  color: var(--cnn-blue);
}
.comment-avatar.green {
  background: #daf0e0;
  color: #2e8b57;
}
.comment-avatar.orange {
  background: #fde8d8;
  color: #d97706;
}
.comment-avatar.purple {
  background: #e8dff5;
  color: #7c3aed;
}
.comment-avatar.red {
  background: #fde2e2;
  color: var(--cnn-red);
}
.comment-avatar span {
  font-size: 14px;
  font-weight: 700;
}
.comment-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--cnn-dark);
}
.comment-date {
  font-size: 13px;
  color: var(--cnn-light-gray);
  margin-left: auto;
}
.comment-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cnn-text);
  margin-bottom: 12px;
  padding-left: 48px;
}
.comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 48px;
}
.comment-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--cnn-light-gray);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 4px 0;
  transition: color 0.15s;
}
.comment-action-btn:hover {
  color: var(--cnn-dark);
}
.comment-action-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.comment-action-btn .count {
  font-weight: 600;
}
.comment-reply-btn {
  font-size: 13px;
  color: var(--cnn-blue);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  padding: 4px 0;
}
.comment-reply-btn:hover {
  text-decoration: underline;
}
.comment-reply {
  margin-left: 48px;
  padding: 16px 0 0;
}
.comment-reply .comment-text,
.comment-reply .comment-actions {
  padding-left: 48px;
}
.comments-load-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid var(--cnn-border);
  border-radius: 8px;
  padding: 10px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--cnn-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-load-more:hover {
  border-color: var(--cnn-dark);
  background: #f5f5f5;
}
.btn-load-more svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.sidebar {
  position: sticky;
  top: 76px;
  height: fit-content;
  padding-left: 32px;
  border-left: 1px solid #e0e0e0;
}
.sidebar-section {
  margin-bottom: 32px;
}
.sidebar-title {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.sidebar-item img {
  width: 100px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sidebar-item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a1a1a;
}
.sidebar-item-title a {
  color: #1a1a1a;
}
.sidebar-item-title a:hover {
  color: var(--cnn-blue);
  text-decoration: none;
}
.comment-form {
  position: relative;
}
.reg-popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 32px 28px 28px;
  text-align: center;
  z-index: 50;
  width: 360px;
  max-width: 90%;
  animation: popupIn 0.25s ease;
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.reg-popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reg-popup-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--cnn-blue);
  stroke-width: 1.8;
  fill: none;
}
.reg-popup-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--cnn-text);
  margin-bottom: 20px;
}
.reg-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reg-btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--cnn-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.reg-btn-primary:hover {
  background: #c41920;
}
.reg-btn-secondary {
  width: 100%;
  padding: 12px;
  background: none;
  color: var(--cnn-blue);
  border: 2px solid var(--cnn-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.reg-btn-secondary:hover {
  border-color: var(--cnn-blue);
  background: #f0f6ff;
}
.reg-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--cnn-light-gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.reg-popup-close:hover {
  color: var(--cnn-dark);
}
.feedback_btn {
  border-radius: 6px 6px 0 0;
  display: inline-block;
  padding: 4px 10px;
  bottom: -1px;
  margin-left: 6%;
  cursor: pointer;
  color: #1f2544;
}
.feedback_btn > span {
  font-weight: bold;
  display: inline-block;
  padding-right: 4px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.branded--default {
  color: #1f2544;
}
.branded--nuzakelijk {
  color: #006cde;
}
.branded--nusport {
  color: #e00613;
}
.branded--nuentertainment {
  color: #c5117d;
}
.branded--nuoverig {
  color: #2a9198;
}
.app-footer {
  background: #fff;
  color: #1f2544;
  border-top: 1px solid #e8e8ec;
  font-family: inherit;
}
.app-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.app-footer__wrapper {
  max-width: 61.875rem;
  margin: 0 auto;
  padding: 20px 32px 32px;
}
.app-footer__main .app-footer__links {
  justify-content: space-between;
  display: flex;
}
.app-footer .app-nav-item__link {
  display: inline;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  font-weight: 500;
  white-space: normal;
  text-decoration: none;
  line-height: 1.55;
}
.app-footer .app-nav-item__link:hover {
  background: none;
  border-bottom-color: transparent;
  text-decoration: underline;
  opacity: 1;
}
.app-footer .app-nav-item--footer-header > .app-nav-item__link {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}
.app-footer .app-nav-item--footer .app-nav-item__link {
  margin-bottom: 10px;
  display: block;
  color: #1f2544;
  font-size: 0.85rem;
  font-weight: 500;
}
.app-footer__sub-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-nav-item--group > ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-follow-us {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
}
.app-follow-us__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  flex: 0 0 auto;
}
.app-follow-us nav {
  flex: 1 1 auto;
}
.app-follow-us__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.app-follow-us__badges li {
  display: flex;
}
.app-follow-us__badges a {
  display: flex;
  line-height: 0;
  text-decoration: none;
}
.app-follow-us__badges a:hover {
  opacity: 0.85;
}
.app-footer__editorials .app-footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}
.dpg-footer__wrapper {
  max-width: 61.875rem;
  margin: 0 auto;
  padding: 20px 32px 24px;
  border-top: 1px solid #e8e8ec;
}
.dpg-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.dpg-footer__logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dpg-footer__logo {
  flex: 0 0 auto;
  color: #1f2544;
}
.dpg-footer__logo-byline {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #878787;
}
.dpg-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.dpg-footer .app-nav-item__link {
  display: inline;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: #1f2544;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.dpg-footer .app-nav-item__link:hover {
  background: none;
  text-decoration: underline;
}
.dpg-footer__business-info-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
}
.dpg-footer__business-info,
.dpg-footer__copyright {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #5c5c6f;
}
@media (max-width: 1100px) {
  .app-footer__main .app-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sidebar {
    position: static;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 32px;
  }
  .sidebar-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sidebar-item {
    flex-direction: column;
  }
  .sidebar-item img {
    width: 100%;
    height: 120px;
  }
  .recommended-item {
    gap: 16px;
  }
  .recommended-image {
    width: 180px;
    height: 110px;
  }
}
@media (max-width: 768px) {
  .main-wrapper {
    padding: 16px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
  }
  .article-body {
    font-size: 16px;
  }
  .sidebar-list {
    grid-template-columns: 1fr;
  }
  .sidebar-item {
    flex-direction: row;
  }
  .sidebar-item img {
    width: 100px;
    height: 70px;
  }
  .recommended-list {
    gap: 20px;
  }
  .recommended-image {
    width: 140px;
    height: 90px;
  }
  .recommended-item-title {
    font-size: 16px;
  }
  .app-footer__wrapper {
    padding: 32px 16px 24px;
  }
  .app-footer__main .app-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
  .app-footer .app-footer__editorials.app-hide--d {
    display: block;
  }
  .dpg-footer__wrapper {
    padding: 20px 16px;
  }
  .dpg-footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .dpg-footer__business-info-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .comment-text,
  .comment-actions {
    padding-left: 0;
  }
  .comment-reply {
    margin-left: 24px;
  }
  .comment-reply .comment-text,
  .comment-reply .comment-actions {
    padding-left: 0;
  }
  .comments-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .breadcrumb {
    font-size: 12px;
    gap: 4px;
  }
  .hero-title {
    font-size: 1.125rem;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-source {
    font-size: 11px;
  }
  .author-row {
    padding: 12px 0;
    gap: 10px;
  }
  .author-avatar {
    width: 36px;
    height: 36px;
  }
  .author-meta {
    font-size: 13px;
  }
  .author-date {
    font-size: 12px;
  }
  .article-body {
    font-size: 15px;
    line-height: 1.7;
  }
  .article-body h2 {
    font-size: 20px;
  }
  .sidebar-title,
  .recommended-title {
    font-size: 22px;
  }
  .sidebar-item {
    flex-direction: row;
    gap: 12px;
  }
  .sidebar-item img {
    width: 90px;
    height: 60px;
  }
  .sidebar-item-title {
    font-size: 14px;
  }
  .recommended-item {
    flex-direction: column;
    gap: 12px;
  }
  .recommended-image {
    width: 100%;
    height: 180px;
  }
  .recommended-item-title {
    font-size: 17px;
  }
  .app-footer__main .app-footer__links {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  .hero-title {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
  .hero-lead {
    font-size: 14px;
  }
  .article-body {
    font-size: 14px;
  }
}
.reg-form-wrapp {
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
}
