/* =================================================
GRID
================================================= */
.sportarten-wrapper{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.sportarten-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
    margin-top:30px;
}


/* =================================================
CARD STYLE
================================================= */
.bundesland-box {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #222;
    background: #fff;

    border-radius: 12px;
    padding: 25px 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    position: relative;
    overflow: hidden;
}

/* Hover */
.bundesland-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Glow Overlay */
.bundesland-box::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        rgba(200,230,255,0.18),
        rgba(230,245,255,0.18)
    );

    opacity: 0;
    transition: opacity 0.3s ease;

    z-index: 0;
}

/* Glow aktiv */
.bundesland-box:hover::after {
    opacity: 1;
}

/* Inhalt über Overlay */
.bundesland-box > * {
    position: relative;
    z-index: 1;
}

.bundesland-emoji {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;

    border-radius: 50%;
    background: #f1f4f9;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bundesland-wappen {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.bundesland-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
}

.bundesland-count {
    font-size: 15px;
    color: #666;
}

.bundesland-count .vereine-count.zero {
    color: #bfc5cc;
}

.stats-grid-2 a {
    text-decoration: none;
    color: inherit;
    display: block;
}



/* =================================================
SPORTART HEADER
================================================= */

.sportart-header{
    text-align:center;
    margin-bottom:50px;
}


/* =================================================
SPORTART LOGO
================================================= */

.sportart-logo {
    width: 90px;
    height: 90px;
    margin: 20px auto 12px;

    border-radius: 50%;
    overflow: hidden;

    border: 5px solid #d9dce0;
}

.sportart-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}