: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:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: calc(50% - 20px);
}
body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--cnn-text);
  background: #d5dde5;
  line-height: 1.6;
}
a {
  color: var(--cnn-blue);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  opacity: 0.85;
}
.page-container {
  background: #fff;
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header {
  background: linear-gradient(180deg, #1a3a7a 0%, #2a6cb8 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  gap: 24px;
}
.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger-menu span {
  display: block;
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.main-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}
.main-nav a:hover {
  text-decoration: none;
  border-bottom-color: var(--cnn-red);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon {
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.header-icon:hover svg {
  stroke: rgba(255, 255, 255, 0.8);
}
.btn-live {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cnn-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-live:hover {
  background: #c41a1f;
  text-decoration: none;
}
.btn-live .live-icon {
  width: 20px;
  height: 20px;
}
.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
.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;
}
.hero-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cnn-dark);
  margin-bottom: 20px;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.hero-lead {
  font-size: 17px;
  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: 40px;
  height: 40px;
  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: 17px;
  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("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    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: 0;
}
.comment-item {
  padding: 20px 0;
  border-top: 1px solid #eee;
}
.comment-item:first-child {
  border-top: none;
  padding-top: 0;
}
.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);
}
.footer {
  background: #1a2744;
  color: #fff;
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-topics {
  text-align: center;
  margin-bottom: 32px;
}
.footer-topics-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-topics-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  line-height: 1.8;
}
.footer-topics-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-topics-links a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-search {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.footer-search-box {
  display: flex;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}
.footer-search-box input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 15px;
  outline: none;
  color: #333;
}
.footer-search-box button {
  background: #fff;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
}
.footer-search-box button svg {
  width: 20px;
  height: 20px;
  stroke: #1e4b9b;
  stroke-width: 2;
  fill: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-links-columns {
  display: flex;
  gap: 80px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-links-col a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-apps {
  display: flex;
  gap: 12px;
}
.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.app-badge:hover {
  text-decoration: none;
  opacity: 0.9;
}
.app-badge svg {
  width: 20px;
  height: 20px;
}
.app-store {
  background: #000;
  color: #fff;
}
.google-play {
  background: #fff;
  color: #333;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.prima-plus {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.prima-plus span {
  background: linear-gradient(135deg, #ff6b9d, #ffa07a, #87ceeb, #98fb98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
@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;
  }
  .main-nav {
    display: none;
  }
  .header-right {
    margin-left: auto;
  }
  .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) {
  .header-inner {
    padding: 0 16px;
    height: 56px;
    gap: 12px;
  }
  .burger-menu span {
    background: #8fb8e8;
  }
  .main-nav {
    display: none;
  }
  .logo-img {
    height: 36px;
  }
  .header-right {
    margin-left: auto;
    gap: 8px;
  }
  .header-icon svg {
    stroke: #8fb8e8;
  }
  .btn-live {
    padding: 8px 12px;
    border-radius: 8px;
  }
  .btn-live span {
    display: inline;
    font-size: 13px;
  }
  .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;
  }
  .footer {
    padding: 32px 16px;
  }
  .footer-topics-links {
    gap: 8px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .footer-right {
    align-items: center;
    width: 100%;
  }
  .footer-links-columns {
    width: 100%;
  }
  .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) {
  .header-inner {
    padding: 0 12px;
    gap: 8px;
  }
  .logo-img {
    height: 32px;
  }
  .burger-menu span {
    width: 20px;
  }
  .header-icon svg {
    width: 22px;
    height: 22px;
  }
  .btn-live {
    padding: 8px 10px;
    border-radius: 6px;
  }
  .btn-live span {
    font-size: 12px;
  }
  .breadcrumb {
    font-size: 12px;
    gap: 4px;
  }
  .hero-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .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;
  }
  .footer-topics-title {
    font-size: 16px;
  }
  .footer-topics-links {
    font-size: 13px;
  }
  .footer-search-box input {
    padding: 12px 16px;
    font-size: 14px;
  }
  .footer-links-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .footer-links-col {
    gap: 12px;
  }
  .footer-links-col a {
    font-size: 14px;
  }
  .footer-apps {
    flex-direction: column;
    width: 100%;
  }
  .app-badge {
    justify-content: center;
    width: 100%;
  }
  .footer-brand {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .prima-plus {
    font-size: 24px;
  }
  .footer-right {
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .hero-title {
    font-size: 22px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .article-body {
    font-size: 14px;
  }
}
/* popup css*/
.page-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
}
.page-popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.page-popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.page-popup.active .page-overlay {
  opacity: 0.5;
  background: #161616;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.page-popup .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.page-popup .btn-close span {
  height: 25px;
  width: 25px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-popup .btn-close span:before,
.page-popup .btn-close span:after {
  content: "";
  height: 2px;
  width: 25px;
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff;
}
.page-popup .btn-close.dark span:before,
.page-popup .btn-close.dark span:after {
  background: #052e16;
}
.page-popup .btn-close span:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page-popup .btn-close:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.page-popup-container {
  display: none;
}
.page-popup-container.active {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-height: 98vh;
  text-align: left;
  margin: 0 auto;
}
.page-popup-container.container-form {
  max-width: 450px;
}
.page-form-wrapp {
  position: relative;
  width: 100%;
}
.lock {
  overflow: hidden;
}

.form-wrapper {
  max-width: 450px;
  width: 100%;
  margin: 30px auto;
}