.title-section {
    column-gap: 90px;
    padding: 90px 0;
}

.title-section .title-col {
    padding: 70px 40px;
    background-color: #1F1F1F;
    position: relative;
    width: 10vw;
}

.title-section .title-col:first-child {
    border-radius: 0 20px 20px 0;
}

.title-section .title-col:first-child a {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 2;
}

.title-section .title-col:nth-child(2) {
    width: 100%;
    border-radius: 20px;
    transform: translateY(-25px);
}

.title-section .title-col:nth-child(3) {
    border-radius: 20px 0 0 20px;
}

.title-section .title-col:nth-child(3) a {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.title-section .title-col.active::before,
.title-section .title-col.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 5px solid #BEABA4;
    top: 0;
    left: 0;
    transform: translate(-25px, -25px);
}

.title-section .title-col.active::after {
    transform: translate(25px, 25px);
    border: 5px solid #AABDBF;
}

.title-section .blog-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
}

.title-section .blog-title {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.title-section .blog-date {
    margin-top: 50px;
    color: #fff;
    font-family: 'Poppins-Regular';
    font-size: 20px;
    text-align: center;
}

.title-section .read-time {
    margin-top: 20px;
    color: #fff;
    font-family: 'Poppins-Regular';
    font-size: 15px;
    text-align: center;
}

.blog-section .blog-details {
    row-gap: 20px;
}

.blog-section .blog-author-image {
    border-radius: 50%;
    overflow: hidden;
}

.blog-section .blog-author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;

}

.blog-section .blog-author-title {
    color: #000;
    text-align: center;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.blog-section .blog-author-name {
    color: #000;
}

.blog-section .share-blog {
    border-radius: 100px;
    border: 1.5px solid #B8B8B8;
    padding: 40px 30px;
    row-gap: 20px;
}

.blog-section .blog-content {
    margin-top: 0;
}

.blog-section .blog-content a {
    color: blue;
    text-decoration: underline;
}

.blog-section .blog-content img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
}

.blog-section .blog-content li {
    font-family: 'Poppins-Light';
}

.blog-footer .reassurance {
    position: relative;
    overflow: hidden;
}

.blog-footer .reassurance img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 0;
}

.blog-footer .reassurance p {
    color: #fff;
    position: relative;
    z-index: 1;
    line-height: 2;
}

.blog-footer .latest-post * {
    text-align: center;
    color: #000000;
    transition: all 300ms ease;
}

.blog-footer .latest-post svg {
    max-width: 100%;
}

.blog-footer .latest-post p {
    margin: 40px 0;
}

.blog-footer .latest-post:hover h1 {
    color: #F0684F;
}

.blog-content h3 {
    font-size: 25px;
}

.blog-content h4 {
    font-size: 20px
}

.blog-content h5 {
    font-size: 15px;
}

@media screen and (max-width: 989px) {
    .title-section {
        padding: 90px calc(var(--padding) * 2) 30px;
    }

    .title-section .blog-title {
        font-size: 20px;
    }

    .blog-section .blog-wrapper {
        flex-direction: column;
    }

    .blog-section .share-blog {
        flex-direction: row;
        padding: 20px;
        column-gap: 10px;
    }
}