/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.blog-slider {
}

.blog-slider__wrapper {
  margin-bottom: 20px;
}


.blog-slider .blog-slider__nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.blog-slider__nav-wrapper .blog-slider__button {
  background-position: center;
  background-repeat: no-repeat;
  padding: 12px;
  color: #ffffff;
  border-radius: 2px;
  background-color: #008533;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in;
}

.blog-slider__nav-wrapper .blog-slider__button:hover {
  cursor: pointer;
  background-color: #00ae42;
}

.blog-slider__nav-wrapper .swiper-button-disabled {
  background-color: #EDF0EF;
  color: #BBC6C3;
}

.blog-slider__nav-wrapper .swiper-button-disabled:hover {
  background-color: #EDF0EF;
  cursor: default
}

.blog-slider__button-next,
.blog-slider__button-prev {
  user-select: none;
}

.blog-slider__button-next::after,
.blog-slider__button-prev::after {
  content: "";
}

.blog-listing__wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog-category-listing {
  padding-top: 20px;
  padding-bottom: 60px;
}

.blog-listing__tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9e3e1;
/*   gap: 15px; */
}

.blog-listing__tag {
  color: #677E91;
  min-width: 100px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.17;
  cursor: pointer;
  position: relative;
  padding: 10px 20px 12px;
  white-space: nowrap;
  transition: all 0.3s;
  text-align: center;
}

.blog-listing__tag:hover {
  color: #007da5;
/*   border-color: #007da5; */
}

.blog-listing__tag.selected-tag {
/*   border-color: #008533; */
  color: #008533;
}

.blog-listing__tag.selected-tag:before {
/*   border-color: #008533; */
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  animation: grow-width 0.5s forwards;
  background-color: #008533;
}

@keyframes grow-width {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}


.blog-listing__posts {
  display: grid;
  gap: 48px 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.blog-listing__posts.empty {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.blog-listing__post-card {
  text-decoration: none;
}

.blog-listing__post-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  gap: 14px;
}

.post-card__img-wrapper {
  overflow: hidden;
  border-radius: 3px;
}

.blog-listing__post-card:hover .post-card__img  {
  transform: scale(1.05);
}

.blog-listing__post-card:hover .post-card__title {
  color: inherit !important;
}

.post-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  overflow-clip-margin: unset;
  transition: all 0.3s;
}

.post-card__open-btn {
  position: absolute;
  right: 12px;
  top: 150px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #1D252C;
  border-radius: 50%;
}

.post-card__tags {
  position: absolute;
  display: flex;
  align-items: stretch;
  gap: 8px;
  left: 12px;
  top: 12px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.17;
  font-weight: 500;
}

.post-card__tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
  background: #0000001A;
  backdrop-filter: blur(40px);
}

.post-card__tag.small {
  padding: 8px 11px;
}

.post-card__details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.post-card__details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.post-card__details-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.details-author__img-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.details-author__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-author__name {
  font-size: 16px;
  font-weight: 500;
  color: #323E48;
  line-height: 1.5;
}

.post-card__time {
  font-size: 14px;
  color: #5B6670;
  line-height: 1.17;
  white-space: nowrap;
}

.post-card__title {
  font-size: 20px;
  color: #323E48;
  line-height: 1.2;
  font-weight: 600;
}

