.home-hero {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #f7f7f7;
}

/* LEFT: IMAGE SLIDER */
.slider {
  flex: 2;
  position: relative;
  overflow: hidden;
  height: 380px;
  background: #000;
}

.slider img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: none;
}

.slider img.active {
  display: block;
}

/* RIGHT: RED BANNER */
.hero-banner {
  flex: 1;
  background: #c9333a;
  color: #fff;
  padding: 30px;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 6px solid #fff;
  border-left: 6px solid #fff;
}

.hero-banner h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-banner p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 25px;
}

.hero-banner a {
  display: inline-block;
  background: #fff;
  color: #c9333a;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
}

.hero-banner a:hover {
  background: #f2f2f2;
}
