/* Start custom CSS for html, class: .elementor-element-7634489e */.blog-hero {
  position: relative;
  background-image: url('https://maxlermotosport.com/wp-content/uploads/2026/04/Blog-Page-Hero-Image.jpg');
  background-repeat: no-repeat;
  background-position: 85% center;
  background-size: cover;
  background-color: #000;
  padding: 120px 80px;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.85) 40%,
    rgba(0,0,0,0.25) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* TAG */
.hero-tag {
  background: #cc0000;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

/* TITLE */
.hero-title {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

/* TEXT */
.hero-text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

/* BUTTON BASE */
.btn-red,
.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  transition: all 0.3s ease;
}

/* RED BUTTON */
.btn-red {
  background: #cc0000;
}

.btn-red:hover {
  background: #a30000;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 25px rgba(204, 0, 0, 0.4);
  color: #fff !important;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.15);
  color: #fff !important;
}

/* REMOVE BLUE CLICK */
.btn-red:focus,
.btn-outline:focus,
.btn-red:active,
.btn-outline:active {
  color: #fff !important;
  outline: none;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 50px;
  background: rgba(0,0,0,0.4);
  padding: 20px 30px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.stat span {
  font-size: 26px;
  font-weight: 900;
}

.stat p {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .blog-hero {
    padding: 80px 20px;
    background-position: center;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    justify-content: center;
  }
}/* End custom CSS */