/* Start Blog-Section */
#blog-section {
    padding-block: 6rem 12rem;
}

#blog-section .blog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

#blog-section .blog-head div h2 {
    color: #2f2f2f;
    font-size: 2rem;
    font-weight: 500;
}

#blog-section .blog-head div a {
    color: #2f2f2f;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.2s;
}

#blog-section .blog-head div a:hover {
    opacity: 0.5;
}

#blog-section .blog-wrapper-box .blog-img {
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 10px;
}

#blog-section .blog-wrapper-box .blog-img img {
    border-radius: 20px;
    transition: opacity 0.2s;
}

#blog-section .blog-wrapper-box:hover .blog-img img {
    opacity: 0.8;
}

#blog-section .blog-wrapper-box .blog-content {
    padding: 0 20px;
}

#blog-section .blog-wrapper-box .blog-content h4 {
    color: #2f2f2f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
}

#blog-section .blog-wrapper-box .blog-content p span {
    font-weight: 600;
    color: #2f2f2f;
    font-size: 14px;
}

/* End Blog-Section */