/* Container und Suche */
.goeast-abv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.goeast-search-wrapper {
    margin-bottom: 40px;
    position: relative;
}

.goeast-search-input {
    width: 100%;
    padding: 18px 25px; /* Grösseres Feld */
    font-size: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.goeast-search-input:focus {
    border-color: #b71c1c;
    background-color: #fff;
    outline: none;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.15);
}

/* NEU: Filter Buttons Styling - Gross & Markant */
.goeast-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Mehr Abstand */
    margin-bottom: 30px;
    justify-content: flex-start; /* Linksbuendig wie der Titel */
}

.goeast-filter-btn {
    background: transparent;
    border: 2px solid #b71c1c; /* Roter Rand immer sichtbar */
    border-radius: 6px; /* Leicht abgerundet, nicht komplett rund */
    padding: 12px 24px; /* Viel Platz innen */
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b71c1c; /* Rote Schrift */
    font-family: inherit;
    font-weight: 700; /* Fette Schrift */
    text-transform: uppercase; /* Grossbuchstaben fuer Look */
    letter-spacing: 0.5px;
}

.goeast-filter-btn:hover {
    background: rgba(183, 28, 28, 0.05);
    transform: translateY(-2px);
}

/* Aktiver Button (Rot gefuellt) */
.goeast-filter-btn.active {
    background: #b71c1c;
    color: #fff;
    border-color: #b71c1c;
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.3);
}


/* Grid Layout */
.goeast-abv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Die Karte (Card) */
.goeast-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none !important;
    color: #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 25px;
    min-height: 160px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover Effekt */
.goeast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #b71c1c;
    color: #b71c1c !important;
}

.goeast-card-content {
    width: 100%;
}

.goeast-card-title {
    margin: 0;
    font-size: 1.4rem; 
    font-weight: 700;
    line-height: 1.3; 
    color: inherit;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Detailansicht Styles */
.goeast-detail-box {
    background: #f9f9f9;
    padding: 25px;
    border-left: 5px solid #b71c1c;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}

.goeast-person-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.goeast-person-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.goeast-person-card h4 {
    margin-top: 0;
    color: #b71c1c; /* Titel in Rot */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.goeast-person-contacts {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.goeast-back-link {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #555;
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.2s;
}

.goeast-back-link:hover {
    background: #e0e0e0;
    color: #000;
}

/* Responsive */
@media (max-width: 600px) {
    .goeast-filter-btn {
        flex-grow: 1;
        text-align: center;
        justify-content: center;
    }
}