/* Extracted from blog.php head style block 1 */
:root {
      --blog-primary: #0f4c81;
      --blog-secondary: #1a7a8c;
      --blog-highlight: #ef8f34;
      --blog-text: #203244;
      --blog-soft: #e8f1f8;
    }

    body {
      font-family: "Source Sans 3", sans-serif;
      color: var(--blog-text);
      background: linear-gradient(180deg, #f7fbff 0%, #edf4fa 100%);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Manrope", sans-serif;
    }

    .blog-hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      padding: 70px 0 58px;
      background: radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 35%), linear-gradient(128deg, #0d3b66 0%, #145ea0 52%, #197c87 100%);
    }

    .blog-hero::before,
    .blog-hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .blog-hero::before {
      width: 300px;
      height: 300px;
      top: -110px;
      right: -100px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 72%);
    }

    .blog-hero::after {
      width: 340px;
      height: 340px;
      bottom: -170px;
      left: -120px;
      background: radial-gradient(circle, rgba(239, 143, 52, 0.34) 0%, rgba(239, 143, 52, 0) 70%);
    }

    .blog-hero .container {
      position: relative;
      z-index: 1;
    }

    .blog-breadcrumb-wrap {
      display: inline-flex;
      align-items: center;
      margin-bottom: 14px;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(4px);
    }

    .blog-breadcrumb {
      margin: 0;
    }

    .blog-breadcrumb .breadcrumb-item,
    .blog-breadcrumb .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.92);
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
    }

    .blog-breadcrumb .breadcrumb-item a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .blog-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
      color: rgba(255, 255, 255, 0.72);
    }

    .blog-breadcrumb .breadcrumb-item.active {
      color: #ffd19a;
      font-weight: 700;
    }

    .blog-hero h1 {
      font-weight: 800;
      margin-bottom: 10px;
    }

    .blog-hero p {
      max-width: 760px;
      margin: 0;
      font-size: 1.06rem;
      line-height: 1.75;
      opacity: 0.96;
    }

    .blog-search-row {
      background: #fff;
      border: 1px solid #d9e6f1;
      border-radius: 14px;
      box-shadow: 0 12px 26px rgba(13, 57, 94, 0.1);
      margin-top: -28px;
      position: relative;
      z-index: 2;
    }

    .blog-search-row .form-control {
      border: 1px solid #cfe0ee;
      border-radius: 10px;
      min-height: 44px;
    }

    .blog-search-row .btn {
      min-height: 44px;
      border: 0;
      border-radius: 10px;
      font-weight: 700;
      background: linear-gradient(90deg, #0d4f82, #1a798b);
    }

    .header-bar {
      background: linear-gradient(90deg, #07325c 0%, #0d4d84 52%, #12607c 100%);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(7, 50, 92, 0.2);
    }

    .call-box {
      background: #f3a340;
      color: #0b2f53;
      font-weight: 800;
      border-radius: 999px;
      padding: 6px 16px;
    }

    .blog-layout {
      padding: 52px 0 60px;
    }

    .section-title {
      font-weight: 800;
      color: #0d406d;
      margin-bottom: 20px;
    }

    .blog-link {
      text-decoration: none;
    }

    .blog-card {
      display: flex;
      background: #fff;
      border: 1px solid #dbe8f3;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(16, 45, 73, 0.1);
      overflow: hidden;
      margin-bottom: 20px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      min-height: 215px;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      border-color: #c1d8ea;
      box-shadow: 0 14px 30px rgba(13, 58, 97, 0.16);
    }

    .blog-card img {
      width: 280px;
      min-width: 280px;
      height: 100%;
      object-fit: cover;
    }

    .blog-card-body {
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .blog-title {
      color: #103c63;
      font-size: 1.06rem;
      font-weight: 800;
      line-height: 1.45;
      margin-bottom: 10px;
    }

    .blog-desc {
      color: #41576b;
      font-size: 0.96rem;
      line-height: 1.65;
      margin-bottom: 10px;
    }

    .blog-card small {
      color: #5d7388;
      font-weight: 600;
    }

    .pagination {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
      padding-bottom: 5px;
    }

    .pagination a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: 10px;
      border: 1px solid #d0dfec;
      color: #1a4f7a;
      font-weight: 700;
      text-decoration: none;
      background: #fff;
      transition: all 0.2s ease;
    }

    .pagination a:hover {
      border-color: #aac6dd;
      color: #0d3f67;
      transform: translateY(-1px);
    }

    .pagination .active {
      background: linear-gradient(90deg, #0e4e82, #1b7686);
      border-color: transparent;
      color: #fff;
    }

    .blog-sidebar-card {
      background: #fff;
      border: 1px solid #dce8f3;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(13, 57, 94, 0.08);
      padding: 18px;
      margin-bottom: 18px;
    }

    .blog-sidebar-card h5 {
      color: #0f436f;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .speciality-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .speciality-tags .badge {
      background: #edf5fb;
      border: 1px solid #d4e3f0;
      color: #1f5e89;
      font-size: 0.84rem;
      font-weight: 700;
      padding: 8px 11px;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .speciality-tags .badge:hover {
      background: #0f4f83;
      border-color: #0f4f83;
      color: #fff;
    }

    .empty-state {
      background: #fff;
      border: 1px dashed #bfd4e6;
      border-radius: 14px;
      padding: 24px;
      color: #466178;
      font-weight: 600;
      text-align: center;
    }

    @media (max-width: 991px) {
      .blog-hero {
        padding: 62px 0 50px;
      }

      .blog-hero h1 {
        font-size: 2rem;
      }

      .blog-search-row {
        margin-top: -22px;
      }

      .blog-card {
        flex-direction: column;
        min-height: auto;
      }

      .blog-card img {
        width: 100%;
        min-width: 100%;
        height: 220px;
      }
    }

    @media (max-width: 767px) {
      .blog-hero {
        padding: 54px 0 44px;
      }

      .blog-hero h1 {
        font-size: 1.75rem;
      }

      .blog-hero p {
        font-size: 0.98rem;
      }

      .blog-breadcrumb-wrap {
        padding: 6px 12px;
      }

      .blog-breadcrumb .breadcrumb-item,
      .blog-breadcrumb .breadcrumb-item a {
        font-size: 0.84rem;
      }

      .header-bar {
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 8px;
      }

      .call-box {
        margin-left: 0 !important;
      }

      .blog-layout {
        padding: 42px 0 50px;
      }

      .blog-card img {
        height: 200px;
      }

      .blog-card-body {
        padding: 16px;
      }
    }

