.fh-recommendations-list {
    max-width: 1200px;  /* erhöht für mehrere Karten nebeneinander */
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));  /* responsive grid */
    gap: 20px;  /* Abstand zwischen den Karten */
}

.fh-place-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    transition: box-shadow 0.3s;
    /* margin-bottom entfernt, da wir jetzt gap im Grid verwenden */
}

.fh-place-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fh-place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
	color: #275140;
}

.fh-place-header-content {
    flex: 1;
}

.fh-place-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.1;
	color: #275140 !important;
}

.fh-place-type {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.1;
}

.fh-place-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 8px 0;
    line-height: 1.2;
}

.fh-place-address {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 4px 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fh-maps-button {
    display: block;
    background: #275140;
    color: white !important;
    text-align: center;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 8px;
    font-size: 0.875rem;
}

.fh-maps-button:hover {
    background: #1a382c;
    text-decoration: none;
}

@media (max-width: 640px) {
    .fh-recommendations-list {
        padding: 16px;
        grid-template-columns: 1fr;  /* Eine Spalte auf mobilen Geräten */
        gap: 16px;  /* Kleinerer Abstand auf mobilen Geräten */
    }
    
    .fh-place-card {
        padding: 12px;
    }
}
