main {
    display: flex;
    flex-direction: column;
    gap: 40px;
  	margin-bottom: 40px;
}

.team-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.component {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    text-align: center;
    transition: all 0.2s ease; /* Hover-Effekt */
    max-width: 600px;
}

.component:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.component img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.component .name {
    font-weight: 600;
    margin: 0;
}

.component .phone {
    font-size: 0.9em;
    color: #555;
}

.trainer, .kontakte, .sportplaetze, .components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

.greatco {
  	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.y-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #ffcc00;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: opacity 0.2s;
}
.y-btn:hover {
    opacity: 0.85;
}

.img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.img-wrapper img.wrapped {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

@media (max-width: 700px) {
    .trainer, .kontakte, .sportplaetze, .components, .greatco {
      	grid-template-columns: 1fr;
    }
}