.gallery {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 10px;
    margin: auto;
    justify-content: center;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #000;
}

.gallery img {
    width: 600px;
    height: 400px;
    cursor: pointer;
    border-radius: 5%;
    padding: 5px;
}

.blog__detail-title {
    font-weight: 600;
    font-size: 2.5vw;
}

.blog-gallery-caption {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 5px;
    word-break: break-word;
}

@media only screen and (max-width: 767px) {
    .gallery img {
        width: 100%;
        height: auto;
        cursor: pointer;
        border-radius: 5%;
        padding: 5px;
    }

    .blog-gallery-caption {
        display: block;
        text-align: center;
        font-size: 1rem;
        margin-top: 5px;
        word-break: break-word;
    }
}

.blog__detail-title  {
      padding-top: 10px !important;
      border-radius: 4px;
      padding-bottom: 10px !important;
      text-align: center;
}