.select-dropdown {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.select-dropdown__button {
		padding: 10px 34px 10px 10px;
		color: #677E91;
/* 		border: 1px solid #d9e3e1; */
		border-radius: 2px;
		cursor: pointer;
		width: fit-content;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.17;
    white-space: nowrap;
    position: relative;

		&::focus {
			outline: none;
		}
  
    &:hover {
      color: #007da5;
    }
}

.select-dropdown__button.selected:before {
/*   border-color: #008533; */
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  animation: grow-width 0.5s forwards;
  background-color: #008533;
}

.select-dropdown__button.selected {
  color: #008533;
}

.select-dropdown__button svg {
		position: absolute;
		right: 10px;
		top: 11px;
}

.select-dropdown.active svg {
  transform: scaleY(-1);
}

.select-dropdown__list-wrapper {
  width: 100%;
  height: 0;
  position: relative;
}

.select-dropdown__list {
		position: absolute;
		display: block;
    top: 10px;
		right: 0;
		max-height: 300px;
    width: 300px;
		overflow: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		opacity: 0;
		pointer-events: none;
		transform-origin: top left;
		transform: scale(1,0);
		transition: all ease-in-out .3s;
		z-index: 2;
  border-radius: 2px;
  border: 1px solid #d9e3e1;
}

.select-dropdown__list.active {
			opacity: 1;
			pointer-events: auto;
			transform: scale(1,1);
}

.select-dropdown__list-item {
		display: block;
		list-style-type: none;
		padding: 10px 15px;
		background: #fff;
		font-size: 14px;
		line-height: 1.4;
		cursor: pointer;
		color: #616161;
		transition: all ease-in-out .3s;
	}

.select-dropdown__list-item:not(:first-of-type) {
  border-top: 1px solid #e8edec;
}

.posts-pagination {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posts-pagination ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.posts-pagination .paginationjs-prev {
  margin-right: 10px;
}

.posts-pagination .paginationjs-prev a {
  padding-left: 15px;
  position: relative;
}

.posts-pagination .paginationjs-next a {
  padding-right: 15px;
  position: relative;
}

.posts-pagination .paginationjs-prev a:before {
  position: absolute;
  content: '';
  left: 0;
  top: 5px;
  border: solid #323E48;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.posts-pagination .paginationjs-next a:before {
  position: absolute;
  content: '';
  right: 0;
  top: 5px;
  border: solid #323E48;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.posts-pagination .paginationjs-next {
  margin-left: 10px;
}

.posts-pagination .paginationjs-prev, .posts-pagination .paginationjs-next {
  padding: 10px;
  width: 103px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #F1F4F3;
  transition: background-color 0.3s;
  cursor: default;
}

.posts-pagination .paginationjs-prev:not(.disabled):hover, .posts-pagination .paginationjs-next:not(.disabled):hover {
  background-color: #e0e4e3;
  cursor: pointer;
}

.posts-pagination .paginationjs-prev.disabled a, .posts-pagination .paginationjs-next.disabled a {
  cursor: default;
  opacity: 0.5;
}

.posts-pagination .paginationjs-prev a, .posts-pagination .paginationjs-next a {
  font-size: 16px;
  line-height: 1.17;
  font-weight: 600;
  color: #323E48;
}

.posts-pagination .paginationjs-page, .posts-pagination .paginationjs-ellipsis {
  cursor: pointer;
  display: flex;
}

.posts-pagination .paginationjs-page a, .posts-pagination .paginationjs-ellipsis a {
  padding: 10px 16px;
  border-radius: 2px;
  border: 1px solid #BBC6C3;
  font-size: 16px;
  line-height: 1.17;
  font-weight: 600;
}

.posts-pagination .paginationjs-page a, .posts-pagination .paginationjs-ellipsis a {
  color: #677E91;
}

.posts-pagination .paginationjs-page.active a {
  border-color: #008533; 
}

.posts-pagination .paginationjs-page.active a {
  color: #008533; 
}

.skeleton-loading {
  pointer-events: none;
}

.skeleton-loading .post-card__img-wrapper img,
.skeleton-loading .details-author__img-wrapper img,
.skeleton-loading .post-card__tags {
  opacity: 0;
}

.skeleton-loading .post-card__img-wrapper,
.skeleton-loading .details-author__name,
.skeleton-loading .post-card__time,
.skeleton-loading .post-card__title,
.skeleton-loading .details-author__img-wrapper  {
  animation: skeleton-loading 2s linear infinite alternate;
  color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

@media (max-width: 990px) {
  .blog-listing__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .blog-listing__posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }
  
  .blog-category-listing .blog-listing__posts {
    margin-top: 0px;
  }
  
  .blog-listing__tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .blog-listing__tag {
    min-width: fit-content;
  }
  
  .blog-listing__tag.selected-tag:before {
    bottom: 0;
  }
  
  .details-author__name {
    font-size: 16px;
  }
}

@media (max-width: 660px) {
  .blog-listing__posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 44px;
  }
  
  .post-card__open-btn {
    display: flex;
  }
  
  .posts-pagination .paginationjs-prev, .posts-pagination .paginationjs-next {
    width: 42px;
    overflow:hidden;
  }
  
  .posts-pagination .paginationjs-prev {
    justify-content: flex-start;
  }
  
  .posts-pagination .paginationjs-next {
    justify-content: flex-end;
  }
  
  .posts-pagination .paginationjs-prev a {
    padding-left: 35px;
  }
  
   .posts-pagination .paginationjs-next a {
    padding-right: 35px;
  }
  
  .posts-pagination .paginationjs-prev a:before {
    left: 8px;
  }
  
  .posts-pagination .paginationjs-next a:before {
    right: 8px;
  }
}
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jobs-list__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jobs-list__title {
  color: #000;
  font-family: "Work Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

.job-card {
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  border-radius: 4px;
  transition: all  0.3s ease-in;
}

.job-card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.job-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  color: #007da5;
  text-overflow: ellipsis;
  overflow: hidden;
}

.job-title:after {
  content: '';
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: transparent;
}

.job-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.job-details-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  color: #323e48;
}

