@layer base {
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow);
    transition: all var(--animation-duration-normal) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .quote {
    flex: 1;
    margin-bottom: var(--spacing-6);
  }

  .quote p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0;
    font-style: italic;
  }

  .author {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
  }

  .avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .initials {
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
  }

  .info {
    flex: 1;
  }

  .name {
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 var(--spacing-1) 0;
  }

  .position {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0 0 var(--spacing-1) 0;
  }

  .tenure {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .card {
      padding: var(--spacing-4);
    }

    .quote p {
      font-size: 1rem;
    }

    .avatar {
      width: 50px;
      height: 50px;
    }

    .initials {
      font-size: 1rem;
    }
  }
}