/* =========================
   ABOUT QUIZLIFY DASHBOARD
   ========================= */

/* Wrapper */
.about-dashboard-content {
  font-family: 'Poppins', sans-serif;
  background: #f4faf9;
  padding: 40px 20px;
  color: #333;
}

.dashboard-welcome {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-welcome h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.dashboard-welcome p {
  font-size: 1.1rem;
  color: #ffffff;
}

/* Intro Card */
.about-intro-card {
  background: white;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(34, 94, 90, 0.08);
  border: 1px solid rgba(34, 94, 90, 0.08);
  margin-bottom: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(34, 94, 90, 0.12);
}

.about-intro-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* Section Title */
.dashboard-section-title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0c3e3c;
  margin-bottom: 20px;
}

/* Features Grid */
.dashboard-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.dashboard-feature-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(34, 94, 90, 0.08);
  border: 1px solid rgba(34, 94, 90, 0.08);
  transition: all 0.3s ease;
}

.dashboard-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(34, 94, 90, 0.12);
}

.dashboard-feature-card h3 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #0c3e3c;
  margin-bottom: 15px;
}

.dashboard-feature-list {
  list-style: none;
  padding: 0;
}

.dashboard-feature-list li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.dashboard-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #64c5ba;
  font-weight: bold;
}

/* Info Cards */
.dashboard-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.dashboard-info-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(34, 94, 90, 0.08);
  border: 1px solid rgba(34, 94, 90, 0.08);
  transition: all 0.3s ease;
}

.dashboard-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(34, 94, 90, 0.12);
}

.dashboard-info-card h2 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #0c3e3c;
  margin-bottom: 15px;
}

.dashboard-info-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.dashboard-info-card a {
  color: #64c5ba;
  text-decoration: none;
}

.dashboard-info-card a:hover {
  text-decoration: underline;
}

/* Audience List */
.dashboard-audience-list {
  background: #f8fbfb;
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid #64c5ba;
}

.dashboard-audience-list p {
  margin: 0;
  color: #444;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-welcome h1 {
    font-size: 2rem;
  }

  .dashboard-section-title {
    font-size: 1.5rem;
  }
}
