<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Grille des formations en CSS Grid/Flex, sans Bootstrap
 */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.training-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.training-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.training-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.training-card-body {
  flex: 1;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.training-card-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: #333333;
  text-align: center;
}
.training-card-meta {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.7rem;
  text-align: center;
}
.training-card-link {
  margin-top: auto;
  text-align: center;
}
.training-card-link a {
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
}
.training-card-link a:hover {
  text-decoration: underline;
}
</pre></body></html>