/* Layout-Anpassung für die gesamte Sektion */
.page-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Schiebt den Inhalt nach oben statt mittig */
    min-height: 100vh;
    padding-top: 100px;      /* Abstand zum Header */
    margin-top: 0;       /* Zieht den Inhalt noch ein Stück höher */
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

.grid-sytx {
    display: flex;
    justify-content: center; 
    gap: 30px;               
    flex-wrap: wrap;         
    width: 100%;
}

.card-sytx {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
    width: 350px;            
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-sytx:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* Neuer Style für die klickbaren Links in den Karten */
.card-footer {
    margin-top: auto;        /* Drückt den Link an den unteren Rand der Karte */
    padding-top: 20px;
    text-decoration: none;
    color: #fff;             /* Standardfarbe weiß */
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-block;
}

.card-footer:hover {
    color: var(--accent);    /* Ändert Farbe bei Hover */
    transform: translateX(5px); /* Kleiner Rechts-Effekt beim Hover */
}

/* Badge Styling (aus deinem HTML übernommen) */
.badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.badge-row span {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}