.about-das {
  padding: 24px 18px;
  margin: 0 auto;
}

.about-das-empty {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
}

.about-das-stats {
  background: linear-gradient(90deg, #E31937 0%, #A82465 60%, #5236AB 100%);
  border-radius: 12px;
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.about-das-statItem {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.about-das-statItem:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  display: block;
}

@media (max-width: 900px) {
  .about-das-statItem:not(:last-child)::after {
    display: none;
  }
  .about-das-stats {
    padding: 32px;
    gap: 24px;
  }
}
.about-das-statValue {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-das-statLabel {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.about-das-playbookHeader {
  margin-bottom: 32px;
}

.about-das-playbookTitle {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
}

.about-das-playbookDesc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.about-das-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1000px) {
  .about-das-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .about-das-grid {
    grid-template-columns: 1fr;
  }
}
.about-das-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 5px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-das-card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
  border: 1px solid transparent;
  border-top: 5px solid transparent;
  background: linear-gradient(var(--panel), var(--panel)) padding-box, linear-gradient(90deg, #E31937, #A82465, #5236AB) border-box;
}

.about-das-cardBody {
  padding: 24px 24px 16px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.about-das-cardFooter {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--panel);
}

.about-das-cardHeader {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.about-das-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-das-card:hover .about-das-icon {
  background: linear-gradient(120deg, #E31937, #A82465, #5236AB) !important;
  color: #FFFFFF !important;
}

.about-das-card.tone-crimson .about-das-icon {
  background: #ED6479;
  color: #FFFFFF;
}

.about-das-card.tone-purple .about-das-icon {
  background: #5236AB;
  color: #FFFFFF;
}

.about-das-card.tone-amber .about-das-icon {
  background: #f59e0b;
  color: #FFFFFF;
}

.about-das-card.tone-green .about-das-icon {
  background: #10b981;
  color: #FFFFFF;
}

.about-das-card.tone-blue .about-das-icon {
  background: #3b82f6;
  color: #FFFFFF;
}

.about-das-card.tone-slate .about-das-icon {
  background: #64748b;
  color: #FFFFFF;
}

.about-das-card.tone-teal .about-das-icon {
  background: #14b8a6;
  color: #FFFFFF;
}

.about-das-cardTitle {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  color: var(--text);
}

.about-das-cardDesc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.25;
  margin-bottom: 0;
  flex: 1;
}

.about-das-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #5236AB;
  margin-top: auto;
}

html.theme-dark .about-das-cta {
  color: #9E83F5;
}

.about-das-ctaIcon {
  transition: transform 0.2s ease;
  stroke: currentColor;
}

.about-das-card:hover .about-das-ctaIcon {
  transform: translateX(4px);
}

/*# sourceMappingURL=about-das.css.map */