/* ===================================================
   ARTICLE / BLOG POST STYLES
   Lawn & Land Marketing — New Build
   =================================================== */

/* ARTICLE HERO
   =================================================== */
.article-hero {
  padding: 120px 0 60px;
  background: var(--black-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-l);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.article-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--lime); }
.article-breadcrumb span:not(:last-child) { color: rgba(255,255,255,0.25); }

.article-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(172,231,29,0.12);
  border: 1px solid rgba(172,231,29,0.3);
  border-radius: 20px;
  font-family: var(--font-l);
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.article-headline {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 32px;
  max-width: 820px;
}
.article-headline em {
  color: var(--lime);
  font-style: italic;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.article-author-name {
  display: block;
  font-family: var(--font-l);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.article-author-title {
  display: block;
  font-family: var(--font-l);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.article-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-date, .article-read-time {
  font-family: var(--font-l);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.article-hero-img {
  border-radius: 12px;
  overflow: hidden;
}
.article-hero-img .img-ph {
  width: 100%;
  height: 420px;
  border-radius: 12px;
}

/* ARTICLE LAYOUT — Sidebar + Content
   =================================================== */
.article-layout {
  padding: 80px 0 120px;
  background: var(--black-deep);
}

.article-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  max-width: 1100px;
  align-items: start;
}

/* TABLE OF CONTENTS
   =================================================== */
.article-toc {
  position: sticky;
  top: 100px;
}
.toc-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
}
.toc-label {
  font-family: var(--font-l);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.toc-list {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}
.toc-list li {
  margin-bottom: 8px;
}
.toc-list a {
  font-family: var(--font-l);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.toc-list a:hover { color: var(--lime); }

/* ARTICLE BODY CONTENT
   =================================================== */
.article-content {
  min-width: 0;
}

.article-lead {
  font-family: var(--font-l);
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.article-content section {
  margin-bottom: 56px;
}

.article-content h2 {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.2;
  padding-top: 12px;
}

.article-content h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
}

.article-content p {
  font-family: var(--font-l);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-content li {
  font-family: var(--font-l);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-content a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(172,231,29,0.3);
  transition: border-color 0.2s;
}
.article-content a:hover { border-color: var(--lime); }

/* CALLOUT BOXES */
.article-callout {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 32px 0;
}
.article-callout.article-callout--lime {
  border-left-color: var(--lime);
  background: rgba(172,231,29,0.05);
  border-color: rgba(172,231,29,0.15);
}
.callout-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.5;
}
.callout-body {
  font-family: var(--font-l);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.callout-body strong { color: var(--white); }

/* TIMELINE */
.article-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid rgba(172,231,29,0.25);
}
.art-step {
  padding: 0 0 32px 24px;
  position: relative;
}
.art-step::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--black-deep);
}
.art-step-marker {
  font-family: var(--font-l);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 6px;
}
.art-step-body {
  font-family: var(--font-l);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.art-step-body strong { color: var(--white); }

/* FAQ */
.article-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
}
.faq-item p {
  font-family: var(--font-l);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* ARTICLE CTA BLOCK */
.article-cta-block {
  margin: 64px 0 48px;
}
.article-cta-inner {
  background: linear-gradient(135deg, rgba(172,231,29,0.1) 0%, rgba(93,202,73,0.05) 100%);
  border: 1px solid rgba(172,231,29,0.2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.article-cta-label {
  font-family: var(--font-l);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 12px;
}
.article-cta-inner h3 {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  margin: 0 0 16px;
}
.article-cta-inner p {
  font-family: var(--font-l);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 32px;
}
.article-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RELATED ARTICLES */
.article-related {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.article-related h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 28px;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  border-bottom: none;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover {
  border-color: rgba(172,231,29,0.25);
  transform: translateY(-2px);
}
.related-card-img {
  width: 100%;
  height: 140px;
  border-radius: 0;
}
.related-card-body {
  padding: 16px;
}
.related-card-cat {
  display: block;
  font-family: var(--font-l);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 8px;
}
.related-card h4 {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}
.related-card:hover h4 { color: var(--lime); }

/* RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .article-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .article-toc {
    position: static;
    order: -1;
  }
  .article-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .article-hero { padding: 100px 0 48px; }
  .article-headline { font-size: 28px; }
  .article-meta { flex-direction: column; align-items: flex-start; }
  .article-hero-img .img-ph { height: 240px; }
  .article-cta-inner { padding: 32px 24px; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-callout { flex-direction: column; gap: 8px; }
}
