.mem-hero {
  background-color: var(--blue-color);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.mem-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  padding: 64px 1.5rem 48px;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
}
.img-membership {
  border-radius: 24px;
  height: 400px !important;
  width: 100% !important;
  object-fit: cover;

  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);

  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}

.img-membership:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  filter: brightness(1.05);
}
.mem-hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.mem-hero__tag {
  display: inline-block;
  color: var(--gold-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.mem-hero__title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.mem-hero__title span {
  color: var(--gold-color);
  font-size: inherit;
}

.mem-hero__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
}

.mem-hero__btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background-color: var(--gold-color);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid var(--gold-color);
  transition: all 0.2s linear;
}

.mem-hero__btn:hover {
  background-color: transparent;
  color: var(--gold-color);
}

.mem-hero__visual {
  display: flex;
  justify-content: center;
}

.mem-hero__visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Desktop */
@media (min-width: 768px) {
  .mem-hero__container {
    grid-template-columns: 1fr 1fr;
    place-items: center;
    padding: 80px 2rem 0;
    gap: 48px;
  }

  .mem-hero__visual {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .mem-hero__visual img {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .mem-hero__title {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .mem-hero__title {
    font-size: 66px;
  }

  .mem-hero__text {
    font-size: 19px;
  }
}
