/* ==========================================================================
   TALENTS MAKER — Blog article pages
   Loaded after style.css; header/footer/blog-card styles come from style.css
   ========================================================================== */

.article-hero {
  padding: 140px 24px 48px;
  background: #f5f7fa;
}

.article-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #667085;
  margin-bottom: 24px;
}
.article-hero__breadcrumb a {
  color: #667085;
  text-decoration: none;
  transition: color .2s;
}
.article-hero__breadcrumb a:hover { color: #1ec28e; }

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: #667085;
  margin-bottom: 16px;
}
.article-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #e8f9f2;
  color: #17a97a;
  border-radius: 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.article-hero__image {
  max-width: 900px;
  margin: 32px auto -80px;
}
.article-hero__image img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.article {
  padding: 128px 24px 64px;
  background: #fff;
}

.article__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.75;
  color: #344054;
}

.article__body h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1e1e1e;
  margin: 40px 0 16px;
}

.article__body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e1e1e;
  margin: 32px 0 12px;
}

.article__body p { margin-bottom: 18px; }

.article__body ul,
.article__body ol {
  margin: 0 0 18px 22px;
}
.article__body li { margin-bottom: 8px; }

.article__body strong { color: #1e1e1e; }

.article__body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  background: #f0fdf7;
  border-left: 4px solid #1ec28e;
  border-radius: 0 10px 10px 0;
  font-size: 15.5px;
}

.article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14.5px;
}
.article__body th,
.article__body td {
  padding: 10px 14px;
  border: 1px solid #e5e8ed;
  text-align: left;
}
.article__body th {
  background: #f5f7fa;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #1e1e1e;
}

/* CTA block inside the article */
.article-cta {
  margin: 48px 0 8px;
  padding: 32px;
  background: linear-gradient(135deg, #0f3d31, #14523f);
  border-radius: 16px;
  text-align: center;
  color: #fff;
}
.article-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  color: #fff;
}
.article-cta p {
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  font-size: 15px;
}
.article-cta .btn { margin: 0 6px 8px; }

/* Related articles */
.article-related {
  padding: 56px 24px 80px;
  background: #f5f7fa;
}
.article-related__container {
  max-width: 1140px;
  margin: 0 auto;
}
.article-related__heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 36px;
}
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .article-hero { padding-top: 120px; }
  .article-hero__image { margin-bottom: -48px; }
  .article { padding-top: 88px; }
  .article__body { font-size: 15.5px; }
}
