/* ==========================================================
   POYACITY — analyses.css
========================================================== */

.analyses-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
}

.analyses-count {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.analyses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.analysis-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.analysis-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.analysis-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.analysis-method-badge {
  display: inline-block;
  background: #f3e5f5;
  color: var(--purple);
  font-size: 12px;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  width: fit-content;
}

.analysis-card h3 {
  font-size: 19px;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.7;
}

.analysis-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

.analysis-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.analysis-summary {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  flex-grow: 1;
}

.analysis-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 14px;
  transition: .25s;
}

.analysis-download:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

.analyses-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {
  .analyses-grid {
    grid-template-columns: 1fr;
  }
}