.owl-carousel .heading-section {
    font-size: 28px;
    color: #000;
  }
  
  .owl-carousel {
    position: relative;
  }
  
  .owl-carousel .owl-item {
    opacity: 1;
  }
  
  .owl-carousel .owl-item.active {
    opacity: 1;
  }
  
  .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
  }
  
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    position: absolute;
    transform: translateY(-50%);
    margin-top: -10px;
    color: rgba(0, 0, 0, 0.1) !important;
    transition: 0.7s;
    opacity: 0;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
      transition: none;
    }
  }
  
  .owl-carousel .owl-nav .owl-prev span:before,
  .owl-carousel .owl-nav .owl-next span:before {
    font-size: 30px;
  }
  
  .owl-carousel .owl-nav .owl-prev {
    left: 0;
  }
  
  .owl-carousel .owl-nav .owl-next {
    right: 0;
  }
  
  .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
  }
  
  .owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .owl-carousel .owl-dots .owl-dot.active {
    background: #000;
    /* background: #ff487e; */
  }
  
  .owl-carousel:hover .owl-nav .owl-prev,
  .owl-carousel:hover .owl-nav .owl-next {
    opacity: 1;
  }
  
  .owl-carousel:hover .owl-nav .owl-prev {
    left: -25px;
  }
  
  .owl-carousel:hover .owl-nav .owl-next {
    right: -25px;
  }
  
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
  }
  
  .blog-entry {
    width: 100%;
    background: #059652;
  }
  
  .blog-entry .text {
    position: relative;
    border-top: 0;
    border-radius: 2px;
  }
  
  .blog-entry .text .heading {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    min-height: 100px;
  }
  
  /* .blog-entry .text .heading a { */
  .blog-entry .text .heading {
    color: #000;    text-decoration: none;

  }
  .blog-entry .meta-date {
    float: left;  /* Manually ensure it floats to the left */
    margin-right: 1rem;  /* Adjust margin if needed */
  }
  
  
  .blog-entry .meta-date {
    display: inline-block;
  }
  
  .blog-entry .meta-date span {
    display: block;
    color: #fff;
  }
  
  .blog-entry .meta-date .day {
    font-weight: 700;
    font-size: 20px;
  }
  
  .blog-entry .meta-date .mos,
  .blog-entry .meta-date .yr {
    font-size: 13px;
  }
  
  .blog-entry .meta > div {
    display: block;
    margin-right: 5px;
    margin-bottom: 0px;
    font-size: 15px;
  }
  
  .blog-entry .meta > div a {
    color: #b3b3b3;
    font-size: 13px;
  }
  
  .blog-entry .meta > div a:hover {
    color: #cccccc;
  }
  
  .blog-entry .meta2 a {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.4);
  }
  