.page-news {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a0033;
}

.page-news .page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__hero {
  background: linear-gradient(135deg, #330066, #5a00b8);
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-news__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-news__hero-title .highlight {
  color: #f0f0f0;
}

.page-news__hero-subtitle {
  font-size: 1.5em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-news__section:last-of-type {
  border-bottom: none;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title .highlight {
  color: #f0f0f0;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-news__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-news__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-news__text-content {
  flex: 2;
}

.page-news__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-news__text-content a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__text-content a:hover {
  color: #fff;
}

.page-news__image-box {
  flex: 1;
  text-align: center;
  background-color: #2a0055;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: middle;
}

.page-news__image-caption {
  font-size: 0.9em;
  color: #b0b0b0;
  margin-top: 10px;
}

.page-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-news__btn--primary {
  background-color: #FFD700;
  color: #330066;
  border: 2px solid #FFD700;
}

.page-news__btn--primary:hover {
  background-color: #e0b300;
  border-color: #e0b300;
  transform: translateY(-3px);
}

.page-news__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #330066;
  transform: translateY(-3px);
}

.page-news__call-to-action,
.page-news__cta-group {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 215, 0, 0.2);
}

.page-news__call-to-action p {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-news__cta-group .page-news__btn:first-child {
  margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__hero-subtitle {
    font-size: 1.3em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .page-news__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-news__text-content, .page-news__image-box {
    flex: none;
    width: 100%;
  }
  .page-news__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-news__hero {
    padding: 70px 0;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news__text-content p {
    font-size: 1em;
  }
  .page-news__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-news__btn--secondary {
    margin-top: 0;
  }
}