.page-blog-title h1 span{
    background: #ffffffb5;
}

.page-blog-title h1 {
    background: transparent;
}

.page-blog-title {
    background-size: cover;
}


.page-title h1{
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem;
    width: 100%;
}

.page-title h1 span {
    border: 1px solid #b4b4b4;
    padding: 0.5rem 2.5rem;
    border-radius: 99px;
    backdrop-filter: blur(2px);
}

.page-title h1 {
    font-size: 48px;
}

.blog article img {
    max-width: 100%;
    border-radius: 2rem;
    max-height: 25rem;
}

.blog article h2 ,
.blog article h3 ,
.blog article h4 ,
.blog article h5 ,
.blog article h6 {
    margin: 1rem 0;
    padding: 0 1rem;
}

.blog article {
    margin: 5rem 0;
}

.blog article p {
    padding: 0 1rem;
}

.blog article div {
    margin: 2rem 0;
}



.mySwiper-blog-page-comment .swiper-slide {
    border: 1px solid #EDEDED;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    height: auto;
}

.mySwiper-blog-page-comment .swiper-slide > div {
    gap: 0.75rem;
}

.mySwiper-blog-page-comment .swiper-slide h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #41444B;
}

.mySwiper-blog-page-comment .swiper-slide span {
    font-weight: 300;
    font-size: 12px;
    line-height: 24px;
    color: #7B808C;
}

.mySwiper-blog-page-comment .swiper-slide p {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    text-align: right;
    color: #2F3136;
    margin-top: 1rem;
}

.comment-nav {
    display: flex;
    gap: 1rem;
}

.comment-nav span {
    cursor: pointer;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.comment-nav span:hover {
    background: #d5d5d5;
    color: #ffffff;
}

.comment-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.comment-btn .main-btn {
    width: fit-content;
    padding: 0.75rem 2rem;
}

.comment-nav .disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.prev-icon {
    transform: rotate(180deg);
}

.comment-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.comment-modal.active {
    display: block;
}

.comment-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.comment-modal-box {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin: 10vh auto;
    animation: modalFadeUp 0.3s ease;
}

@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit;
    resize: none;
}

.comment-form .main-btn {
    border: 0;
}

.comment-modal .comment-modal-box h5 {
    margin: 0 0 1rem;
}

.like-product-sec h5 {
    font-weight: 700;
    font-size: 24px;
    text-align: right;
    color: #572D01;
    margin: 3rem 0 28px;
}

.blog {
    margin: 4rem 0;
}