.news-page__container {
  display: flex;
  padding: 40px 20px;
  gap: 40px;
}

.news-page__left {
  width: 72%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-page__date {
  color: #7f7f7f;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.news-page__title {
  font-size: 40px;
  font-weight: 700;
  color: #222222;
}

.news-page__right {
  width: 27%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-page__source {
  color: #7f7f7f;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.news-page__content p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
}

.news-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.news-page__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #f8f8f8;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.news-page__tag:hover {
  background: #e0e0e0;
  border-color: #bbb;
}

.news-page__tag-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.news-page__tag-name {
  font-weight: 500;
}

@media (max-width: 768px) {
  .news-page__container {
    flex-direction: column;
    padding: 20px;
  }

  .news-page__left,
  .news-page__right {
    width: 100%;
  }
}
