/* Module Custom Styles */ .mb-6 { margin-bottom: 6rem; } .mt-3 { margin-top: 3rem; } .event-list { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; } .event-card { /*background-color: var(--bs-gray-dark); */ border: 2px solid rgb(var(--bs-primary-rgb)); /* Umrandung */ border-radius: 12px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); padding: 1.5rem; width: 280px; /* color: #ddd; */ transition: all 0.3s ease; } .event-card:hover { border-color: #66ccff; /* Heller beim Hover */ transform: translateY(-4px); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5); } .event-card h3 { margin-top: 0; margin-bottom: 0.5rem; } .event-card p { margin: 0.2rem 0; } .event-actions { margin-top: 1rem; display: flex; justify-content: space-between; }