.results-section {
  padding: 40px 20px;
  background-color: #f0f4f8;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.results-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 30px;
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 20px;
}

.exam-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  min-height: 180px;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.08);
  border-top: 3px solid #f59e0b;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.exam-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.15);
}

.exam-title {
  font-size: 17px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 6px;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.exam-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

.download-btn {
  display: inline-block;
  background-color: #f59e0b;
  color: #1e3a5f;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #d97706;
}