/**
 * Hero de la ficha de producto.
 * American Steam
 */

.as-equipment-hero{
	padding:70px 20px;
	background:#f5f7fa;
}

.as-equipment-hero__container{
	max-width:1280px;
	margin:auto;
}

.as-equipment-hero__grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:70px;
	align-items:center;
	background:#fff;
	border-radius:18px;
	padding:50px;
	box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.as-equipment-hero__media{
	display:flex;
	align-items:center;
	justify-content:center;
	min-height:520px;
	background:#f8fafc;
	border:1px solid #e7ecf2;
	border-radius:14px;
}

.as-equipment-hero__image{
	width:100%;
	max-height:500px;
	object-fit:contain;
	padding:30px;
}

.as-equipment-hero__placeholder{
	color:#7d8795;
	font-weight:600;
}

.as-equipment-hero__badge{
	display:inline-block;
	padding:8px 18px;
	margin-bottom:20px;
	background:#d7263d;
	color:#fff;
	border-radius:40px;
	font-size:14px;
	font-weight:700;
}

.as-equipment-hero__title{
	margin:0;
	font-size:58px;
	font-weight:700;
	line-height:1.05;
	color:#14233f;
}

.as-equipment-hero__model{
	margin-top:22px;
	color:#6d7685;
	font-size:16px;
}

.as-equipment-hero__model strong{
	color:#14233f;
}

.as-equipment-hero__specs{
	display:flex;
	gap:18px;
	margin-top:35px;
}

.as-equipment-hero__spec{
	flex:1;
	padding:22px;
	border:1px solid #e3e8ef;
	border-radius:12px;
	background:#fff;
}

.as-equipment-hero__spec-label{
	display:block;
	margin-bottom:8px;
	font-size:12px;
	font-weight:700;
	text-transform:uppercase;
	color:#7b8697;
}

.as-equipment-hero__spec-value{
	font-size:24px;
	font-weight:700;
	color:#14233f;
}

.as-equipment-hero__actions{
	margin-top:35px;
}

.as-equipment-hero__button{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:15px 28px;
	background:#d7263d;
	color:#fff;
	text-decoration:none;
	border-radius:8px;
	font-weight:700;
	transition:.25s;
}

.as-equipment-hero__button:hover{
	background:#b81d33;
	color:#fff;
}

@media(max-width:980px){

	.as-equipment-hero__grid{
		grid-template-columns:1fr;
	}

	.as-equipment-hero__title{
		font-size:42px;
	}

	.as-equipment-hero__specs{
		flex-direction:column;
	}
}