/* ==========================================================
   HEGAU24 — REGIONAL CARDS
========================================================== */

.hegau-regional-cards {
width: min(1800px, 94%);
margin: 0 auto 60px;
}

.hegau-regional-cards__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}

/* ==========================================================
   CARD
========================================================== */

.hegau-regional-card {
display: flex;
flex-direction: column;
min-width: 0;
padding: 0 18px 16px;
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 28px rgba(36, 54, 77, .07);
overflow: hidden;
transition:
transform .22s ease,
box-shadow .22s ease;
}

.hegau-regional-card:hover {
transform: translateY(-4px);
box-shadow: 0 14px 34px rgba(36, 54, 77, .12);
}

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

.hegau-regional-card__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
min-height: 64px;
border-bottom: 1px solid #edf1f5;
}

.hegau-regional-card__header h2 {
margin: 0;
color: #17253a;
font-size: 20px;
font-weight: 700;
line-height: 1.2;
}

.hegau-regional-card__all {
flex-shrink: 0;
color: #0875df;
font-size: 13px;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
transition: color .18s ease;
}

.hegau-regional-card__all:hover {
color: #005bb5;
}

/* ==========================================================
   ITEMS
========================================================== */

.hegau-regional-card__items {
flex: 1;
}

.hegau-regional-card__item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
min-height: 68px;
padding: 10px 0;
border-bottom: 1px solid #edf1f5;
}

.hegau-regional-card__item:last-child {
border-bottom: 0;
}

.hegau-regional-card__item-content {
min-width: 0;
}

.hegau-regional-card__item-title {
color: #17253a;
font-size: 14px;
font-weight: 600;
line-height: 1.35;
}

.hegau-regional-card__item-meta {
margin-top: 4px;
color: #6c7c91;
font-size: 12px;
line-height: 1.3;
}

.hegau-regional-card__value {
flex-shrink: 0;
color: #239447;
font-size: 13px;
font-weight: 700;
white-space: nowrap;
}

/* ==========================================================
   BUTTON
========================================================== */

.hegau-regional-card__button {
display: flex;
align-items: center;
justify-content: center;
min-height: 44px;
margin-top: 12px;
padding: 0 12px;
border: 1px solid #e8edf3;
border-radius: 10px;
background: #fafbfd;
color: #0875df;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition:
background .18s ease,
border-color .18s ease,
transform .18s ease;
}

.hegau-regional-card__button:hover {
background: #f2f7fd;
border-color: #d8e5f3;
transform: translateY(-1px);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1400px) {

.hegau-regional-cards__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

}

@media (max-width: 700px) {

.hegau-regional-cards {
width: min(94%, 560px);
margin-bottom: 40px;
}

.hegau-regional-cards__grid {
grid-template-columns: 1fr;
}

.hegau-regional-card__header h2 {
font-size: 18px;
}

}
