/* ===============================
   INTEREST BANNER – BASE
================================ */

.interest-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d11212;
  overflow: hidden;
}

/* ===============================
   LEFT CONTENT (DESKTOP)
================================ */

.interest-content {
  padding: 60px 70px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interest-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.interest-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 26px;
  opacity: 0.95;
}

/* BUTTON */
.interest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #ffffff;
  color: #000;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.interest-btn:hover {
  opacity: 0.9;
  color: black;
}

/* ===============================
   RIGHT IMAGE (DESKTOP)
================================ */

.interest-image {
  background-size: cover;
  background-position: right;
  background: #d11212;
}

.interest-content {
  padding: 100px 75px 95px;
}

.interest-image {
  height: 477px;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 871px) {
  .interest-content {
    padding: 40px 60px;   /* 🔽 smaller = shorter banner */
  }

  .interest-content h2 {
    font-size: 25px;
  }
}

/* ===============================
   MOBILE (MATCHES YOUR IMAGE)
================================ */

@media (max-width: 871px) {
  .interest-section {
    display: flex;
    flex-direction: column;
    background: none;
  }

  /* RED TOP BLOCK */
  .interest-content {
    background: #d11212;
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 0;
  }

  .interest-content h2 {
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .interest-content p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 26px;
  }

  .interest-btn {
    margin: 0 auto;
  }

  /* IMAGE BELOW WITH DIAGONAL CUT */
  .interest-image {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: -40px; /* overlap */
    background-size: cover;
    background-position: right;
  }

  .interest-content {
    padding: 50px 18px 70px;
  }

  .interest-image {
    height:496px;
  }
}


.interest-image {
  position: relative;
  overflow: hidden;
}

.interest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
