@import "index.css";

/* About Page Specific Styles */
.about-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
}

.about-hero-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 48rem) {
  .about-hero-title {
    font-size: 3rem;
  }
}

.about-hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
}

.header-section {
  padding-top: 8rem;
}

/* Info Cards Three Columns */
.grid-three-cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .grid-three-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}
