
  *,
  ::before,
  ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .blog-section-heading {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding-bottom: 22px;
    padding-top: 22px;
  }

  .blog-section-heading .u-text-1 {
    margin-bottom: 8px;
  }

  .blog-section-heading .u-text-2 {
    max-width: 680px;
  }

  .blog-eyebrow {
    color: #f67a37;
    font-family: Oswald, sans-serif !important;
    font-size: 0.95rem;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .blog-section-link {
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
  }

  .blog-section-link:hover,
  .blog-section-link:focus {
    background: #ffffff;
    color: #206975;
  }

  .blog-body {
    margin: auto;
    max-width: 1160px;
    padding: 42px 18px 54px;
    position: relative;
  }

  #cCarousel {
    position: relative;
  }

  .blog-carousel-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 18px;
  }

  #cCarousel .arrow {
    align-items: center;
    background: #206975;
    border: 0;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    height: 42px;
    justify-content: center;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    width: 42px;
  }

  #cCarousel .arrow:hover,
  #cCarousel .arrow:focus {
    background-color: #f67a37;
  }

  #cCarousel .arrow:disabled {
    cursor: default;
    opacity: 0.35;
  }

  #carousel-vp {
    margin: auto;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: #206975 #dde7e9;
    scrollbar-width: thin;
    width: 100%;
  }

  #carousel-vp:focus {
    outline: 2px solid #f67a37;
    outline-offset: 6px;
  }

  #carousel-vp::-webkit-scrollbar {
    height: 9px;
  }

  #carousel-vp::-webkit-scrollbar-thumb {
    background: #206975;
    border-radius: 6px;
  }

  #carousel-vp::-webkit-scrollbar-track {
    background: #dde7e9;
    border-radius: 6px;
  }

  #cCarousel #cCarousel-inner {
    display: grid;
    gap: 22px;
    grid-auto-columns: minmax(280px, 360px);
    grid-auto-flow: column;
    padding: 8px 2px;
  }

  .cCarousel-item {
    background: #ffffff;
    border: 1px solid rgba(32, 105, 117, 0.15);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .cCarousel-item:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
    transform: translateY(-6px);
  }

  .blog-card-image {
    background: #e8f0f1;
    display: block;
  }

  .cCarousel-item img {
    aspect-ratio: 16 / 10;
    color: white;
    display: block;
    margin-top: 0;
    object-fit: cover;
    width: 100%;
  }

  .cCarousel-item .infos {
    background: white;
    color: black;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    text-align: left;
  }

  .blog-card-meta {
    color: #5b6b6e;
    display: flex;
    flex-wrap: wrap;
    font-family: Oswald, sans-serif !important;
    font-size: 0.9rem;
    gap: 8px 14px;
  }

  .blog-card-meta span + span::before {
    color: #f67a37;
    content: "/";
    margin-right: 14px;
  }

  .cCarousel-item .infos .blog-title {
    color: #206975;
    font-family: Oswald, sans-serif !important;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
  }

  .cCarousel-item .infos .blog-title a {
    color: inherit;
    text-decoration: none;
  }

  .cCarousel-item .infos .blog-title a:hover,
  .cCarousel-item .infos .blog-title a:focus {
    color: #f67a37;
  }

  .blog-excerpt {
    color: #465457;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
  }

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

  .blog-tags a {
    background: rgba(32, 105, 117, 0.09);
    border-radius: 6px;
    color: #206975;
    font-size: 0.88rem;
    padding: 6px 9px;
    text-decoration: none;
  }

  .blog-tags a:hover,
  .blog-tags a:focus {
    background: #206975;
    color: #ffffff;
  }

  .cCarousel-item .infos .btn-read {
    align-items: center;
    align-self: flex-start;
    background: #f67a37;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
    padding: 12px 20px;
    text-decoration: none;
  }

  .cCarousel-item .infos .btn-read:hover,
  .cCarousel-item .infos .btn-read:focus {
    background: #206975;
    color: #fff;
  }

  .blog-empty-state {
    background: #ffffff;
    border: 1px solid rgba(32, 105, 117, 0.15);
    border-radius: 8px;
    color: #206975;
    margin: auto;
    max-width: 720px;
    padding: 42px 24px;
  }

  .blog-empty-state h3 {
    color: #206975;
    margin-bottom: 10px;
  }

  .blog-empty-state p {
    color: #465457;
    margin: 0;
  }

  @media (max-width: 770px) {
    .blog-section-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 18px;
    }

    .blog-section-link {
      padding: 10px 16px;
    }

    .blog-body {
      padding-left: 14px;
      padding-right: 14px;
    }

    .blog-carousel-actions {
      justify-content: flex-start;
    }

    #cCarousel #cCarousel-inner {
      grid-auto-columns: minmax(260px, 86vw);
    }
  }


  /* Blog Detail */
  .blog {
    padding: 30px 0 100px 0;
    margin: 0;
    background-color: #eeeeee;
    /* color: white; */
    /* font-family: "Manrope", sans-serif; */
  }
  .blog .title {
    margin-bottom: 20px;
  }
  .blog .title h2 {
    font-size: 22px;
    color: #6d8084;
    margin: 40px 0 30px 0;
  }
  .blog .title p {
    width: 60%;
    font-size: 65px;
    font-weight: 700;
    letter-spacing: -5px;
    color: #333333;
    line-height: 70px;
  }
  .blog .title p > span {
    color: #206975;
  }
  .blog a {
    text-decoration: none;
  }
  .blog .blog-list {
    display: flex;
    padding: 3rem;
    overflow-x: scroll;
  }
  .blog .blog-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .blog .blog-list::-webkit-scrollbar-thumb {
    background: #eeeeee;
    border-radius: 10px;
  }
  .blog .blog-list::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #eeeeee, #eeeeee 1px, #eeeeee 0, #eeeeee);
  }
  .blog .card {
    height: 450px;
    width: 400px;
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 35px;
    background: #fff;
    box-shadow: -1rem 0 3rem #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    margin: 0;
    scroll-snap-align: start;
    clear: both;
    position: relative;
  }
  .blog .card:focus-within ~ .card,
  .blog .card:hover ~ .card {
    transform: translateX(130px);
  }
  .blog .card:hover {
    transform: translateY(-1rem);
  }
  .blog .card:not(:first-child) {
    margin-left: -130px;
  }
  .blog .card-header {
    background: none;
    margin-bottom: auto;
  }
  .blog .card-header p {
    font-size: 14px;
    margin: 0 0 1rem;
  }
  .blog .card-header h2 {
    font-size: 20px;
    margin: 0.25rem 0 auto;
    text-decoration: none;
    color: #206975;
    border: 0;
    display: inline-block;
    cursor: pointer;
  }
  .blog .card-header h2:hover {
    background: #ac0a0a;
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .blog .card-author {
    margin: 3rem 0 0;
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: center;
    position: relative;
  }
  .blog .author-avatar {
    grid-area: auto;
    align-self: start;
    position: relative;
    box-sizing: border-box;
  }
  .blog .author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: grayscale(100%);
    display: block;
    overflow: hidden;
    margin: 16px 10px;
  }
  .blog .author-name {
    grid-area: auto;
    box-sizing: border-box;
  }
  .blog .author-name-prefix {
    font-style: normal;
    font-weight: 700;
    color: #7a7a8c;
  }
  .blog .half-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 48px;
    fill: none;
    stroke: #206975;
    stroke-width: 8;
    stroke-linecap: round;
    pointer-events: none;
  }
  .blog .tags {
    margin: 1rem 0 2rem;
    padding: 0.5rem 0 1rem;
    line-height: 2;
    margin-bottom: 0;
  }
  .blog .tags a {
    padding: 5px 10px;
    color: #206975;
    font-size: 12px;
    background: #fff;
    border: 2px solid #333333;
    border-radius: 50px;
    cursor: pointer;
  }
  .blog .tags a:hover {
    color: #fff;
    background-color: #206975;
    border: 1px solid #206975;
  }


  .section {
    padding: 50px 0;
  }


  .blog-details h3 {
    font-size: 30px;
    color: #000;
    margin-bottom: 10px;
  }

  @media screen and (max-width: 767px) {
    .blog-list {
      overflow-x: scroll;
    }
    .blog-list::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }
    .blog-list::-webkit-scrollbar-thumb {
      background: #fff;
      border-radius: 10px;
      box-shadow: inset 2px 2px 2px hsla(0, 0%, 24%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
    }
    .blog-list::-webkit-scrollbar-track {
      background: linear-gradient(90deg, #eeeeee, #eeeeee 1px, #eeeeee 0, #eeeeee);
    }
  }
  .partners-title {
    padding: 30px 0;
    background: #eeeeee;
    color: #fff;
  }
  .partners-title .title > h1 {
    width: 40%;
    text-align: initial;
    font-size: 65px;
    font-weight: 700;
    letter-spacing: -3.5px;
    color: #333333;
    line-height: 75px;
  }
  .partners-title .title > h1 > span {
    color: #206975;
  }

  .partners {
    padding: 10px 0;
    background: #206975;
  }

  @media screen and (max-width: 767px) {
    .partners-title {
      padding: 30px 0 10px 0;
    }
    .partners-title .title > h1 {
      width: 100%;
      font-size: 45px;
      letter-spacing: -2.5px;
      line-height: 50px;
    }
  }
  .top-footer {
    background-color: #2c2f33;
    padding: 100px 0 80px;
  }
  .top-footer h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #6d8084;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .top-footer p {
    font-size: 13px;
    line-height: 25px;
    color: #6d8084;
    font-weight: 300;
    letter-spacing: 1px;
    padding-right: 20px;
  }
  .top-footer li a {
    font-size: 13px;
    line-height: 30px;
    color: #6d8084;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: color 0.3s;
    font-family: "Manrope", sans-serif;
    display: block;
  }
  .top-footer li a .bi {
    margin-right: 10px;
  }
  .top-footer li a:hover {
    color: #206975;
  }

  .footer-bottom {
    text-align: center;
    background-color: #25272a;
    padding: 30px 0;
  }
  .footer-bottom h5 {
    font-size: 12px;
    line-height: 1;
    color: #6d8084;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 7px;
    margin-bottom: 3px;
  }
  .footer-bottom a {
    color: #206975;
  }
  .footer-bottom .privacy {
    font-size: 12px;
    line-height: 1;
    color: #6d8084;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 7px;
    margin-bottom: 3px;
  }

  .single-page-header {
    background-image: url(/landing_page/static/landing_page/assets/images/origamihexagon-1.webp);
    background-size: cover;
    padding: 0; /* Remove existing padding to allow full vertical centering */
    text-align: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Set height to viewport height for full-page background */
}

