.blog {
    margin: 0;
    border: none;
    outline: none;
    display: block;
    padding: 80px 0 0;
}

.blog__row {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    font-family: 'Inter';
}

.blog__row:first-child {
    margin-top: 0;
}

.blog__row:nth-child(even) {
    flex-direction: row-reverse;
}

.blog__row .blog__image {
    width: 45%;
    min-height: 323px;
    position: relative;
}

.blog__row .blog__image img {
    width: 100%;
    height: auto;
}

.blog__info {
    position: absolute;
    max-width: 345px;
    width: 100%;
    height: 75px;
    bottom: 35px;
    left: 0;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4.43038px);
}

.blog__info .blog__category {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #4F7BB5;
}

.blog__info .blog__date {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #595959;
}

.blog__row .blog__text {
    width: 55%;
    display: table;
    min-height: 323px;
}

.blog__text h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    color: #000000;
    margin-bottom: 19px;
}

.blog__text .blog__desc {
    display: block;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}

.blog__row:nth-child(odd) .blog__text > div {
    padding: 0 0 0 40px;
}

.blog__row:nth-child(even) .blog__text > div {
    padding: 0 40px 0 0;
}

.blog__detail-btn {
    max-width: 336px;
    width: 100%;
    height: 80px;
    background: #F5F5F5;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #272727;
}

.blog__detail-btn:hover {
    color: #272727;
}

.blog__show-more {
    max-width: 336px;
    width: 100%;
    height: 80px;
    margin: 50px auto 0;
    background: #272727;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #FFFFFF;
}

.blog__show-more:hover {
    color: #FFFFFF;
}

@media only screen and (max-width: 767px) {

    .blog {
        padding: 60px 0 0;
    }

    .blog__row {
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 37px;
    }
    .blog__row:last-child {
        margin-bottom:0;
    }

    .blog__row:nth-child(odd) .blog__text > div {
        padding: 0;
    }

    .blog__row:nth-child(even) .blog__text > div {
        padding: 0;
    }

    .blog__row .blog__image {
        width: 100%;
        min-height:initial;
        margin-bottom: 50px;
    }

    .blog__info {
        max-width: 300px;
        width: 100%;
        height: 60px;
        bottom: 35px;
    }

    .blog__info .blog__category {
        font-size: 15px;
        line-height: 27px;
    }

    .blog__info .blog__date {
        font-weight: 400;
        font-size: 15px;
        line-height: 27px;
    }

    .blog__row .blog__text {
        width: 100%;
        min-height: initial;
    }

    .blog__text h3 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .blog__text .blog__desc {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 22px;
    }

    .blog__detail-btn {
        max-width: 100%;
        font-size: 20px;
        line-height: 27px;
        height: 66px;
    }

    .blog__show-more {
        max-width: 100%;
        font-size: 20px;
        line-height: 27px;
        height: 66px;
        margin-top: 13px;
    }
}
