.sponsor-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.sponsor-section-main {
  background: #eae2ef !important;
}

.sponsor-content,
.sponsor-image {
  flex: 1;
}

.sponsor-section-main {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
    transition: opacity 0.8s ease;
    overflow: hidden;
    z-index: 0; /* Làm gốc cho z-index */
}

.sponsor-section-main::before {
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://maiamgiadinhviet.vn/wp-content/themes/thuythu-child/custom/images/bg_home_sec_3.png);
    width: 33.90625rem;
    height: 43.385rem;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    top: -18.59375rem;
    left: 0;
    pointer-events: none;
    z-index: -1; /* Đẩy xuống dưới chữ */
}

.title1 {
    font-size: 40px;
    color: #0D4E91;
    font-family: 'UVN Ben Xuan';
    text-align: left;
    margin-bottom: 0;
}

.title2 {
    font-size: 45px;
    font-weight: 700;
    color: #d72262;
    margin-bottom: 10px;
    text-align: left;
}

.content-sponsor {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.sponsor-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .sponsor-wrapper {
    flex-direction: column;
    text-align: center;
    gap : 0px;
  }

  .sponsor-image img {
    border-radius: 8px;
  }

  .title1 {
    font-size: 26px;
    margin-bottom : 7px
  }

  .content-sponsor {
    font-size: 14px;
  }

  .sponsor-section-main {
    padding: 25px 0;
  }

  .title2 {
    font-size: 28px;
    margin-bottom : 17px;
  }

  .sponsor-content,
  .sponsor-image {
    width: 100%;
  }

  .sponsor-content {
    order: 1;
  }

  .sponsor-image {
    order: 2;
  }
}