.blog-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: auto;
    gap: 50px 30px;
}
.card-body_date-text {
    text-align: right;
    font-size: 12px;
    color: #4685F9;
    margin: 0 14px 10px 0;
}

.card-body_content h2,
.card-body_content a {
    padding: 0 9px;
}
.card-body_content h2 {
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}
.card-body_short-text {
    font-size: 10px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 36px;
}
.card-body_content {
    background-color: #F8F8F8;
    transition: background 0.3s ease;
    border: 1px solid transparent;
}
.card-body_content img {
    opacity: 20%;
    transition: opacity 0.3s ease;
}


@media (hover: hover) and (pointer: fine) {
    .card-body_content:hover {
        border: 1px solid #0000001A;
        background-color: transparent;
    }
    
    .card-body_content:hover img {
        opacity: 100%;
        transition: opacity 0.3s ease;
    }
}




.underline {
    width: 90%;
    height: 3px;
    border-radius: 1px;
    background-color: #FFC700;
    margin-top: 15px;
}

.blog-container {
    position: relative;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1431px;
}

.blog-header__text {
    position: relative;
    text-transform: uppercase;
    font-size: 50px;
    line-height: 0px;
}

.blog-container--header-line::after {
    top: 10px;
}

.blog-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-content__underline::after {
    content: "";
    position: absolute;
    left: 5%;
    width: 90%;
    height: 3px;
    border-radius: 1px;
    background-color: var(--yellow);
    z-index: 50;
}

.blog-content--text {
    max-width: 900px;
}

.blog-content__header {
    position: relative;
    font-size: 40px;
    line-height: 45px;
}

.blog-content__pararagraph {
    font-size: 25px;
}

.blog-content__twin {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}


.blog-content__marker {
    position: relative;
}

.blog-content__image {
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

.blog-content__figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.blog-content--underline {
    margin-top: 30px;
}

.blog-content__figcaption {
    font-size: 25px;
    margin-top: 15px;
}

.blog-content__list {
    max-width: 900px;
    font-size: 25px;
    text-align: left;
}

.blog-content__list-item {
    margin-left: 30px;
}


@media (min-width: 300px) and (max-width: 480px) {
    .blog-container {
        max-width: 300px;
    }

    .blog-content {
        max-width: 300px;
    }

    .blog-header__text {
        font-size: 25px;
    }

    .blog-content--text {
        max-width: 290px;
    }

    .blog-content__header {
        font-size: 20px;
        line-height: 20px;
    }

    .blog-content__pararagraph {
        font-size: 14px;
    }

    .blog-content__twin {
        flex-direction: column;
    }

    .blog-content__figcaption {
        font-size: 14px;
    }

    .blog-content__list {
        font-size: 14px;
    }

    .blog-content__marker::before {
        content: "";
        position: absolute;
        top: 4px;
        left: -8px;
        width: 5px;
        height: 5px;
        border-radius: 4px;
        background-color: black;
    }


}

@media (min-width: 480px) and (max-width: 900px) {
    .blog-container {
        max-width: 480px;
    }

    .blog-content {
        max-width: 480px;
    }

    .blog-header__text {
        font-size: 40px;
    }

    .blog-content--text {
        max-width: 430px;
    }

    .blog-content__header {
        font-size: 30px;
        line-height: 30px;
    }

    .blog-content__pararagraph {
        font-size: 18px;
    }

    .blog-content__twin {
        flex-direction: column;
    }

    .blog-content__figcaption {
        font-size: 18px;
    }

    .blog-content__list {
        font-size: 14px;
    }

    .blog-content__marker::before {
        content: "";
        position: absolute;
        top: 4px;
        left: -15px;
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background-color: black;
    }
}


@media (min-width: 900px) {

    .blog-content__twin {
        flex-direction: row;
    }


    .blog-content__marker::before {
        content: "";
        position: absolute;
        top: 8px;
        left: -30px;
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background-color: black;
    }
}