Das funktioniert jetzt auf dem Desktop! Aber nicht auf dem Handy. Ich habe schon etwas CSS für das horizontale Scrollen auf dem Handy zusammengebastelt, aber es ist nicht wirklich ausgefeilt ![]()
Außerdem habe ich die Schriftgröße angepasst, da die Titelschriftgröße für die kleine Bildschirmgröße zu groß war
.featured-cards-container {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 1rem;
margin-bottom: 1rem;
align-content: flex-start;
overflow-x: auto;
max-height: 350px;
}
.featured-cards-container .featured-card {
min-width: 90%;
}
.featured-card a.card-content .card-details .topic-title {
font-size: var(--font-up-1);
}