.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 10px 40px 0px #0000000D;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card .news-card-image {
    display: block;
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.news-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 12px;
}

.news-card .card-title {
    font-weight: 700;
    color: #05073C;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-card .card-title a {
    color: inherit;
}

.news-card .news-location {
    margin-bottom: 4px;
}

.news-card .location-text {
    font-family: "Raleway", Helvetica;
    font-weight: 500;
    color: #ff6969;
    font-size: 14px;
}

.news-card .location-ico {
    top: 2px;
    position: relative;
}

.news-card .news-badges-tags {
    position: absolute;
    top: 10px;
    left: 12px;
    max-width: 100%;
}

.news-card .news-badge-tag {
    background-color: rgba(255,255,255,0.8);
    color: #05073C;
    border-radius: 11px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    display: inline-block;
    padding: 0 8px;
}

.news-card .news-badge-tag .dot-red {
    margin-right: 2px;
    top: -1px;
    position: relative;
}

.news-card .news-date {
    display: flex;
    align-items: center;
}
.news-card .news-date-text {
    font-weight: 500;
    font-size: 14px;
    color: #05073C;
}
.news-card .news-date-img {
    margin-right: 8px;
}