/* About Page Styles */

.about-article {
  padding: 2rem 0 4rem;
}

.about-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, var(--foreground) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .about-header h1 {
    font-size: 2.5rem;
  }
}

.about-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-style: italic;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-section p {
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  line-height: 1.6;
}

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

.about-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-list li strong {
  color: var(--gold);
}

/* Team Section */
.team-section {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: var(--radius);
}

.team-avatar {
  flex-shrink: 0;
}

.team-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.team-info h3 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

/* Contact */
.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

/* Disclaimer */
.disclaimer-section {
  padding: 1.5rem;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid var(--casino-red);
  border-radius: var(--radius);
}

.disclaimer-section h2 {
  color: var(--casino-red);
}

.disclaimer-section p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.disclaimer-section a {
  color: var(--gold);
  text-decoration: underline;
}