/* ======================================
   DOPAMINE -- About
   css/about.css
   ====================================== */

.about-section { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.info-rows { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2rem; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
  text-transform: uppercase;
}
.info-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.info-value { font-size: 0.92rem; color: var(--text); line-height: 1.6; }
.info-value a { color: var(--text); transition: color 0.2s; }
.info-value a:hover { color: var(--gold); }

.about-visual { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.about-logo-ring {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.about-logo-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.about-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  box-shadow: var(--shadow-sm);
}
.about-badge-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
}
.about-badge strong { display: block; font-size: 0.88rem; color: var(--text); }
.about-badge span { font-size: 0.74rem; color: var(--text-3); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
}
