/* Membership benefits page */
.membership {
  color: #000;
}

.membership .page-heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.membership-lead {
  margin-bottom: 30px;
}

.membership-lead p {
  line-height: 2.2;
  font-size: 15px;
  color: #222;
}

.membership-section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 44px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.membership-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.membership-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.membership-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.5;
}

.membership-card p {
  line-height: 2.0;
  font-size: 14px;
  color: #333;
}

.membership-list {
  margin-top: 12px;
  padding-left: 18px;
}

.membership-list li {
  list-style: disc;
  line-height: 1.9;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.membership-note {
  color: #6E6E6E;
  font-size: 13px;
}

.membership-table-wrap {
  overflow-x: auto;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.membership-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.membership-table th,
.membership-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}

.membership-table thead th {
  background: #fafafa;
  font-weight: 700;
}

.membership-table tbody th {
  font-weight: 700;
}

.membership-table tbody tr:last-child th,
.membership-table tbody tr:last-child td {
  border-bottom: none;
}

.membership-cta {
  margin-top: 44px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  min-width: 240px;
  padding: 16px 24px;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
  text-decoration: none;
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .membership .page-heading {
    font-size: 20px;
  }

  .membership-title {
    font-size: 18px;
  }

  .membership-card {
    padding: 18px;
  }

  .membership-table {
    min-width: 520px;
  }

  .cta-button {
    width: 100%;
    max-width: 360px;
  }
}
