.spotti-entries {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.spotti-entry {
    width: 260px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.spotti-entry-header {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.spotti-entry-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.spotti-entry-content {
    padding-top: 50px; /* Platz für das überlappende Profilbild */
    padding-bottom: 20px;
}

.spotti-entry h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.spotti-entry-stats {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 14px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.spotti-entry-stats div {
    text-align: center;
}

.spotti-entry-stats strong {
    font-size: 20px;
    color: #333;
}

.spotti-entry-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 10px;
    background-color: #00aaff;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.spotti-entry-button:hover {
    background-color: #0077cc;
}