/* Extracted from technology-details.php head style block 1 */
body {
      background: #f8f9fa;
      font-family: 'Source Sans 3', Arial, sans-serif;
      color: #203244;
    }

    .blog-detail-hero {
      background: linear-gradient(128deg, #0d3b66 0%, #145ea0 52%, #197c87 100%);
      color: #fff;
      padding: 60px 0 40px;
      margin-bottom: 32px;
      position: relative;
      z-index: 2;
      border-radius: 0 0 24px 24px;
      box-shadow: 0 8px 32px rgba(16, 45, 73, 0.08);
    }

    .blog-detail-hero h1 {
      font-weight: 800;
      font-size: 2.1rem;
      margin-bottom: 0;
      line-height: 1.2;
    }

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

    .detail-breadcrumb {
      margin: 0;
      background: none;
      padding: 0;
    }

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

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

    .container.blog-detail-layout {
      padding: 48px 0 60px;
    }

    .blog-share-icons {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .blog-share-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #d8e5f1;
      color: #1a5f8c;
      font-size: 1.2rem;
      transition: all 0.2s;
      box-shadow: 0 4px 12px rgba(16, 45, 73, 0.08);
    }

    .blog-share-icons a:hover {
      background: #0f4c81;
      border-color: #0f4c81;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(16, 45, 73, 0.14);
    }

    .blog-content-area {
      background: #fff;
      border-radius: 18px;
      border: 1px solid #dce8f3;
      box-shadow: 0 12px 28px rgba(16, 45, 73, 0.1);
      overflow: hidden;
    }

    .blog-feature-image {
      width: 100%;
      display: block;
      /* object-fit: cover; */
      /* max-height: 420px; */
      height: auto;
    }

    .blog-content-body {
      padding: 32px;
    }

    .blog-content-body h1 {
      color: #0d3d6a;
      font-weight: 800;
      font-size: 1.7rem;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .blog-content-body small {
      color: #5d7388;
      font-weight: 600;
      display: block;
      margin-bottom: 24px;
    }

    .blog-content-body p {
      color: #334c63;
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 1.04rem;
    }

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

    @media (min-width: 992px) {
      .blog-sidebar-card {
        position: sticky;
        top: 110px;
        margin-top: 0;
      }
    }

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

    .blog-sidebar-card .form-control {
      border: 1px solid #cfe0ee;
      border-radius: 10px;
      min-height: 44px;
      margin-bottom: 12px;
    }

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

    .blog-sidebar-card ul {
      padding: 0;
      margin: 0;
    }

    .blog-sidebar-card ul li {
      list-style: none;
      border-bottom: 1px solid #e6eff7;
      padding: 10px 0;
    }

    .blog-sidebar-card ul li:last-child {
      border-bottom: none;
    }

    .blog-sidebar-card ul li a {
      color: #2c5070;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .blog-sidebar-card ul li a:hover {
      color: #0f4c81;
    }

    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(90deg, #0d4f82, #1a798b);
      color: #fff;
      display: flex;
      justify-content: space-around;
      padding: 12px 20px;
      z-index: 999;
      box-shadow: 0 -4px 16px rgba(13, 57, 94, 0.2);
    }

    .sticky-cta a {
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.15);
      transition: background 0.2s;
    }

    .sticky-cta a:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 991px) {
      .blog-detail-hero {
        padding: 40px 0 24px;
        margin-bottom: 18px;
      }

      .container.blog-detail-layout {
        padding: 28px 0 30px;
      }

      .blog-content-body {
        padding: 18px;
      }

      .blog-content-body h1 {
        font-size: 1.3rem;
      }

      .blog-sidebar-card {
        margin-top: 0;
        margin-bottom: 24px;
        position: static;
      }
    }

