/* --- TEAM SECTION STYLES --- */

.page-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.content-clean {
    width: 100%;
    max-width: 1200px;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}

.card-sytx {
    background: var(--card-bg, #0d0d0d);
    border: 1px solid var(--border, #1a1a1a);
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-sytx:hover {
    border-color: var(--accent, #a855f7);
    transform: translateY(-5px);
}

.avatar-glow {
    width: 80px;
    height: 80px;
    background: var(--accent, #a855f7);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 0 30px var(--accent-glow, rgba(168, 85, 247, 0.4));
}

.glow-purple {
    background: #5a189a;
    box-shadow: 0 0 30px rgba(90, 24, 154, 0.4);
}

.glow-dark-purple {
    background: #3c096c;
    box-shadow: 0 0 30px rgba(60, 9, 108, 0.4);
}

.card-sytx h3 {
    font-size: 2.2rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.card-sytx p {
    color: var(--text-dim, #777);
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 400;
}

.social-row {
    display: flex;
    gap: 20px;
}

/* Styling für die anklickbaren Links */
.social-row a {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent, #a855f7);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 1.5px;
    transition: 0.2s ease;
}

.social-row a:hover {
    text-decoration: underline;
    opacity: 0.7;
}