/* Why Ashes (comparison) page specific styles */
.why-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(35, 35, 42, 0.85) 0%, rgba(22, 22, 28, 0.92) 100%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .why-content {
    animation: none;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

.subtitle {
  background: linear-gradient(90deg, #e6e6e6, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.6;
  font-size: 1.05rem;
}

.why-section {
  text-align: center;
  margin-bottom: 2rem;
}

.why-section p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 65ch;
  margin: 0 auto;
}

.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.why-card {
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.6rem;
}

.why-card h2 i {
  color: rgba(255, 255, 255, 0.4);
  width: 1.1rem;
}

.why-mechanism {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.why-verdict {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 0.5rem;
}

.why-verdict i {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.why-card-ashes {
  background: rgba(255, 179, 71, 0.08);
  border: 1px solid rgba(255, 179, 71, 0.4);
}

.why-card-ashes h2 {
  color: #ffb347;
}

.why-card-ashes h2 i {
  color: #ffb347;
}

.why-card-ashes .why-verdict i {
  color: #4caf50;
}

.why-close {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-close h2 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
}

@media (max-width: 700px) {
  .why-content {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .why-compare {
    grid-template-columns: 1fr;
  }
}
