S.single-news-fullpage {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0;
}
.single-news-fullpage-article {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 700px;
  max-width: 900px;
  width: 100%;
  margin: 40px auto;
  box-sizing: border-box;
  padding: 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
.single-news-fullpage-image {
  width: 100%;
  min-width: 0;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 32px 32px 0 0;
}
.single-news-fullpage-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 48px 40px 48px 40px;
  align-items: flex-start;
}
.single-news-fullpage-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 32px 0;
  color: #1a1a1a;
  width: 100%;
}
.single-news-fullpage-content .news-desc {
  font-size: 1.35rem;
  color: #444;
  margin: 0 0 0 0;
  line-height: 1.7;
  width: 100%;
}
.news-back-btn {
  background: none !important;
  color: #e6a23c !important;
  padding: 0 !important;
  border: none !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0;
  font-size: 1.2rem;
  margin-top: 48px;
  cursor: pointer;
  box-shadow: none !important;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-back-btn svg {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  fill: #e6a23c;
  display: inline-block;
}
@media (max-width: 900px) {
  .single-news-fullpage-article {
    flex-direction: column;
    max-width: 98vw;
    min-height: 0;
    padding: 0;
  }
  .single-news-fullpage-image {
    width: 100%;
    min-width: 0;
    height: 320px;
    border-radius: 32px 32px 0 0;
  }
  .single-news-fullpage-content {
    padding: 32px 18px 32px 18px;
  }
}
