.article-section {
  background: #fff;
  padding: 46px 0 96px;
}

.article-wrap {
  color: var(--green);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 1024px;
  width: calc(100% - 48px);
}

.article-back {
  align-items: center;
  align-self: flex-start;
  color: var(--orange);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  text-decoration: none;
}

.article-back i { font-size: 14px; }
.article-back:hover,
.article-back:focus { color: var(--green); }

.article-hero {
  border-radius: 16px;
  display: block;
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.article-meta {
  align-items: center;
  display: flex;
  font-size: 14px;
  gap: 16px;
}

.article-meta span {
  background: var(--orange-light);
  border-radius: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  text-transform: uppercase;
}

.article-meta strong { font-weight: 600; }
.article-wrap > h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.article-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-body h2,
.article-body p { margin: 0; }
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.article-body > p {
  font-size: 16px;
  line-height: 1.7;
}

.article-body blockquote {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  margin: 0;
  padding: 20px 24px;
}

.article-body blockquote p {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 8px;
}

.article-body blockquote cite {
  color: var(--orange);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.article-hero-second { margin-top: 0; }

.related-section {
  background: rgb(209 219 223 / 20%);
  padding: 96px 0;
}

.related-heading {
  color: var(--green);
  margin: 0 auto 64px;
  max-width: 1024px;
  text-align: center;
  width: calc(100% - 48px);
}

.related-heading h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.related-heading p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.related-grid { margin: 0 auto; }

@media (max-width: 991.98px) {
  .article-section { padding: 40px 0 72px; }
  .article-hero { height: 340px; }
  .related-section { padding: 72px 0; }
}

@media (max-width: 767.98px) {
  .article-section { padding: 32px 0 56px; }
  .article-wrap { width: calc(100% - 40px); }
  .article-hero { border-radius: 12px; height: auto; aspect-ratio: 16 / 9; }
  .article-wrap > h1 { font-size: 36px; }
  .article-lead { font-size: 17px; line-height: 1.5; }
  .article-meta { flex-wrap: wrap; gap: 10px; }
  .article-body h2 { font-size: 22px; }
  .related-section { padding: 56px 0; }
  .related-heading { margin-bottom: 40px; width: calc(100% - 40px); }
  .related-heading h2 { font-size: 34px; }
}
