/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.blog-card {
min-width: 394px;
max-width: 394px;
border-radius: 28px;
overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.blog-card__img-container {
height: 300px;
overflow: hidden;
}

.blog-card__img-container img {
width: 100%;
height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-card__content {
background-color: white;
padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.blog-card__content__cat-date {
text-align: left;
    width: 100%;
}

.blog-card__category {
color: var(--category-color, #3A2A1F);
    border: 2px solid var(--category-color, #3A2A1F);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 14px;
    line-height: 1.6;
    font-family: "Lato-Bold";
    margin-bottom: 16px;
    display: inline-block;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.blog-card__date {
color: #2A2243;
    font-size: 14px;
    margin-left: 16px;
    font-family: "Lato-Light";
}

.blog-card-title {
font-size: 26px;
width: 100%;
    line-height: 1.4;
font-family: "Lato-Bold";
color: #3A2A1F;
    margin-bottom: 32px;
}

.blog-card-excerpt {
font-size: 20px;
line-height: 1.6;
font-family: "Lato-Light";
color: #2A2243;
    margin-bottom: 16px;
}

.blog-card-link {
margin-top: auto;
display: inline-block;
    text-align: right;
    font-size: 16px;
color: #D38269;
font-family: "Lato-Bold";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: 1px;
display: -webkit-box;
    display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
align-items: center;
}

.blog-card-link__text {
position: relative;
    bottom: 2px;
}

.blog-card-link svg {
height: 16px;
    width: auto;
-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.blog-card-link svg path {
stroke: #D38269;
-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.blog-card-link:hover {
color: #EA4336;
-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.blog-card-link:hover svg path {
stroke: #EA4336;
-webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

@media (max-width: 550px) {
.blog-card {
min-width: inherit;
    max-width: inherit;
    width: 100%;
}

}