.oupute_news_read {
  padding-top: 7.5rem;
  background: #F8F8F8;
  font-family: var(--font-family);
}

.oupute_news_read * {
  box-sizing: border-box;
}

.oupute_news_read .onr-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.oupute_news_read .onr-title {
  width: 100%;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: var(--title-text-color);
}

.oupute_news_read .onr-date {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.219;
  text-transform: capitalize;
  color: var(--title-text-color);
}

.oupute_news_read .onr-image-wrap {
  width: 100%;
  aspect-ratio: 144/81;
  margin-bottom: 5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.oupute_news_read .onr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oupute_news_read .onr-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 5rem;
}

.oupute_news_read .onr-article {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--title-text-color);
  overflow-wrap: anywhere;
}

.oupute_news_read .onr-article > *:first-child {
  margin-top: 0;
}

.oupute_news_read .onr-article > *:last-child {
  margin-bottom: 0;
}

.oupute_news_read .onr-article p {
  margin: 0 0 20px;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.oupute_news_read .onr-article ul,
.oupute_news_read .onr-article ol {
  margin: 0 0 26px;
  padding-left: 1.4em;
}

.oupute_news_read .onr-article li {
  margin: 0 0 10px;
}

.oupute_news_read .onr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
}

.oupute_news_read .onr-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.125rem 2.5rem;
  border-radius: 5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.oupute_news_read .onr-nav-btn span {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.219;
  text-transform: capitalize;
}

.oupute_news_read .onr-nav-prev,
.oupute_news_read .onr-nav-next {
  background: color-mix(in srgb, var(--title-text-color) 10%, transparent);
  color: var(--title-text-color);
}

.oupute_news_read .onr-nav-prev:hover,
.oupute_news_read .onr-nav-next:hover {
  background: var(--btn-hover, var(--color-primary));
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1rem color-mix(in srgb, var(--color-primary) 30%, transparent);
  color: var(--color-second);
}

.oupute_news_read .onr-nav-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .oupute_news_read .onr-article {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .oupute_news_read .onr-article {
    font-size: 16px;
    line-height: 27px;
  }

  .oupute_news_read .onr-nav {
    flex-direction: column;
    gap: 1.25rem;
  }

  .oupute_news_read .onr-nav-btn {
    width: 100%;
  }
}
