.tpp-term-header {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-bottom: var(--space-s);
}

.tpp-term-header h3 {
	margin: 0;
}

a.tpp-view-more {
	margin-left: auto;
	color: var(--c-blue-4);
}

a.tpp-view-more svg {
	margin-left: 8px;
}

.tpp-blocks-loop {
	display: flex;
	gap: var(--space-m);
}

a.tpp-block {
	display: flex;
	flex-direction: column;
	flex: 1 1 25%; /* grow, shrink, basis = 25% */
	max-width: 25%;
	gap: var(--space-xs);
}

/* Tablet (≤ 1024px) */
/* @media (max-width: 1024px) {
  a.tpp-block {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
} */

/* Mobile (≤ 768px) */
@media (max-width: 767px) {
	.tpp-blocks-loop {
		flex-wrap: wrap;
	}
  a.tpp-block {
    flex: 0 0 47%;
    max-width: 47%;
  }
}

.tpp-logo {
	border-radius: 8px;
	background: var(--c-light-1);
	padding: var(--space-m);
	display: flex;
	justify-content: center;
	align-content: center;
}

.tpp-logo img {
	height: 80px;
}

a.tpp-block h4 {
	font-weight: 320;
	color: var(--blue-4);
	margin: 0;
}

.tpp-category-row {
	margin-bottom: var(--space-xl);
}