
.clublist {
  font-size: 0.95rem;
}

.clublist .clublist-header, .clublist .clublist-row {
    display: grid;
    grid-template-columns: 4fr 2fr 1fr;
    align-items: center;
    gap: 0.5rem;
}

.clublist .clublist-row {
  padding: 0.4rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.clublist .clublist-row:nth-child(2n) {
  background-color: #f9f9f9;
}

.clublist .clublist-header {
  font-weight: 600;
  border-bottom: 2px solid #ccc;
  padding: 0.5rem 0;
  margin-bottom: 0.25rem;
}

.clublist .club-col {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.clublist .clublist-button {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #006cd9;
    background: #fff;
    border: 1px solid #5395d7;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

.clublist .clublist-button:hover,
.clublist .clublist-button:active,
.clublist .clublist-button:focus {
    background: #ac1313;
    color: #fff;
	text-decoration: none;
}

/* =========================
   Mobile – Label | Wert
   ========================= */
@media (max-width: 768px) {

	.clublist .clublist-header {
		display: none;
	}

	.clublist .clublist-row {
		display: block;
		padding: 0.75rem;
		margin-bottom: 0.75rem;
		border: 1px solid #ddd;
		border-radius: 6px;
		background: #fff;
	}

	.clublist .club-col {
		display: grid;
		grid-template-columns: 6.5rem 1fr;
		column-gap: 0.5rem;
		white-space: normal;
		margin-bottom: 0.4rem;
	}

	.clublist .club-col:last-child {
		margin-bottom: 0;
	}

	.clublist .club-col::before {
		font-weight: 600;
		color: #555;
	}

	.clublist .club-col:nth-child(1)::before { content: "Vereinsname"; }
	.clublist .club-col:nth-child(2)::before { content: "Ort"; }
	.clublist .club-col:nth-child(3)::before { content: "Webseite"; }

	.clublist .clublist-button {
		padding: 0.1rem 0.75rem;
	}

}
