.page-news {
  --page-heading-color: #FFD700;
  --page-accent-line: #00FFFF;
  --page-card-bg: #1A1A2E;
  --page-border-color: #2D2D44;
  --page-insight-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --page-transition: 0.35s ease;
  --page-font-heading: 'Inter', 'Poppins', sans-serif;
  --page-font-body: 'Inter', 'Poppins', sans-serif;
  --page-spacing-section: 4rem;
  display: block;
  padding: 0 0 2rem;
}

@media (max-width: 767px) {
  .page-news {
    padding: 0 0 1.5rem;
  }
}

.page-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .page-news__hero {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 2rem 2rem;
  }
}

.page-news__hero-text {
  flex: 1;
  max-width: 600px;
}

.page-news__breadcrumb {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #B0B0B0);
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.page-news__breadcrumb a {
  color: var(--color-accent, #00FFFF);
  text-decoration: none;
  transition: color var(--page-transition);
}

.page-news__breadcrumb a:hover,
.page-news__breadcrumb a:focus {
  color: var(--page-heading-color);
  outline: 2px solid var(--color-accent, #00FFFF);
  outline-offset: 2px;
}

.page-news__title {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--page-heading-color);
  margin: 0 0 0.5rem;
}

.page-news__subtitle {
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--color-text-secondary, #B0B0B0);
  margin: 0;
}

.page-news__hero-visual {
  flex: 0 0 auto;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--page-border-color);
}

@media (min-width: 768px) {
  .page-news__hero-visual {
    max-width: 500px;
  }
}

.page-news__hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-news__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
  margin: 2rem auto;
  max-width: 1280px;
}

@media (min-width: 992px) {
  .page-news__layout {
    flex-direction: row;
    padding: 0 2rem;
    gap: 3rem;
  }
}

.page-news__main {
  flex: 1;
  min-width: 0;
}

.page-news__sidebar {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .page-news__sidebar {
    flex: 0 0 auto;
    width: 100%;
  }
}

.page-news__section-heading {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-heading-color);
  margin: 0 0 1rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--page-accent-line);
}

.page-news__section-desc {
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary, #B0B0B0);
  margin: 0 0 2rem;
}

.page-news__updates {
  position: relative;
  padding: 2rem 0;
  margin-bottom: var(--page-spacing-section);
}

.page-news__updates-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  overflow: hidden;
  border-radius: 16px;
}

.page-news__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.page-news__table-wrapper {
  overflow-x: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.page-news__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--page-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--page-insight-shadow);
  border: 1px solid var(--page-border-color);
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-text-primary, #FFFFFF);
}

.page-news__table thead {
  background: linear-gradient(135deg, #6A0DAD, #0D0D0D);
  border-bottom: 2px solid var(--page-heading-color);
}

.page-news__table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--page-heading-color);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.page-news__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--page-border-color);
}

.page-news__table-row {
  transition: background var(--page-transition), transform var(--page-transition);
}

.page-news__table-row:hover,
.page-news__table-row:focus-within {
  background: rgba(106, 13, 173, 0.2);
  transform: translateX(4px);
  outline: none;
}

