/* ═══════════════════════════════════════════════
   css/about.css
   ═══════════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: center;
}

/* ── Left: visual card ── */
.about-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.about-card-header {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
  color: white;
}

.big-year {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
}

.about-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: -10px;
}

.about-card-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Team list */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.team-member:hover {
  background: var(--gray-light);
}

.team-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.team-info h4 {
  font-size: 14px;
  font-weight: 600;
}
.team-info p {
  font-size: 12px;
  color: var(--gray-mid);
}

/* ── Right: text content ── */
.about-text p {
  color: #445;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  padding: 18px;
  border-radius: 10px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 8px 24px rgba(33,150,243,0.1);
}

.value-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--blue-accent);
}

.value-item p {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 0;
}
