.about-body { overflow: auto; }

.about-main {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-title {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  line-height: 1.05;
}

.about-edit-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  align-items: center;
}

.about-edit-toolbar[hidden] { display: none; }

.about-edit-toolbar button {
  font: inherit;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(46, 107, 53, 0.3);
  background: #fff;
  color: #14301a;
  cursor: pointer;
  min-width: 38px;
}
.about-edit-toolbar button:hover {
  background: #eaf6d4;
  border-color: #2e6b35;
}

.about-edit-status {
  margin-left: auto;
  font-size: 0.8rem;
  color: #2e6b35;
  font-weight: 600;
}

.about-content {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #14301a;
  font-size: 1.05rem;
  line-height: 1.6;
  min-height: 180px;
}

.about-content.editable:focus {
  outline: 2px solid #2e6b35;
  outline-offset: 2px;
}

.about-content p { margin-bottom: 12px; }
.about-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 8px 0;
}

/* Shared dialog styles (mirrors account.css) */
.badge-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 16, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}
.badge-dialog-backdrop[hidden] { display: none; }

.badge-dialog {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 18px;
  width: min(440px, 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(46, 107, 53, 0.3);
}
.badge-dialog h3 {
  font-size: 1.1rem;
  color: #14301a;
  margin-bottom: 8px;
}
.badge-dialog-target {
  font-size: 0.9rem;
  color: #4a5e4f;
  margin-bottom: 14px;
}
.badge-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}
.badge-dialog-actions .cta {
  margin-top: 0;
  padding: 9px 16px;
}

.image-source-options {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.image-source-options .cta {
  margin-top: 0;
  flex: 1;
  padding: 12px 14px;
}
