/* Olé Moto Sport colors (aprox. desde logo): rojo #F81018, amarillo #F8C000 */
.olehp-wrap{
  max-width: 1760px;
  margin: 18px auto 80px;
  padding: 0 12px;
}
.olehp-banner{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.olehp-banner img{
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display:block;
}
.olehp-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 16px;
}
.olehp-card{
  border-radius: 16px;
  overflow:hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  display:flex;
  flex-direction:column;
}
.olehp-img{
  width:100%;
  aspect-ratio: 1 / 1;
  background:#f6f6f6;
}
.olehp-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.olehp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  padding: 14px 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  background: #F81018;
  color: #fff;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.olehp-btn:hover{
  background:#F8C000;
  color:#111;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.olehp-btn--disabled{
  background:#c7c7c7;
  color:#fff;
  cursor:not-allowed;
}
@media (max-width: 768px){
  .olehp-grid{ grid-template-columns: 1fr; }
}
