.newsText {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.newsText__container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.newsText__header {
  color: var(--Grn, #017668);
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 20px 0;
}

.newsText__content {
  color: #000;
  font-family: "Asap", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.newsText__content p {
  margin-bottom: 20px;
}

.newsText__content p:last-child {
  margin-bottom: 0;
}

.newsText__content h1,
.newsText__content h2,
.newsText__content h3,
.newsText__content h4,
.newsText__content h5,
.newsText__content h6 {
  color: var(--Grn, #017668);
  font-family: "Asap", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 30px 0 15px 0;
}

.newsText__content h1:first-child,
.newsText__content h2:first-child,
.newsText__content h3:first-child,
.newsText__content h4:first-child,
.newsText__content h5:first-child,
.newsText__content h6:first-child {
  margin-top: 0;
}

.newsText__content ul,
.newsText__content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.newsText__content li {
  margin-bottom: 8px;
}

.newsText__content a {
  color: var(--Orange, #eb5a37);
  text-decoration: none;
  transition: color 0.3s ease;
}

.newsText__content a:hover {
  color: var(--Gul, #f4b743);
  text-decoration: underline;
}

.newsText__content blockquote {
  border-left: 4px solid var(--Orange, #eb5a37);
  margin: 30px 0;
  padding: 20px 0 20px 30px;
  font-style: italic;
  color: #666;
  background: #f9f9f9;
}

.newsText__content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
}

.newsText__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.newsText__content th,
.newsText__content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.newsText__content th {
  background: #f5f5f5;
  font-weight: 600;
  color: var(--Orange, #eb5a37);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .newsText {
    padding: 30px 0;
  }

  .newsText__header {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .newsText__content {
    font-size: 16px;
  }

  .newsText__content h1,
  .newsText__content h2,
  .newsText__content h3,
  .newsText__content h4,
  .newsText__content h5,
  .newsText__content h6 {
    margin: 25px 0 12px 0;
  }
}

@media (max-width: 480px) {
  .newsText {
    padding: 20px 0;
  }

  .newsText__container {
    width: 90%;
  }

  .newsText__header {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .newsText__content {
    font-size: 15px;
  }

  .newsText__content ul,
  .newsText__content ol {
    padding-left: 20px;
  }

  .newsText__content blockquote {
    padding: 15px 0 15px 20px;
    margin: 20px 0;
  }
}
