.teamseite {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 30px;
box-sizing: border-box;
}

.team-intro {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 20px;
align-items: stretch;
}

.team-account img,
.team-characters img {
display: block;
max-width: 100%;
height: auto;
}

.team-character-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.team-polaroid {
    display: block;
    background: #fbffff;
    color: #2F2107;
    padding: 7px 7px 10px;
    border: 1px solid #ddd;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: Georgia, serif;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.team-polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.team-polaroid:hover {
    transform: rotate(0deg) scale(1.02);
}

.team-polaroid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: grayscale(70%);
    display: block;
}

.team-polaroid .caption {
    display: block;
    margin-top: 6px;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.3;
    color: #2F2107;
}

@media (max-width: 700px) {
.teamseite {
padding: 15px;
}
.team-intro {
	grid-template-columns: 1fr;
}
}