/* Blog Hero */
.blog-hero {
  height: 55vh;
  background: url("https://images.unsplash.com/photo-1554224154-22dec7ec8818") center/cover no-repeat;
  position: relative;
}

.blog-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
}

.blog-hero-content {
  color: #fff;
  padding: 0 60px;
  max-width: 900px;
}

.blog-hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.blog-hero-content p {
  font-size: 18px;
}

/* Blog Content */
.blog-content {
  padding: 80px 60px;
  background: #ffffff;
}

.blog-container {
  max-width: 900px;
  margin: auto;
}

.blog-article h2 {
  font-size: 30px;
  margin: 35px 0 15px;
  color: #1f2937;
}

.blog-article p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}

/* Points */
.blog-points {
  list-style: none;
  margin: 20px 0 30px;
}

.blog-points li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.blog-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* Highlight Box */
.blog-highlight {
  background: #f1f5f9;
  padding: 25px;
  border-left: 5px solid #2563eb;
  margin: 35px 0;
  border-radius: 6px;
}

.blog-highlight h3 {
  margin-bottom: 10px;
}

/* CTA */
.blog-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 45px;
  border-radius: 16px;
  text-align: center;
}

.blog-cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 30px;
  background: #ffffff;
  color: #1e40af;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 32px;
  }

  .blog-content {
    padding: 50px 25px;
  }
}
/* ===============================
   BLOG PDF RESOURCES
================================ */

.blog-resources {
    padding: 60px 8%;
    background: #f8fafc;
}

.resource-list {
    max-width: 1000px;
    margin: auto;
}

/* Individual resource */
.resource-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 22px;
    align-items: center;
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* PDF icon */
.resource-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: #e0f2fe;
    color: #075985;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.resource-content h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 6px;
}

.resource-content p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
}

/* Action */
.resource-link {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #c7d2fe;
    transition: all 0.2s ease;
}

    .resource-link:hover {
        background: #eef2ff;
    }

/* Responsive */
@media (max-width: 768px) {
    .resource-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .resource-action {
        margin-top: 10px;
    }
}



