/* ================= PUBLISHED RESULTS ================= */

.published-results-section {
  background: #f4f1ee;
  padding: 90px 8%;
}

.published-results-header {
  max-width: 900px;
  margin-bottom: 45px;
}

.published-results-header span {
  color: #7a1c2e;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.published-results-header h2 {
  font-size: 46px;
  color: #222;
  margin: 15px 0;
  font-weight: 300;
}

.published-results-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* ================= GRID ================= */

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================= RESULT CARD ================= */

.result-card {
  background: #fff;
  padding: 34px 30px;
  border-left: 5px solid #7a1c2e;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.result-card .badge {
  display: inline-block;
  background: #f4f1ee;
  color: #7a1c2e;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-card h3 {
  color: #7a1c2e;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}

.result-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 15px;
}

/* ================= BUTTON ================= */

.result-download-btn {
  display: inline-block;
  margin-top: 20px;
  background: #7a1c2e;
  color: #fff;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.result-download-btn:hover {
  background: #54101d;
  transform: translateY(-2px);
}

/* ================= EMPTY ================= */

.results-empty {
  background: #fff;
  padding: 45px 30px;
  color: #777;
  text-align: center;
  grid-column: 1 / -1;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* ================= MOBILE ================= */

@media(max-width: 1100px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 900px) {
  .published-results-section {
    padding: 65px 25px;
  }

  .published-results-header h2 {
    font-size: 34px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    padding: 28px 24px;
  }

  .result-download-btn {
    width: 100%;
    text-align: center;
  }
}