.hero {
  background: #eaf8f4;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 20px;
}

.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: #000;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero .slogan-text,
.hero h1 {
  font-family: 'Poppins', sans-serif;
  color: #009B72;
  font-size: 2.5rem;
  margin: 0;
}
.article-container {
  max-width: 850px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding-bottom: 20px;
  overflow: hidden;
}
.article-cover {
  width: 100%;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}
.meta {
  color: #607d8b;
  font-size: 0.95rem;
  padding: 14px 22px 0;
}
.article-title {
  font-family: 'Poppins', sans-serif;
  color: #174b36;
  font-weight: 800;
  font-size: 2rem;
  margin: 16px 22px 4px;
}
.content {
  font-family: 'Inter', sans-serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 12px 22px;
}
.content p {
  margin-bottom: 1.4em;
}
.content h2,
.content h3 {
  color: #174b36;
  font-family: 'Poppins', sans-serif;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}
.content h2 { font-size: 1.4rem; }
.content h3 { font-size: 1.2rem; }
.content blockquote {
  border-left: 4px solid #009B72;
  background: #f1fdf8;
  padding-left: 16px;
  font-style: italic;
  color: #444;
  margin: 1.4em 0;
}
.content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}
.content a {
  color: #009B72;
  text-decoration: underline;
}
.content a:hover {
  color: #065b3a;
}
@media (max-width:700px) {
  .article-container {
    margin: 0 10px 40px;
  }
  .article-title {
    font-size: 1.7rem;
  }
}