/* =========================
   MEMBERSHIP (MATCH SCREENSHOT)
========================= */
.tm-membership2{
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

/* full-width split background */
.tm-membership2::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff4b45 0 50%, #0d0b1f 50% 100%);
  z-index: 0;
}

/* keep content above bg */
.tm-membership2__container{
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.tm-membership2__left{
  color: #fff;
  padding: 10px 0;
}

.tm-membership2__kicker{
  font-weight: 800;
  letter-spacing: .25em;
  font-size: 13px;
  text-transform: uppercase;
  opacity: .95;
  margin-bottom: 18px;
}

.tm-membership2__title{
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.6px;
  font-size: clamp(34px, 3.6vw, 54px);
  margin: 0 0 18px;
}

.tm-membership2__text{
  font-size: 16px;
  opacity: .95;
  margin: 0 0 28px;
}

/* button looks like screenshot (outlined) */
.tm-membership2__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.85);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.tm-membership2__btn:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
  transform: translateY(-1px);
}

/* RIGHT SIDE CARDS (2x2) */
.tm-membership2__cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Card design like screenshot */
.tm-mcard{
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,.14);
}

.tm-mcard__icon{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.04);
  flex: 0 0 56px;
}

.tm-mcard__icon img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.tm-mcard__body h6{
  margin: 0 0 6px;
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
}

.tm-mcard__body p{
  margin: 0;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px){
  /* on mobile, make it stacked (no split) */
  .tm-membership2::before{
    background: #0d0b1f;
  }

  .tm-membership2__left{
    text-align: left;
  }

  .tm-membership2__cards{
    grid-template-columns: 1fr;
  }
}
