.results-section {
  padding: 40px 20px;
  background-color: #f4f7fb;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.results-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  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(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.exam-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

.exam-title {
  font-size: 17px;
  font-weight: 600;
  color: #1c2732;
  margin-bottom: 6px;
  line-height: 1.4;
  max-height: 2.8em; /* Max 2 lines */
  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: var(--btn-bg-color);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: var(--btn-focus-bg-color);
}