.job-details-item_location {
  margin-bottom: 8px;
}

.job-details-item-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  color: #323e48;
  margin: 0;
}
.selected-posts__post-card:hover .post-card__img  {
  transform: scale(1.05);
}

.selected-posts__post-card:hover .post-card__title {
  color: inherit !important;
}

.post-card__img-wrapper {
  overflow: hidden;
  border-radius: 3px;
}

.post-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  overflow-clip-margin: unset;
  transition: all 0.3s;
}

.post-card__open-btn {
  position: absolute;
  right: 12px;
  top: 150px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #1D252C;
  border-radius: 50%;
}

.post-card__tags {
  position: absolute;
  display: flex;
  align-items: stretch;
  gap: 8px;
  left: 12px;
  top: 12px;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.17;
  font-weight: 500;
}

.post-card__tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
  background: #0000001A;
  backdrop-filter: blur(40px);
}

.post-card__tag.small {
  padding: 8px 11px;
}

.post-card__details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
}

.post-card__details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.post-card__details-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.details-author__img-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.details-author__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-author__name {
  font-size: 16px;
  font-weight: 500;
  color: #323E48;
  line-height: 1.5;
}

.post-card__time {
  font-size: 14px;
  color: #5B6670;
  line-height: 1.17;
  white-space: nowrap;
}

.post-card__title {
  font-size: 20px;
  color: #323E48;
  line-height: 1.2;
  font-weight: 600;
}

.selected-posts {
  overflow: hidden;
}

.selected-posts__title-wrapper {
  justify-content: space-between;
}

.selected-posts .blog-link-with-arrow.selected-posts__link {
  color: #1D252C;
}

.selected-posts .card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  aspect-ratio: 484 / 616;
  overflow: hidden;
  transition: all 0.3s ease-in;
  position: relative;
}

.selected-posts .card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.selected-posts .card__tags {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.selected-posts .card__tag {
  border-radius: 2px;
  background: #1D252C;
  /* bg-blur/40 */
  backdrop-filter: blur(20px);
  display: flex;
  padding: 8px 20px;
  align-items: center;
  color: #00A6CE;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.selected-posts .card__tag.small {
  padding: 8px 11px;
}

.selected-posts .card__link {
  display: flex;
}

.selected-posts .card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.selected-posts .card__author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.selected-posts .card__author-img {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  overflow: hidden;
  border-radius: 50%;
}

.selected-posts .card__author-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
  color: #fff;
}

.selected-posts .card:hover .card__description{
  max-height: 100px;
  height: fit-content;
  transition: max-height 0.75s ease-in-out;
}

.selected-posts .card__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 43.2px */
  color: #fff;
  max-height: 130px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.selected-posts .card__description {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.50) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   margin: 0;
   max-height: 0;
   transition: max-height 0.75s ease-in-out;
}

.selected-posts .blog-link-with-arrow {
  color: #ffffff;
}

.selected-posts .blog-link-with-arrow:hover {
  color: #00A6CE;
}

.selected-posts .swiper {
  overflow: visible;
}

.selected-posts .card__footer {
  display: none;
}

.selected-posts__footer {
  display: none;
}

@media (max-width: 844px) {
  .selected-posts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .selected-posts .card__link {
    display: none;
  }
  .selected-posts .card__footer {
    display: block;
  }
  
  .selected-posts .card__title {
    font-size: 24px;
    line-height: 31.99px; /* 133.292% */
  }
}

@media (max-width: 640px) {
  .selected-posts .card__description {
    font-size: 12px
  }
  .selected-posts__title-wrapper {
    justify-content: center;
  }
  
  .selected-posts__title-wrapper .selected-posts__link {
    display: none;
  }
  
  .selected-posts__footer {
    display: flex;
    justify-content: center;
  }
  
  .selected-posts__footer a {
    margin-top: 32px;
  }
}

