:root {
  --border-radius: 1.5625rem;
  --offset-top: -1.5625rem;
  --font-family: 'Montserrat', sans-serif;
  --content-offset-top: -10.09rem; /* 10.09rem / 26.65625rem */
  --bg-color: #e4e4e4;
}

.news-read-section {
  background-color: var(--bg-color);
}

.container {
  /* max-width: 1200px;
  margin: 0 auto; */
}

.news-banner {
  padding: 7.75rem 0 12.69rem 0;
  width: 100%;
  text-align: center;
  /* min-height: calc(27.13rem - var(--offset-top)); */
  background: linear-gradient(93deg, #8d74e5 0%, #664dcd 100%);
}

.news-banner-content {
}
.news-title {
  color: #fff;
  text-align: center;
  font-family: var(--font-family);
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.94rem;
}

@media screen and (max-width: 820px) {
  .news-title {
    font-size: 2.2875rem;
  }
}

@media screen and (max-width: 552px) {
  .news-title {
    font-size: 1.6rem;
  }
}

.news-subtitle {
  color: #fff;
  font-family: var(--font-family);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.news-subtitle a:hover{
  color: #fff;
}
.news-banner-image img {
  /* width: 100%;
  max-width: 800px;
  border-radius: 20px;
  display: block;
  margin: 0 auto; */
}

/* content */
.news-content {
  z-index: 2;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  position: relative;
  background: var(--bg-color);
  top: var(--offset-top);
  /* padding-bottom: 1.88rem; */
}

.news-content-offset {
  position: relative;
  top: var(--content-offset-top);
}

.news-content-image {
  width: 100%;
  border-radius: var(--border-radius);
}

.news-content-image img {
  width: 100%;
  border-radius: var(--border-radius);
  aspect-ratio: 1516/853;
  object-fit: cover;
}

.rich-text {
  margin-top: 1.88rem;
  color: #000;
  font-family: var(--font-family);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.rich-text img{
  height: auto;
}
.rich-text h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.62rem;
  font-weight: 500;
}
.rich-text p {
  margin-bottom: 0.62rem;
  font-family: var(--font-family);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.94rem;
  padding-top: 1.88rem;
}

.pagination-btn {
  border-radius: 1.25rem;
  border: 1px solid #000;
  color: #000;
  display: flex;
  padding: 0.3125rem 0.9375rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;

  /* font */
  font-family: var(--font-family);
  font-size: 0.5625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pagination-btn:hover {
  border-radius: 1.25rem;
  background: #6e55d1;
  border: 1px solid transparent;
  color: #fff;
}
.pagination-btn a:hover {
  color: #fff;
}
