
/*START blog.cshtml*/
a {
    text-decoration: none !important;
}

h1, h2, h3 {
    margin-top: 48px;
    color: #405064;
}

h4, h5, h6 {
    margin-top: 32px;
    color: #405064;
}

h1 {
    text-align: center;
    font-weight: bold;
    max-width: 1000px
}

.blogContainer {
    max-width: 1000px;
    margin: 32px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap
}

.blogItem {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 5%
}

.blogHeader {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #405064;
    max-width: 285px;
    margin: 15px 0 15px 0;
}

.blogText {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 175%;
    color: #405064;
    max-width: 285px;
    margin-bottom: 15px;
}

.blogFooter {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

    .blogFooter img {
        width: 50px;
        margin-right: 10px;
    }

.blogAuthorArea {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.authorName {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 147%;
    letter-spacing: 0.03em;
    color: #405064;
}

.authorRole {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 0.03em;
    color: #405064;
}

.blogImgDiv {
    width: 285px;
    height:176px;
    overflow: hidden;
    border-radius: 10px
}

.blogItem a img {
    border-radius: 10px;
    transition: transform .3s;
    object-fit: cover;
    max-width: 285px;
}

    .blogItem a img:hover {
        transform: scale(1.05);
    }


@media only screen and (max-width: 992px) {

    .blogContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px
    }
}
/*END blog.cshtml*/
