/*
 * TheCoolSymbols - About Card CSS
 * Styling for the about card view
 * Created: June 15, 2025
 */

/* About card section with clean background */
.about-card-section {
  padding: 2rem 0;
  background-color: var(--section-bg, #f7f8fd);
  border-radius: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.about-card-container {
  background-color: var(--card-color, #ffffff);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin: 0 2rem;
}

/* Card header with diamond icon */
.about-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-card-icon {
  color: var(--primary-color, #6a4bff);
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.about-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-color, #333);
  margin: 0;
}

.about-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
  width: auto;
}

/* Card content */
.about-card-content {
  color: var(--text-light, #666);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-card-content p {
  margin-bottom: 1.5rem;
}

/* Stats row */
.about-stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color, #eee);
}

.stat-column {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #6a4bff);
  line-height: 1.2;
}

.stat-label {
  font-size: 1.05rem;
  color: var(--text-light, #666);
  margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-card-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .about-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-column {
    margin-bottom: 1rem;
  }
  
  .about-card-title {
    font-size: 1.5rem;
  }
}