.single-page-header:before {
    background: #000000b3;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.single-page-header .container {
    position: relative;
    z-index: 2;
}
  .posts {
    padding-bottom: 40px;
  }

  .post-item {
    background: #fff;
    margin-bottom: 30px;
  }
  .post-item .img-fluid {
    width: 100%;
    height: 300px;
  }
  .post-item .content {
    padding: 20px;
  }
  .post-item .content h3 a {
    color: #000;
  }
  .post-item .content p {
    color: #757575;
    margin: 10px 0;
  }
  .post-item .content .btn-main {
    padding: 12px 25px;
    margin: 15px 0;
  }

  .blog-details h3 {
    font-size: 30px;
    color: #000;
    margin-bottom: 10px;
  }

  .dotted-hr {
    border: none;
    border-top: 3px double #206975; /* Adjust color and thickness */
    margin: 20px 0; /* Adjust the vertical spacing */
  }

  .post-content h3 {
    color: #206975;
  }

  .blog-details .row {
    row-gap: 32px;
  }

  .blog-details .col-lg-8,
  .blog-details .col-lg-4 {
    min-width: 0;
  }

  .post {
    overflow: hidden;
    width: 100%;
  }

  .post-image {
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
  }

  .post-image-trigger {
    background: transparent;
    border: 0;
    cursor: zoom-in;
    display: block;
    padding: 0;
    width: 100%;
  }

  .post-featured-image {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: clamp(220px, 38vw, 460px);
    max-width: 100%;
    object-fit: cover;
    width: 100%;
  }

  .post-image-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.86);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 28px;
    position: fixed;
    z-index: 2000;
  }

  .post-image-modal.is-open {
    display: flex;
  }

  .post-image-modal-dialog {
    max-height: 100%;
    max-width: min(1200px, 92vw);
    position: relative;
    width: 100%;
  }

  .post-image-modal-img {
    border-radius: 8px;
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: 88vh;
    max-width: 100%;
    object-fit: contain;
    width: auto;
  }

  .post-image-modal-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 2rem;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 44px;
  }

  .post-image-modal-close:hover,
  .post-image-modal-close:focus {
    background: rgba(255, 255, 255, 0.24);
  }

  .post-content ul {
    margin-bottom: 10px;
  }
  .post-content ul li {
    color: #000;
  }
  .post-content ul li a {
    color: #fff;
  }
  .post-content p {
    margin-bottom: 30px;
  }

  .post-content img,
  .post-content iframe,
  .post-content table,
  .post-content figure {
    max-width: 100%;
  }

  .post-content img {
    display: block;
    height: auto;
  }
  .post-content blockquote {
    border-left: 2px solid #206975;
    padding: 40px 35px;
    margin-bottom: 30px;
    background: rgb(238, 238, 238);
  }
  .post-content-share {
    margin-bottom: 50px;
  }
  .post-content-share li a {
    align-items: center;
    background: #206975;
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    height: 45px;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s ease;
    width: 45px;
  }


  .post-content-share li a:hover {
    background: #f67a37;
    border-color: #206975;
    color: #fff;
  }

  .post-content-share li a svg {
    color: inherit;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
    height: 18px;
    width: 18px;
  }

  .comment-list {
    padding-left: 0;
    font-family: "Manrope", sans-serif;
  }
  .comment-list-item::before {
    content: "";
    background-color: #206975;
    position: absolute;
    min-height: calc(100% - 20px);
    width: 1px;
    left: -10px;
  }
  /* .comment-list-item:not(:first-child) {
    margin-left: 3rem;
    min-width: calc(100% - 3rem);
  } */
  .comment-list-item {
    padding: 25px 0 0 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .comment-list-item-content {
    padding: 10px;
    min-width: 100%;
    font-family: "Manrope", sans-serif;
  }
  .comment-list-item-content h5 {
    color: #206975;
    margin-bottom: 5px;
  }
  .comment-list-item-content h6 {
    color: #ababab;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .comment-list-item-content p {
    margin-bottom: 5px;
    color: #206975;
    font-weight: 500;
    font-size: small;
  }
  .comment-list-item .comment-btn {
    position: absolute;
    top: 25px;
    right: 0;
    background: #206975;
    padding: 10px 30px;
    border: none;
    text-transform: capitalize;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
  }
  @media (max-width: 575px) {
    .comment-list-item .comment-btn {
      position: unset;
      margin-top: 15px;
      display: inline-block;
    }
  }
  .comment-list-item .comment-btn:hover {
    background: #f67a37;
    color: #fff;
  }

  .post-content button {
    border-radius: 5px !important;
  }
  .post-content button:hover {
    background-color: #f67a37;
  }

  .addComentTitle {
    margin-top: 90px;
  }

  .reply-details {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    row-gap: 12px;
  }
  .reply-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }
  .reply-col {
    flex: 1 1 220px;
  }
  .reply-details .reply-control {
    background-color: transparent;
    border: 1px solid #dedede;
    box-shadow: none;
    color: #0c0c0c;
    font-size: 14px;
    border-radius: 0;
    padding: 5px 10px;
    margin-bottom: 0;
    font-family: "Manrope", sans-serif;
  }
  .reply-details input.reply-control {
    flex: 0 0 auto;
    width: 80%;
    outline: none;
  }
  .reply-details input.reply-control:hover {
    border-color: #206975;
  }
  .reply-details textarea.reply-control {
    flex: 0 0 auto;
    width: 80%;
    height: 100px !important;
    outline: none;
  }
  .reply-row .reply-control {
    width: 100%;
  }
  .reply-details textarea.reply-control {
    width: 100%;
  }
  .reply-details textarea.reply-control:hover {
    border-color: #206975;
  }
  .reply-details .btn {
    flex: 0 0 auto;
    width: 20%;
    margin-right: 20px;
    background: #2c2f33;
    color: #fff;
    font-weight: 700;
    border-radius: 0;
    padding: 10px 30px;
    border: 0;
  }
  .reply-details .btn:hover {
    background-color: #fff;
    color: #206975;
  }
  .reply-details .submit {
    background-color: #206975;
    color: #fff;
  }
  .reply-details .submit:hover {
    background-color: #f67a37;
    color: #fff;
  }

  .reply-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .reply-actions .g-recaptcha {
    width: 100%;
  }

  .reply-actions .submit {
    align-self: flex-start;
    margin: 0;
    width: auto;
  }

  .comment-form {
    margin-top: 30px;
  }
  .comment-form .form-control {
    background-color: transparent;
    border: 1px solid #dedede;
    box-shadow: none;
    height: 45px !important;
    color: #0c0c0c;
    height: 38px;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 10px;
  }
  .comment-form textarea.form-control {
    height: 200px !important;
  }
  .comment-form .row {
    row-gap: 12px;
  }
  .comment-form .btn-primary {
    background: #206975;
    border-radius: 0;
    padding: 10px 20px;
    border: 0;
  }

  .empty-category {
    color: #6c757d;
    cursor: default;
    pointer-events: none;
  }

  .widget h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .widget-search {
    position: relative;
    margin-bottom: 40px;
  }
  .widget-search .form-control {
    border: 1px solid #dedede;
    border-radius: 0;
    height: 50px;
  }
  .widget-search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: #206975;
    border: 0;
  }
  .widget-search-btn:hover {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: #f77c27;
    border: 0;
  }
  .widget-search-btn .bi {
    color: #fff;
  }
  .widget-categories-list {
    list-style-type: none; /* Removes the bullet points */
    padding-left: 0px;
  }
  .widget-categories-list li {
    border-bottom: 1px solid #ddd;
  }
  .widget-categories-list li:last-child {
    border: 0;
  }
  .widget-categories-list li .accordion {
    border-radius: 0;
  }
  .widget-categories-list li .accordion-item {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
  }
  .widget-categories-list li .accordion-item h2 {
    margin-bottom: 0;
  }
  .widget-categories-list li .accordion-item .accordion-body {
    padding: 0 20px;
  }
  .widget-categories-list li .accordion-item .accordion-body .widget-categories-list:last-child {
    border: 0;
  }
  .widget-categories-list li .accordion-button {
    display: block;
    padding: 15px 0;
    color: #000;
    font-size: 15px;
    transition: 0.3s ease;
    background-color: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    text-align: start;
    outline: none;
  }
  .widget-categories-list li .accordion-button:focus {
    box-shadow: none;
    border: none;
  }
  .widget-categories-list li .accordion-button:hover {
    background-color: #206975;
    color: #fff;
    padding-left: 20px;
    border: none;
  }
  .widget-categories-list li a {
    display: block;
    padding: 15px 0;
    color: #000;
    font-size: 15px;
    transition: 0.3s ease;
  }
  .widget-categories-list li a i {
    font-size: 10px;
    margin-right: 10px;
  }
  .widget-categories-list li a:hover {
    background: #206975;
    color: #fff;
    padding-left: 20px;
  }

  .widget-categories h2 {
    color: #206975;
  }
  .widget-allPosts {
    margin: 30px 0;
  }
  .widget-allPosts .btn-white {
    padding: 10px 30%;
    color: #fff;
    font-size: 15px;
    background: #206975;
    border-radius: 0;
  }
  .widget-allPosts .btn-white:hover {
    color: #fff;
    background-color: #f77c27;
  }
  .widget-post-list {
    padding-left: 0;
  }
  .widget-post-list-item {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
}