.page-news__table-name {
  font-weight: 600;
  color: var(--color-text-primary, #FFFFFF);
}

.page-news__status {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-news__status--new {
  background: rgba(0, 255, 255, 0.15);
  color: #00FFFF;
  border: 1px solid #00FFFF;
}

.page-news__status--updated {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-news__updates-cta {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.page-news__updates-cta .btn-gold {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: linear-gradient(135deg, #FFD700, #FFAA00);
  color: #0D0D0D;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: box-shadow var(--page-transition), transform var(--page-transition);
  border: none;
}

.page-news__updates-cta .btn-gold:hover,
.page-news__updates-cta .btn-gold:focus {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

.page-news__insights {
  margin-bottom: var(--page-spacing-section);
  padding: 2rem 0;
  border-top: 1px solid var(--page-border-color);
  border-bottom: 1px solid var(--page-border-color);
}

.page-news__insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .page-news__insights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .page-news__insights-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.page-news__insight-card {
  display: flex;
  flex-direction: column;
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--page-insight-shadow);
  transition: box-shadow var(--page-transition), transform var(--page-transition);
  position: relative;
}

.page-news__insight-card:hover,
.page-news__insight-card:focus-within {
  box-shadow: 0 8px 30px rgba(106, 13, 173, 0.3);
  transform: translateY(-4px);
  outline: 2px solid var(--page-accent-line);
  outline-offset: 2px;
}

.page-news__insight-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #0D0D0D;
  border-bottom: 2px solid var(--page-border-color);
}

.page-news__insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.page-news__insight-card:hover .page-news__insight-img,
.page-news__insight-card:focus-within .page-news__insight-img {
  transform: scale(1.05);
}

.page-news__insight-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-news__insight-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 4px;
  align-self: flex-start;
}

.page-news__insight-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--color-text-primary, #FFFFFF);
  margin: 0 0 0.75rem;
}

.page-news__insight-excerpt {
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary, #B0B0B0);
  margin: 0 0 1rem;
  flex: 1;
}

.page-news__insight-link {
  font-weight: 600;
  color: var(--page-accent-line);
  text-decoration: none;
  transition: color var(--page-transition);
  align-self: flex-start;
}

.page-news__insight-link:hover,
.page-news__insight-link:focus {
  color: #FFD700;
  text-decoration: underline;
  outline: none;
}

.page-news__query {
  margin-bottom: var(--page-spacing-section);
  padding: 2rem 0;
}

.page-news__query-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .page-news__query-layout {
    flex-direction: row;
    align-items: stretch;
  }
}

.page-news__query-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news__query-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--page-border-color);
  object-fit: cover;
}

.page-news__query-text {
  flex: 1;
  padding: 0.5rem 0;
}

.page-news__query-desc {
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-primary, #FFFFFF);
  margin: 0 0 1.5rem;
}

.page-news__query-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.page-news__query-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--page-font-body);
  font-weight: 300;
  color: var(--color-text-secondary, #B0B0B0);
  line-height: 1.6;
}

.page-news__query-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--page-accent-line);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

.page-news__query-text .btn-gold {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: linear-gradient(135deg, #FFD700, #FFAA00);
  color: #0D0D0D;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: box-shadow var(--page-transition), transform var(--page-transition);
  border: none;
}

.page-news__query-text .btn-gold:hover,
.page-news__query-text .btn-gold:focus {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

.page-news__sidebar-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--page-insight-shadow);
}

.page-news__sidebar-heading {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--page-heading-color);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--page-accent-line);
}

.page-news__sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news__sidebar-links li {
  margin-bottom: 0.5rem;
}

.page-news__sidebar-links a {
  color: var(--color-text-secondary, #B0B0B0);
  text-decoration: none;
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 0.95rem;
  transition: color var(--page-transition), padding-left var(--page-transition);
  display: block;
  padding: 0.3rem 0;
}

.page-news__sidebar-links a:hover,
.page-news__sidebar-links a:focus {
  color: var(--page-accent-line);
  padding-left: 0.5rem;
  outline: none;
}

.page-news__divider {
  margin: 0 auto 2rem;
  max-width: 1280px;
}

.page-news__trust {
  text-align: center;
  padding: 2rem 1rem;
}

.page-news__trust-text {
  font-family: var(--page-font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-text-secondary, #B0B0B0);
  margin: 0;
}

@media (max-width: 767px) {
  .page-news__hero {
    padding: 1.5rem 1rem 0;
    gap: 1rem;
  }
  .page-news__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-news__hero-visual {
    max-width: 100%;
  }
  .page-news__layout {
    padding: 0 0.5rem;
    margin: 1rem auto;
    gap: 1.5rem;
  }
  .page-news__table th,
  .page-news__table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }
  .page-news__insights-grid {
    gap: 1rem;
  }
  .page-news__insight-img-wrap {
    height: 140px;
  }
  .page-news__insight-content {
    padding: 1rem;
  }
  .page-news__section-heading {
    font-size: 1.3rem;
    padding-left: 0.6rem;
  }
  .page-news__query-layout {
    gap: 1rem;
  }
  .page-news__query-img {
    max-height: 200px;
    object-fit: contain;
  }
  .page-news__sidebar {
    gap: 1rem;
  }
  .page-news__sidebar-card {
    padding: 1rem;
  }
}
