.article__wrap h4 {
	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 130%;
	margin: 0;
	color: #183B8F;
}

.article__wrap h5 {
	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	margin: 0;

	color: #183B8F;
}

.article-wrapper {
	position: relative;
	width: 100%;
	height: fit-content;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
}

.article-header {
	position: relative;
	width: 100%;
	height: fit-content;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 14px 40px;
	gap: 24px;

	background: rgba(51, 203, 102, 0.1);
	border-radius: 16px;
}

.article-header__text {
	position: relative;

	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	margin: 0;

	color: #001689;
}

.article-header__month-text {
	position: relative;

	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 48px;
	line-height: 24px;
	margin: 0;
	text-align: center;
	white-space: nowrap;

	color: #33CB66;
}

.article-header__month-text span {
	font-size: 20px;
	line-height: 24px;
}

.article-list {
	position: relative;
	margin: 0;
	padding: 0;
	margin-left: 20px;

	display: flex;
	flex-direction: column;
	gap: 4px;

	color: #444444;
	list-style: none;
}

.article-list__item {
	position: relative;
	height: fit-content;
	min-height: 30px;
	font-family: "RotonReg", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;

	display: flex;
	flex-direction: row;
	gap: 15px;
}

.article-list__item::before {
	content: "";
	position: relative;
	width: 24px;
	min-width: 24px;
	height: 24px;

	border: 2px dashed #C2F0D2;
	border-radius: 8px;
	box-sizing: border-box;
}

.article-list__item--green-star::before {
	border: none;
	border-radius: 0;
	background: url('/static/f/med_article/557/img/green-star-icon.svg') no-repeat;
}

.article-list__item--red-star::before {
	border: none;
	border-radius: 0;
	background: url('/static/f/med_article/557/img/red-star-icon.svg') no-repeat;
}

.article-header__image {
	position: relative;
}

.article-header__image--mobile {
	display: none;
}

.article-block {
	position: relative;
	width: 100%;
	height: fit-content;
	padding: 24px 40px;

	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;

	border: 2px dashed #C2F0D2;
	border-radius: 16px;
}

.article-block--note {
	border: 2px dashed #33CB66;
}

.article-block--2 {
	padding-bottom: 0;
}

.article-block__note {
	position: relative;
	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	margin: 0;

	color: #33CB66;
}

.article-block__title {
	position: relative;
	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	margin: 0;

	color: #183B8F;
}

.article__wrap .article-block__text {
	position: relative;
	font-family: "RotonReg", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	margin: 0;
	color: #444444;
}

.article__wrap .article-block__text--2 {
	margin-bottom: 24px;
}

.article-block__image {
	position: relative;
	width: 100%;
	height: auto;
	max-width: 315px;
	margin-left: auto;
	margin-right: auto;
}

.article-block__image--block-3 {
	order: -1;
}

.article-block__text-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.article-lists-wrapper {
	position: relative;
	width: 100%;
	height: fit-content;

	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 56px;
}

.article-lists-wrapper__list {
	margin: 0;
}

.article-lists-wrapper__list--1 {
	max-width: 360px;
}

.article-lists-wrapper__list--2 {
	max-width: 334px;
}

.article-lists-wrapper__text {
	font-family: "RotonReg", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	margin: 0;

	color: #444444;
}

.article-footer {
	position: relative;
	width: 100%;
	height: fit-content;
}

.article__wrap .article-footer__text {
	position: relative;

	font-family: "RotonReg", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	margin: 0;
	text-align: justify;

	color: #444444;
}

@media (max-width: 768px) {

	.article-header {
		height: 170px;
		flex-direction: column;
		flex-wrap: wrap;
	}

	.article-header__text {
		font-size: 14px;
		line-height: 130%;
		order: -2;
	}

	.article-header__month-text {
		order: -1;
	}

	.article-block {
		flex-direction: column-reverse;
		gap: 12px;
		padding: 20px;
	}

	.article-block--2 {
		padding-bottom: 0;
	}
}

@media (max-width: 559px) {

	.article-header {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: -20px;
		border-radius: 0;
		padding: 30px 0px 30px 30px;
		gap: 14px 4px;
	}

	.article-header__image--desktop {
		display: none;
	}

	.article-header__image--mobile {
		display: block;
		width: 209px;
		height: 135px;
		left: -50px;
	}

	.article__wrap h4 {
		font-size: 16px;
		line-height: 130%;
	}

	.article__wrap h5 {
		font-size: 14px;
		line-height: 130%;
	}

	.article-header {
		margin-left: -20px;
		margin-right: -20px;
		width: calc(100% + 40px);
		border-radius: 0;
	}

	.article-block__title {
		font-size: 14px;
		line-height: 130%;
	}

	.article-list__item {
		font-size: 14px;
		line-height: 130%;
	}

	.article-block__note {
		font-size: 14px;
		line-height: 130%;
	}

	.article__wrap .article-block__text {
		font-size: 12px;
		line-height: 130%;
		padding-left: 0;
	}

	.article__wrap .article-footer__text {
		font-size: 10px;
	}

	.article__wrap .article-lists-wrapper__text {
		font-size: 14px;
		line-height: 130%;
	}

	.article-lists-wrapper {
		flex-direction: column;
		gap: 0px;
	}

	.article-list {
		margin-left: 0;
	}

	.article-lists-wrapper__list--1 {
		padding-left: 20px;
	}

	.article-lists-wrapper__list--2 {
		padding-left: 20px;
	}
}