<pre><code>/* Flex-Container für Kachelreihe */
.row.column-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Einzelne Spalten */
.column-info .col-sm-4,
.column-info .col-md-4,
.column-info .col-lg-4 {
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 16px); /* Platz für 3 nebeneinander inkl. Abstand */
  min-width: 300px; /* optional, für kleinere Screens */
}

/* Kachel selbst */
.rahmen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: #1c1c1c;
  color: #f2f2f2;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rahmen:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6);
}

/* Einheitliche Bildhöhe */
.rahmen img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Überschriften */
.rahmen h2 {
  color: #FFD700;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 16px 0 20px 0;
}

.rahmen h2 a {
  color: #FFD700;
  text-decoration: none;
}

.rahmen h2 a:hover {
  color: #e6be00;
  text-decoration: underline;
}

/* Liste */
.rahmen ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}

.rahmen ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #eaeaea;
}

.rahmen ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 13px;
}

/* Links */
.rahmen a {
  color: #FFD700;
  font-weight: 500;
  text-decoration: none;
}

.rahmen a:hover {
  color: #e6be00;
  text-decoration: underline;
}

/* Call-to-Action Button */
.btn-primary {
  background-color: #FF4A00;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #cc3b00;
  color: #fff;
  text-decoration: none;
}

/* Sekundär-Button */
.btn-outline-secondary {
  border: 1px solid #FFD700;
  color: #FFD700;
  background: transparent;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
}

.btn-outline-secondary:hover {
  background: #FFD700;
  color: #000;
  text-decoration: none;
}

/* Hilfsklassen */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 12px;
}

/* Responsive Anpassung für mobile Ansicht */
@media (max-width: 767px) {
  .row.column-info {
	flex-direction: column;
  }

  .rahmen {
	padding: 18px;
	margin-bottom: 20px;
  }

  .rahmen h2 {
	font-size: 18px;
  }

  .rahmen ul li {
	font-size: 14px;
  }

  .btn-primary,
  .btn-outline-secondary {
	width: 100%;
	text-align: center;
  }

  .rahmen img {
	height: 160px;
  }
}
</code></pre>
