.content-card {
	--card-border-color: #207975;
	--card-bg: #fff;
	--card-text-color: #000;
	--card-badge-bg: #000;
	--card-badge-color: #fff;

	width: 100%;
	min-width: 0;
	max-width: 100%;
	height: 100%;
}

.content-card__link {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    color: var(--card-text-color);
    text-decoration: none;

    background: var(--card-bg);
    border: 2px solid var(--card-border-color);
    border-radius: 40px;
}

.content-card__link,
.content-card__link:hover,
.content-card__link:focus {
    color: var(--card-text-color);
    text-decoration: none;
}

.content-card__media {
	position: relative;
    height: 186px;

    overflow: hidden;

    border-bottom: 1px solid var(--card-border-color);
	background: #f3f3f3;
}

.content-card__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%!important;

    object-fit: cover;
    object-position: center;

    display: block;
}

.content-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 27px 22px 24px;
}

.content-card__meta {
    margin-bottom: 22px;
}

.content-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 25px;
    padding: 7px 14px;
	margin-bottom: 20px;

    color: #fff;
    background: var(--card-text-color);
    border-radius: 999px;

    font-size: 14px;
    font-weight: 500;
    line-height: 1;
	text-transform: uppercase;
}

.content-card__date {
    display: block;

    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.content-card__title {
    margin: 0 0 24px;

    color: #000;
	text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
}

.content-card__excerpt {
    display: -webkit-box;

    overflow: hidden;

    color: #000;

    font-size: 16px;
    font-weight: 400;
    line-height: 19px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}