body > .site {overflow: hidden;}

.site-content {
	justify-content: center;
}

.site-content .site-main-taxo {
	max-width: 60rem;
	width: 100%;
	padding-top: 1rem;
	padding-bottom: 5rem;
}

.product__breadcrumb {
	max-width: 30rem;
	color: var(--gray);
}

.product__breadcrumb a {color: var(--gray);}
.product__breadcrumb a:last-child {color: var(--gray-dark);}

.product__breadcrumb span {color: var(--gray-dark);}

.taxo-description {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(3.5rem, 10%, 10%);
	margin-bottom: 5.5rem;
	padding-top: 2.5rem;
}

.taxo-description >* {flex-grow: 1;}

.taxonomy-title {margin-bottom: 1rem;}

.taxo-description__text {
	width: 50%;
}

.taxo-description__media-wrapper {
	width: 40%;
	position: relative;
	align-self: center;
}

.taxo-description__media-wrapper::after {
	content: "";
	background: #F0F3F5;
	position: absolute;
	top: -1.5rem;
	bottom: -1.5rem;
	left: 5.69rem;
	right: -30vw;
	z-index: 1;
}

.taxo-description__media-wrapper img {
	display: block;
	position: relative;
	z-index: 2;
	max-height: 30rem;
	float: right;
}

.taxo-description__media-wrapper .fallback {
	position: relative;
	z-index: 2;
	background: #D9D9D9;
	height: 21rem;
	width: auto;
	aspect-ratio: 1;
}

.taxo-description__media-wrapper svg {
	display: block;
	height: 10.25rem;
	width: auto;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.taxo-subcategs__list {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	margin-bottom: 4rem;
	padding: 1rem 0;
	color: var(--gray);
	text-wrap: nowrap;
	border-bottom: 1px solid var(--gray);
	overflow: auto;
}

.taxo-subcategs__item a {
	color: inherit;
	transition: all .3s;
}

.taxo-subcategs__item a:hover {text-shadow: 0 0 6px rgb(157 157 157 / 80%);}

.taxonomy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
	gap: 1.25rem;
	padding: 0 2.2rem;
}

.taxonomy-grid * {
	transition: all .3s;
}

.taxonomy-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem;
	border: 1px solid var(--gray);
	color: var(--gray-dark);
}

.taxonomy-item:hover >*:not(.taxonomy-item__excerpt) {
	color: var(--orange);
}

.taxonomy-item:hover {border-color: var(--orange);}

.taxonomy-item:hover .read-more svg {
	fill: var(--orange);
	transform: translatex(.5rem);
}

.taxonomy-item .fallback {
	height
}

.taxonomy-item h5 {
	flex-grow: 1;
	font-weight: 700;
	padding-bottom: .5rem;
	border-bottom: 1px solid var(--gray);
}

.taxonomy-item .taxonomia-imagen {
	height: 12.5rem;
	margin-bottom: 1.5rem;
	background-color: rgb(0 0 0 / 5%);
}

.taxonomy-item .taxonomia-imagen img {
	display: block;
	width: 100%;
	height: 100%;
}

.taxonomy-item .taxonomy-item__excerpt {margin-top: 1rem;}

.taxonomy-item .read-more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.taxonomy-item .post-thumbnail :is(img, svg)  {
	display: block;
	width: 100%;
	height: 12.5rem;
	object-fit: cover;
	margin-bottom: 1.5rem;
	background-color: #9d9d9d4d;
}

.taxonomy-item .post-thumbnail svg {
	padding: 3rem;
}

.taxonomy-grid a svg {
	fill: var(--gray-dark);
	height: 0.75rem;
	width: 0.75rem;
}

.orange-word {color:var(--orange);}

@media only screen and (min-width: 48.0625em) {
	.site-content .site-main-taxo {
		padding-top: 7rem;
		padding-bottom: 6.25rem;
	}
	
	.taxo-description {
		margin-bottom: 5rem;
		padding-top: 6.5rem;
	}
	
	.taxo-description__text {align-self: center;}
	.taxonomy-grid {padding: 0;}
}