.blog-carousel-section {
    /* padding: 90px 0; */
    background: #101010;
    color: #fff;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
  }
  
  .section-header h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  
  .carousel-controls {
    display: flex;
    gap: 12px;
  }
  
  .blog-carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    /* line-height: normal; */
  }
  
  .blog-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
  }
  
  .blog-carousel {
    overflow: hidden;
  }
  
  .blog-track {
    display: flex;
    gap: 40px;
    transition: transform 0.45s ease;
  }
  
  .blog-card {
    flex: 0 0 calc((100% - 40px) / 2);
    overflow: hidden;
    border-radius: 22px;
    background: #1f1f1f;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .blog-card:hover{
    border-color: rgba(255,255,255,0.28);

  }
  
  .blog-image-wrap {
    height: 300px;
    overflow: hidden;
    background: #222;
    position: relative;
  }

  .blog-image-wrap::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.507) 100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }
  
  .blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    object-position: top;
  }
  
  .blog-card:hover .blog-image-wrap img {
    transform: scale(1.06);
  }

  .blog-card:hover .blog-image-wrap::after{
    opacity: 0.2;
  }
  
  .blog-card-content {
    padding: 34px 36px 38px;
    background: linear-gradient( 175deg, rgb(255 255 255 / 0%), rgb(0 0 0 / 19%) );
    height: 100%;
  }
  
  .blog-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: #00e0a4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }
  
  .blog-card h3 {
    margin-bottom: 16px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  
  .blog-card p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .blog-track {
      /* gap: 24px; */
    }
  
    .blog-card {
      flex-basis: 100%;
    }
  
    .blog-image-wrap {
      height: 220px;
    }
  
    .blog-card-content {
      padding: 28px;
    }
  }