/* ============================================
   Blog Styles - Feeder Sites
   ============================================ */

/* ---- BLOG POST ---- */
.blog-post {
  padding: 40px 0 80px;
}
.blog-post .container {
  max-width: 800px;
}
.breadcrumb {
  font-size: 14px;
  color: #636e72;
  margin-bottom: 30px;
}
.breadcrumb a {
  color: #636e72;
}
.breadcrumb a:hover {
  color: var(--navy, #0c2d48);
}
.breadcrumb span {
  color: var(--navy, #0c2d48);
  font-weight: 600;
}
.blog-post h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  color: var(--navy, #0c2d48);
  line-height: 1.2;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 14px;
  color: #636e72;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e8ef;
}
.blog-intro p {
  font-size: 19px;
  line-height: 1.8;
  color: #2d3436;
  margin-bottom: 24px;
}
.blog-post article h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--navy, #0c2d48);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.blog-post article p {
  font-size: 17px;
  line-height: 1.8;
  color: #2d3436;
  margin-bottom: 16px;
}
.blog-post article ul,
.blog-post article ol {
  margin: 16px 0;
  padding-left: 24px;
}
.blog-post article li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #2d3436;
}
.blog-post article section {
  margin-bottom: 24px;
}

/* ---- TABLE OF CONTENTS ---- */
.blog-toc {
  background: var(--light-bg, #f0f7fc);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--ocean, #2e86c1);
}
.blog-toc h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px !important;
  color: var(--navy, #0c2d48);
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.blog-toc ol {
  padding-left: 20px;
  margin: 0;
}
.blog-toc li {
  font-size: 15px !important;
  line-height: 1.6;
  margin-bottom: 6px !important;
}
.blog-toc a {
  color: var(--ocean, #2e86c1);
  font-weight: 500;
}
.blog-toc a:hover {
  color: var(--navy, #0c2d48);
}

/* ---- BLOG CTA ---- */
.blog-cta {
  background: linear-gradient(135deg, var(--navy, #0c2d48) 0%, var(--ocean, #2e86c1) 100%);
  color: #fff;
  text-align: center;
  padding: 48px 36px;
  border-radius: 16px;
  margin-top: 48px;
}
.blog-cta h2 {
  color: #fff !important;
  font-size: 28px !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}
.blog-cta p {
  color: rgba(255,255,255,0.9) !important;
  font-size: 18px !important;
  margin-bottom: 24px !important;
}
.blog-cta .btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--cta, #27ae60) 0%, #2ecc71 100%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 25px rgba(39,174,96,0.4);
  transition: all 0.3s;
}
.blog-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(39,174,96,0.5);
}

/* ---- RELATED POSTS ---- */
.blog-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e0e8ef;
}
.blog-related h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--navy, #0c2d48);
  margin-bottom: 16px;
}
.blog-related ul {
  list-style: none;
  padding: 0;
}
.blog-related li {
  margin-bottom: 12px;
}
.blog-related a {
  color: var(--ocean, #2e86c1);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
}
.blog-related a:hover {
  color: var(--navy, #0c2d48);
}

/* ---- BLOG INDEX ---- */
.blog-index {
  padding: 60px 0 80px;
}
.blog-index h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  color: var(--navy, #0c2d48);
  text-align: center;
  margin-bottom: 12px;
}
.blog-index .subtitle {
  text-align: center;
  color: #636e72;
  font-size: 18px;
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border-top: 4px solid var(--ocean, #2e86c1);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.blog-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--navy, #0c2d48);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: var(--ocean, #2e86c1);
}
.blog-card p {
  font-size: 15px;
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card .read-more {
  color: var(--ocean, #2e86c1);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- FOOTER SIMPLE ---- */
.footer-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-simple p {
  font-size: 14px;
}
.footer-simple a {
  color: rgba(255,255,255,0.7);
}
.footer-simple a:hover {
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover {
  color: #fff;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .blog-post h1 { font-size: 30px; }
  .blog-post article h2 { font-size: 22px; }
  .blog-intro p { font-size: 17px; }
  .blog-index h1 { font-size: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta { padding: 36px 24px; }
  .footer-simple { flex-direction: column; text-align: center; }
}
