.image-banner-wrapper.blog-banner-wrapper {
    background: url(../images/blog-bg.jpg);
}

.the-blog-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    &:hover

{
    .blog-image

{
    img

{
    scale: 1.1;
}

}
}

.blog-image {
    height: 100%;
    width: 56%;
    overflow: hidden;
    img

{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

}

a {
    text-decoration: none;
}

.blog-content {
    width: 44%;
    background-color: #f5f5f5;
    padding: 10px;
    height: 100%;
    .footwear

{
    background-color: #ff5f00;
    color: #fff;
    border-radius: 2px;
    padding: 5px;
    font-size: 12px;
    display: block;
    width: 60px;
    margin-bottom: 10px;
}

.blog-heading {
    font-size: 15px;
    font-weight: 600;
    color: #ff5f00;
    line-height: 1.2;
    display: block;
    &:hover

{
    color: #000;
}

}

ul {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-block: 10px;
    flex-wrap: wrap;
    li, a

{
    color: #000;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    &:hover

{
    color: #484631;
}

}
}

p {
    line-height: 1.5em;
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

a.btn {
    padding: 0;
    &:hover

{
    color: #ff5f00;
}

}
}
}

.recent-post {
    padding: 5%;
    h2

{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
    background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
    -webkit-animation: pa-text-gradient 8s infinite;
    animation: pa-text-gradient 8s infinite;
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 3px solid #6ec1e4;
}

ul {
    height: 200px;
    overflow-y: scroll;
    li

{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 15px;
    &::before

{
    content: "\f03a";
    /* Unicode for Font Awesome icon (e.g., check-circle) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: #ff5f00;
    font-size: 10px;
    /* Optional: change icon color */
}

a {
    color: #000;
    font-size: 14px;
    &:hover

{
    color: #ff5f00;
}

}
}
}
}

@-webkit-keyframes pa-text-gradient {

    0%, 100% {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }

    50% {
        -webkit-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg)
    }
}

@keyframes pa-text-gradient {

    0%, 100% {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }

    50% {
        -webkit-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg)
    }
}

@media (max-width: 768px) {
    .the-blog-wrapper {
        flex-direction: column;
        .blog-image

{
    width: 100%;
}

.blog-content {
    width: 100%;
}

}
}


/* blog post detail styles */
.blog-detail-wrapper {
    background-color: #E5E5E5;
    padding-block: 30px;
    h2

{
    font-size: clamp(1.625rem, 1.3068rem + 1.5909vw, 2.5rem);
    color: #ff5f00;
    margin-top: 10px;
}

p {
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.375rem, 1.1932rem + 0.9091vw, 1.875rem);
    margin-bottom: 20px;
    a

{
    color: white;
}

}

.form-control {
    border-color: #000;
}

}

.blog-meta {
    display: flex;
    margin-block: 15px;
    flex-wrap: wrap;
    li

{
    border-right: 1px solid;
    padding-inline: 10px;
    &:last-child

{
    border-right: none;
}

a {
    color: #000;
    font-size: 16px;
    gap: 10px;
    svg

{
    color: #ff5f00;
}

}
}
}

.blog-list {
    padding-left: 30px;
    margin-bottom: 30px;
    li

{
    list-style: disc;
    margin-bottom: 10px;
}

}

.img-author {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    img

{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

}

/* .comment-wrapper ul {
    height: 200px;
    overflow-y: auto;
    padding-right: 20px;
} */

.comment {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding-block: 10px;
    border-bottom: 1px solid #afafaf;
}

   /* .comment#reply {
        margin-left: 40px;
    }*/
    .comment.reply-comment {
        margin-left: 40px;
    }

button.reply {
    font-size: 11px;
    color: #333;
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
}

.comment-text {
    width: 100%;
    p

{
    font-size: 14px;
    margin-bottom: 0;
}

}

.comment-details {
    display: flex;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap-reverse;
    span

{
    font-size: 11px;
    color: #333;
    &:last-of-type

{
    font-style: italic;
}

}
}

.author {
    font-size: 14px;
    small

{
    font-weight: 400;
}

}

.blog-main-wrapper .container {
    max-width: 1650px;
}
