/* Styling für die Hero-Übersichtsseite */
.pettrailer-heroes-list-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.pettrailer-heroes-list-wrapper .heroes-list {
    max-width: 1331.2px;
    margin-left: calc(-4% / 2);
    margin-right: calc(-4% / 2);
    width:100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
    gap: 1rem;
}

.hero-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.hero-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hero-card-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5em;
}

.hero-card-area {
    font-style: italic;
    color: #555;
    margin-top: 0;
}

.hero-card-description {
    flex-grow: 1;
    color: #333;
}

.hero-card-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}