.blog-section-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  color: #323E48;
}

.blog-section-title__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.blog-link-with-arrow {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease-in;
  text-decoration: none;
  color: #1D252C;
  
}

.blog-link-with-arrow:hover, .blog-link-with-arrow:focus {
  color: #00A6CE;
}

.blog-link-with-arrow__content {
  margin: 0;
}

.blog-link-with-arrow__icon {
  color: inherit;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-input {
  background: transparent;
  padding: 16px 48px 16px 16px;
  border-radius: 2px;
  border: 1px solid #BDC8D1;
  font-size: 14px;
  color: #323E48;
  position: relative;
}

.blog-input:hover, .blog-input:focus {
  outline-color: rgba(0, 125, 165, 1);
}

.blog-input::placeholder {
 color: #677E91; 
}

button.blog-button {
  padding: 14px 45px;
  height: auto;
  border-radius: 2px;
  background: #008533;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.17;
  text-transform: none;
  white-space: nowrap;
}

@media screen and (max-width: 844px) {
  .blog-section-title__wrapper {
    margin-bottom: 32px;
  }
  
  .blog-section-title {
    font-weight: 700;
  }
}

@media screen and (max-width: 640px) {
  .blog-section-title {
    font-size: 28px;
    line-height: 36px; /* 128.571% */
  }
}

.blog-post-wrapper {
 background: #F1F4F3;
}

.blog-post-body-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog-post-body-wrapper .blog-article ul,
.blog-post-body-wrapper .blog-article ol {
  padding-left: 30px;
  margin: 20px 0px;
}

.blog-short-body {
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-gap: 73px;
}

.blog-long-body {
  display: grid;
  grid-template-columns: 270px 1fr;
  grid-gap: 73px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.blog-sidebar:has(.side-content) {
  position: sticky;
  top: 100px;
  height: fit-content;
  overflow-y: auto;
}

.blog-side-content_desktop {
  display: block;
}

.blog-side-content_mobile {
  display: none;
  z-index: 9;
}

.blog-side-content_mobile.full-width-box {
  margin: 0 -20px;
}

.blog-article__additional-block_tablet {
  display: none;
}

.blog-article {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .blog-long-body, .blog-short-body {
    grid-template-columns: 1fr 52px;
    grid-gap: 49px;
  }
  
  .blog-side-content_desktop {
    display: none;
  }
  
  .blog-side-content_mobile {
    display: block;
    position: sticky;
    top: 64px;
    left: 0px;
    right: 0px;
    height: fit-content;
    overflow-y: auto;
    /* margin-left: -20px;
    margin-right: -20px; */
    transition: all 0.3s ease-in-out;
  }
  
  .blog-sidebar {
    order: 2;
    gap: 0px;
    top: 140px !important;
  }
  
  .blog-short-sidebar {
    display: block;
    position: sticky;
    left: 0px;
    right: 0px;
    height: fit-content;
    overflow-y: auto;
  }
  
  .blog-post-body-wrapper .blog-subscription-simple-form {
    margin-top: 40px;
  }
  
  .blog-post-body-wrapper:has(.blog-long-body) {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  
  .blog-post-body-wrapper:has(.blog-short-body) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .blog-article__additional-block_tablet {
    display: block;
  }
  
  .blog-article__additional-block_tablet .blog-subscription-simple-form form {
    flex-direction: row;
  }
  
  .blog-article__additional-block_tablet {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .blog-long-body, .blog-short-body {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
  
  .blog-post-body-wrapper:has(.blog-short-body) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .blog-article {
    order: 1;
  }
  
  .blog-sidebar {
    order: 0;
    display: none;
  }
  
  .blog-sidebar:has(.side-content) {
    position: static;
  }
}

@media (max-width: 560px) {
  .blog-article__additional-block_tablet .blog-subscription-simple-form form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .blog-side-content_mobile {
    top: 55px;
  }
}

.blog-article p:not(:last-child) {
  margin-block-end: 12px;
}

.blog-article p {
  text-align: justify;
}

.blog-article a {
  color: #007094 !important;
  font-weight: bold;
}

.blog-article h2 span, 
.blog-article h3 span {
    color: #5b6670 !important;