.widget-post-image {
    margin-right: 10px;
    height: 90px;
    width: 130px;
    overflow: hidden;
    flex-shrink: 0;
}

.widget-post-image img {
    height: 90px;
    width: 120px;
    object-fit: contain;
}

.widget-post-content {
    max-width: calc(100% - 140px); /* Adjusts to fit next to the image */
}

@media (max-width: 991px) {
  .blog-details .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .post-featured-image {
    max-height: 320px;
  }
}

@media (max-width: 575px) {
  .blog-details .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .post-image {
    margin-bottom: 24px !important;
  }

  .post-featured-image {
    border-radius: 6px;
    max-height: 220px;
  }

  .post-image-modal {
    padding: 16px;
  }

  .post-image-modal-close {
    right: 12px;
    top: 12px;
  }
}

.widget-post-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: 0.3s ease;
    color: #000;
    white-space: normal; /* Allows text to wrap */
    overflow-wrap: break-word; /* Wraps long words if necessary */
}

.widget-post-content h5:hover {
    color: #206975;
}

.media-wrapper {

  background-size: contain;

}


.blog-list {
    background: #206975;
    padding: 12px 30px;
    margin-bottom: 50px;
    border-radius: 5px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: normal;
  cursor: pointer;

}.blog-list:hover {
    background: #f67a37;
    padding: 12px 30px;
    margin-bottom: 50px;
    border-radius: 5px;
  color: white;
  font-size: 1rem;
    font-weight: normal;
    cursor: pointer;

}

.blog-cta-link {
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.blog-cta-link:hover {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .blog-cta-link {
        display: block;
        padding: 12px 16px;
        text-align: center;
        width: 100%;
    }

    .blog-cta-link:hover {
        padding: 12px 16px;
    }
}

.list-content p {
  margin-bottom: 50px;
}

.card-body h5 a {
  color: #206975;
}

.card-body h5 a:hover {
  color: #f67a37;
}
