.blog-border-start-primary {
    position: relative;
    font-weight: bold;
    padding: 1px 15px;
  }
  
  .blog-border-start-primary::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 6px;
    height: 100%;
    background-color: var(--primary-color);
  }
  
  .blog-status {
    background-color: rgba(93, 93, 93, 0.07);
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    align-items: center;
    border-top: 1px solid rgba(52, 52, 52, 0.2);
    border-bottom: 1px solid rgba(52, 52, 52, 0.2);
  }
  .underline {
    text-decoration: underline;
  }
  
  .small-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: space-between;
  }

  
  .small-image {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s;
  }
  
  .small-image:hover {
    border-color: var(--primary-color);
  }
  .small-image.selected {
      border-color: var(--primary-color);
      border-width: 0.2rem;
  }

    .last-small::after {
        position: absolute;
        background: #00000060;
        top: 0;
        bottom: 0;
        left: 0;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 5px;
    }

    #hero-image{
        border-radius: 5px;
    }

    @media (max-width: 575.98px) {
        .small-images{
            flex-direction: row;
            margin-top:5px
        }
        .small-image{
            height: 100%;
            aspect-ratio: 6/2;
        }
    }
  