/* Team Grid CSS - Zu main.css hinzufügen */

/* Ihre bestehende content-grid3 Klasse erweitert */
.grid3-global {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
}

.column-global {
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
}

/* Team-spezifische CSS-Klassen */
.global-image-wrapper {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.global-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

.global-name {
    font-size: 1.8em;
    color: #60503c;
    font-family: 'Oswald', sans-serif;
    margin: 1rem 0 0.5rem 0;
	text-align: left;
}

.global-position {
    color: #c26148;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.5;
	text-align: left;
}

.global-description {
    font-size: 0.9em;
	font-weight: bold;
    line-height: 1.4;
    color: #565656;
    text-align: left;
}

/* Responsive Design für Team Grid */
@media (min-width: 601px) and (max-width: 780px) { 
    .grid3-global { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 300px) and (max-width: 600px) {
    .grid3-global { 
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}