/* MEXX CARS - About Page Specific Styles */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.8rem;
}

/* Hero eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.3);
}

/* About content */
.about-text p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-text p strong {
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.3);
}

.motto-box {
  margin-top: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top left, rgba(17,229,254,0.28) 0, #05070b 45%, #000 100%);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.motto-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

/* Profile card */
.profile-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(17,229,254,0.32) 0, #05070b 45%, #000 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, #ffffff 0, var(--accent) 40%, #000 100%);
  margin: 0 auto 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-name {
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.profile-role {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.profile-list {
  list-style: none;
  margin-top: 0.4rem;
}

.profile-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  padding: 0.26rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-list li:last-child {
  border-bottom: none;
}

.profile-label {
  color: var(--muted);
}

.profile-value {
  text-align: right;
}

.tag-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.tag {
  padding: 0.16rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.65);
  color: var(--muted);
}

/* Timeline */
.timeline {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.7);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.timeline h2 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-item {
  margin-bottom: 1rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-period {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.timeline-company {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .profile-card {
    max-width: 360px;
    margin-inline: auto;
  }
}
