/* ═══════════════════════════════════════════════════════════════════════════
   card-prices-content.css — Shared content page styles for Card Prices
   Used by: about.html, join.html
   ═══════════════════════════════════════════════════════════════════════════ */

.about-section {
  margin-bottom: clamp(20px, 4vw, 32px);
}

.about-label {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.58rem, 1.5vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e05a00;
  margin-bottom: clamp(6px, 1.5vw, 8px);
}

.about-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #1e293b;
  -webkit-text-fill-color: #1e293b;
  margin-bottom: clamp(8px, 2vw, 12px);
  position: relative;
  display: inline-block;
}

.about-title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--holo);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.8px transparent;
  animation: holo-shimmer 3s linear infinite;
  pointer-events: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}

.about-body {
  font-family: 'Belwe Bold', 'Cinzel', serif;
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  color: #334155;
  line-height: 1.7;
}

.about-body p {
  margin: 0 0 clamp(6px, 1.5vw, 10px);
}

.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: #1e293b; }
.about-body a { color: #9333ea; text-decoration: none; }
.about-body a:hover { text-decoration: underline; }

.about-card {
  background: rgba(224, 90, 0, 0.18);
  border: 1px solid rgba(224, 90, 0, 0.35);
  border-radius: 12px;
  padding: clamp(14px, 2.5vw, 20px) clamp(16px, 3vw, 24px);
  margin-bottom: clamp(10px, 2vw, 16px);
}

.about-card-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.68rem, 1.6vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e293b;
  -webkit-text-fill-color: #1e293b;
  margin-bottom: clamp(6px, 1.5vw, 8px);
  position: relative;
  display: inline-block;
}

.about-card-title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--holo);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.6px transparent;
  animation: holo-shimmer 3s linear infinite;
  pointer-events: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(10px, 2vw, 16px);
  margin-top: clamp(10px, 2vw, 16px);
}

.about-owner {
  display: flex;
  gap: clamp(12px, 3vw, 20px);
  align-items: center;
  margin-top: clamp(10px, 2vw, 16px);
}

.about-owner-photo {
  width: clamp(72px, 12vw, 100px);
  height: clamp(72px, 12vw, 100px);
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid rgba(147, 51, 234, 0.3);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.15);
  flex-shrink: 0;
}

.about-owner-text {
  flex: 1;
  min-width: 0;
}

/* Utility modifiers */
.about-card-full {
  grid-column: 1 / -1;
}

.about-card-center {
  text-align: center;
}

.about-section-spaced {
  margin-top: clamp(20px, 4vw, 32px);
}

.about-grid-tight {
  margin-top: clamp(8px, 1.5vw, 12px);
}

@media (max-width: 600px) {
  .about-owner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
