/* =========================================
   HOME – SEO CONTENT BLOCK
   File: assets/css/seo-content.css
   -----------------------------------------
   - Front page er last section
   - Theme Options → Home Page → SEO Content
   - Title + rich text (H1–H6, p, list, etc.)
========================================= */

/* Wrapper section */
.home-seo-content {
  padding: 70px 0 80px;          /* top & bottom gap beshi */
  background-color: #f3f4f6;     /* same as .site-main--home background */
}

/* Inner container – same width as other sections (hero etc.) */
.home-seo-content__inner {
  max-width: 1220px;            /* hero / categories er moto */
  margin: 0 auto;               /* center horizontally */
  padding: 0 15px;              /* side padding same */
}

/* Card – narrower & centered */
.home-seo-content__card {
  border-radius: 16px;
  padding: 40px 38px 42px;
  max-width: 1190px;             /* content width choto */
  margin: 0 auto;               /* card ke center align */
}

/* Optional top label / small eyebrow (jodi future e lagay) */
.home-seo-content__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
  background-color: #fefce8;
  border: 1px solid #facc15;
  margin-bottom: 14px;
}

/* Main title */
.home-seo-content__title {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #020617;
}

/* Body wrapper */
.home-seo-content__body {
  font-size: 15px;
  line-height: 1.7;
  color: #111827;
}

/* ------------------------------
   RICH TEXT – TYPOGRAPHY
   (H1–H6, P, LIST, BLOCKQUOTE)
   ------------------------------ */

.home-seo-content__body > *:first-child {
  margin-top: 0;
}
.home-seo-content__body > *:last-child {
  margin-bottom: 0;
}

/* Paragraphs */
.home-seo-content__body p {
  margin: 0 0 1em;
}

/* Headings */
.home-seo-content__body h1,
.home-seo-content__body h2,
.home-seo-content__body h3,
.home-seo-content__body h4,
.home-seo-content__body h5,
.home-seo-content__body h6 {
  margin: 1.2em 0 0.65em;
  font-weight: 700;
  color: #020617;
  line-height: 1.25;
}

/* Size scale */
.home-seo-content__body h1 {
  font-size: 30px;
  letter-spacing: -0.02em;
}
.home-seo-content__body h2 {
  font-size: 26px;
  letter-spacing: -0.015em;
}
.home-seo-content__body h3 {
  font-size: 22px;
}
.home-seo-content__body h4 {
  font-size: 18px;
}
.home-seo-content__body h5 {
  font-size: 16px;
}
.home-seo-content__body h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #475569;
}

/* Strong / emphasis */
.home-seo-content__body strong,
.home-seo-content__body b {
  font-weight: 600;
  color: #020617;
}
.home-seo-content__body em,
.home-seo-content__body i {
  font-style: italic;
}

/* Links */
.home-seo-content__body a {
  color: #f59e0b;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 158, 11, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.home-seo-content__body a:hover {
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.8);
}

/* Lists */
.home-seo-content__body ul,
.home-seo-content__body ol {
  margin: 0 0 1em 1.4em;
  padding: 0;
}

.home-seo-content__body ul {
  list-style: disc;
}
.home-seo-content__body ol {
  list-style: decimal;
}

.home-seo-content__body li {
  margin: 0.25em 0;
}

/* Nested lists spacing */
.home-seo-content__body li ul,
.home-seo-content__body li ol {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

/* Blockquote */
.home-seo-content__body blockquote {
  margin: 1.4em 0;
  padding: 14px 18px 14px 18px;
  border-left: 3px solid #facc15;
  background-color: #f9fafb;
  border-radius: 10px;
  color: #1f2933;
  font-style: italic;
}

/* Horizontal rule */
.home-seo-content__body hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 1.8em 0;
}

/* Images inside content */
.home-seo-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 1.2em 0;
}

/* Tables (basic) */
.home-seo-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}

.home-seo-content__body th,
.home-seo-content__body td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
}

.home-seo-content__body th {
  background-color: #f9fafb;
  font-weight: 600;
}

/* ------------------------------
   RESPONSIVE
   ------------------------------ */

@media (max-width: 991px) {
  .home-seo-content {
    padding: 50px 0 60px;
  }

  .home-seo-content__card {
    padding: 28px 22px 30px;
    border-radius: 14px;
    max-width: 100%; /* small screen e full width container er moto */
  }

  .home-seo-content__title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .home-seo-content__body {
    font-size: 14px;
  }

  .home-seo-content__body h1 {
    font-size: 26px;
  }
  .home-seo-content__body h2 {
    font-size: 22px;
  }
  .home-seo-content__body h3 {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .home-seo-content__card {
    padding: 24px 18px 26px;
    border-radius: 12px;
  }

  .home-seo-content__title {
    font-size: 22px;
  }

  .home-seo-content__body h1 {
    font-size: 22px;
  }
  .home-seo-content__body h2 {
    font-size: 20px;
  }
}