.ga-section {
  max-width: 1180px;
  margin: 40px auto 80px;
  padding: 0 20px 40px;
}

.ga-header {
  text-align: center;
  margin-bottom: 40px;
}

.ga-logo {
  width: 120px;
  height: auto;
  margin-bottom: 24px;
}

.ga-title-banner {
  display: inline-block;
  background: linear-gradient(135deg, #33A5A0 0%, #27a39b 100%);
  color: #fff;
  padding: 16px 48px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(51, 165, 160, 0.3);
}

.ga-title-banner h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.ga-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  align-items: start;
}

.ga-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ga-member-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 14px 12px 18px;
  box-shadow: 0 4px 16px rgba(10, 52, 66, 0.08);
  border: 1px solid rgba(51, 165, 160, 0.15);
}

.ga-member-name {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0A3442;
  line-height: 1.5;
  text-align: right;
}

.ga-member-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #33A5A0 0%, #27a39b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.ga-bottom-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.ga-bottom-row .ga-member-pill {
  flex: 1 1 320px;
  max-width: 360px;
}

.ga-empty {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  padding: 40px 20px;
}

@media (max-width: 992px) {
  .ga-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ga-columns {
    grid-template-columns: 1fr;
  }

  .ga-title-banner {
    width: 100%;
    padding: 14px 20px;
  }

  .ga-bottom-row .ga-member-pill {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
