.get-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.get-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 15px;
}
.get-card h3 {
  margin: 0 0 5px;
  font-size: 1.2em;
}
.get-badge {
  background: #eef2f7;
  color: #2271b1;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}
.get-card details {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.get-card summary {
  cursor: pointer;
  color: #2271b1;
  font-weight: 500;
  font-size: 0.9em;
  outline: none;
}
.get-sub-title {
  font-weight: bold;
  font-size: 0.85em;
  color: #333;
  margin-top: 5px;
  display: block;
}
.get-card ul {
  margin: 5px 0 10px 20px;
  font-size: 0.85em;
  color: #555;
  list-style: disc;
}
