
section.services header {
	border-bottom: 2px solid #006581;
	padding-bottom: 48px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin: 0 auto 36px;
}

section.services header .service {
	color: #006581;
	font-weight: 700;
	background-color: #F2F2F2;
	height: auto;
	padding: 0.4rem 0.8rem;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	border-radius: 15px;
	transition: all .3s ease-in-out;
}

section.services header .service:hover,
section.services header .service.is-active {
	background-color: #006581;
	color: #fff;
}

section.services header .service p {
  font-family: "Spartan Bold";
	font-size: 14px;
	line-height: 1.2;
	white-space: normal;
	margin: 0;
}

section.services .container-actually {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: space-around;
	align-content: center;
	gap: 30px;
}

section.services .container-actually > article.notice-home {
	min-width: 0;
}
section.services .container-actually > article.notice-home > h2
{
  margin-bottom: 20px;
  font-family: "Spartan-Medium";
  font-size: 16px;
  line-height: 1.2;
}
section.services article.notice-home > a img {
	width: 100%;
	min-height: 223px;
	min-width: 0;
	object-fit: cover;
}
section.services .services-results article.notice-home > a.services-results__thumb {
	display: block;
	position: relative;
}

section.services .services-results article.notice-home > a.services-results__thumb .news-features__arrow {
	position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #006581;
    color: #1f2733;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
}

section.services .services-results article.notice-home > a.services-results__thumb .news-features__arrow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	min-height: 0;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge {
	position: absolute;
	right: 14px;
	bottom: -16px;
	z-index: 2;
	max-width: 74px;
	max-height: 74px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #006581;
	padding: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
article.notice-home .footer-article p.category
{
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: fit-content;
    padding: 0.4rem 0.8rem;
    border-radius: 43px;
    background: #F2F2F2;
    font-family: "Spartan-Regular";
    font-weight: 600;
    line-height: 1.2;
    font-size: 14px;
    color: #2C2E35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--actua {
	background: #009660;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--orthem {
	background: #FF647C;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--abala {
	background: #467A7A;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--digiltea {
	background: #002651;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--ambex {
	background: #E4042C;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--3rs {
	background: #B8BD38;
}

section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge.services-results__author-badge--entorno {
	background: #FF7A2C;
}
section.services .services-results article.notice-home > a.services-results__thumb .services-results__author-badge img {
	min-width: inherit;
	min-height: inherit;
	height: auto;
}

section.services .services-results article.notice-home .notice-home__byline {
	margin-block: 1.7rem 1.3rem;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

section.services .services-results article.notice-home .notice-home__byline p,
section.services .services-results article.notice-home .notice-home__byline time {
	margin: 0;
  font-family: "Spartan-Regular";
  color:#2C2E35;
  line-height: 1.2;
  font-size: 12px;
}

section.services article.notice-home > p {
	margin-bottom: 1rem;
  font-family: "Spartan-Regular";
  font-size: 14px;
  color: #555555;
}

section.services .services-results__status {
	grid-column: 1 / -1;
	margin: 0;
	text-align: center;
	color: #006581;
	font-weight: 600;
}

section.services .services-results__status--error {
	color: #b00020;
}

section.services.is-loading {
	pointer-events: none;
	opacity: .75;
}

/* Responsive */

@media (max-width: 1024px) {
	section.services .container-actually {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	section.services header {
		gap: 12px;
		padding-bottom: 30px;
	}

	section.services .container-actually {
		grid-template-columns: 1fr;
	}

	section.services article.notice-home > a img {
		min-height: 220px;
	}
}

/* Finish Services Home */