.quick-links-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 16px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.quick-links-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
  color: #333;
  margin-left: 20px;
}

.quick-links-header p {
  color: #555;
  margin-bottom: 1rem;
  margin-left: 20px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
  padding: 20px;
}

.quick-link-card {
  display: flex;
  align-items: center;       /* vertically center */
  justify-content: center;   /* horizontally center */
  text-align: center;
  height: 60px;              /* adjust as needed */
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  transition: background 0.2s ease;
}

.quick-link-card:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.quick-link-name {
  font-size: 15px;
  font-weight: 500;
}
