.mem-cta {
  background-color: var(--blue-color);
  display: flex;
  justify-content: center;
  padding: 72px 1.5rem;
}

.mem-cta__inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.mem-cta__overline {
  color: var(--gold-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.mem-cta__text h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.mem-cta__text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.mem-cta__text strong {
  color: var(--gold-color);
  font-size: inherit;
}

.mem-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 10px;
  transition: background-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.mem-cta__btn i {
  font-size: 20px;
}

.mem-cta__btn:hover {
  background-color: #1ebe58;
}

@media (min-width: 768px) {
  .mem-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .mem-cta__text h2 {
    font-size: 36px;
  }
}
