/* My Account - profile edit */
.gg-profile-edit {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.gg-profile-edit-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
}

.gg-profile-edit-desc {
  color: #666;
  margin-bottom: 18px;
}

.gg-profile-public-link {
  margin-bottom: 24px;
  padding: 14px 16px;
  background: #f7f9fc;
  border-radius: 14px;
  word-break: break-all;
}

.gg-profile-form .gg-form-row {
  margin-bottom: 18px;
}

.gg-profile-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.gg-profile-form input[type="text"],
.gg-profile-form input[type="number"],
.gg-profile-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 12px 14px;
  box-sizing: border-box;
  font-size: 16px;
}

.gg-tag-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gg-tag-option {
  position: relative;
}

.gg-tag-option input {
  display: none;
}

.gg-tag-option span {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f5fb;
  color: #245;
  font-weight: 600;
  cursor: pointer;
}

.gg-tag-option input:checked + span {
  background: #17b7d6;
  color: #fff;
}

.gg-checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

/* Grid */
.gg-member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}

.gg-member-card {
  text-decoration: none;
  color: #111;
  display: block;
}

.gg-member-card-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.gg-member-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gg-member-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff5a5f;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.gg-member-card-body {
  padding: 12px 6px 0;
}

.gg-member-card-name {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 800;
}

.gg-member-card-meta {
  color: #555;
  margin-bottom: 10px;
}

.gg-member-tags,
.gg-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gg-member-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: #1470c8;
  font-size: 13px;
  font-weight: 700;
}

/* Public profile */
.gg-public-profile-wrap {
  max-width: 1180px;
  margin: 40px auto;
  padding: 0 20px;
}

.gg-public-profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

.gg-profile-photo-card,
.gg-profile-panel {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.gg-profile-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gg-profile-photo-body {
  padding: 24px;
}

.gg-profile-lead {
  color: #f06273;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.gg-profile-name {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 800;
}

.gg-profile-sub {
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
}

.gg-profile-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gg-profile-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #4a4a4a;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 999px;
}

.gg-profile-panel {
  padding: 28px 30px;
  margin-bottom: 22px;
}

.gg-profile-panel h2 {
  font-size: 30px;
  margin: 0 0 18px;
  font-weight: 800;
}

.gg-profile-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #222;
}

.gg-profile-info-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px 20px;
}

.gg-profile-label {
  color: #666;
  font-weight: 700;
}

.gg-profile-value {
  color: #111;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .gg-member-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .gg-public-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gg-member-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
  }

  .gg-public-profile-wrap {
    padding: 0 14px;
    margin: 24px auto;
  }

  .gg-profile-name {
    font-size: 34px;
  }

  .gg-profile-panel h2 {
    font-size: 24px;
  }

  .gg-profile-info-grid {
    grid-template-columns: 110px 1fr;
  }
}