/* Empfehlungen-Section soll sich identisch verhalten wie Blogfeed */
.sjs-recommend-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;   /* gleiche Basis wie Blogfeed */
    box-sizing: border-box;
}
/* Empfehlungen der Redaktion – Überschrift ausrichten wie Blogfeed */
.sjs-recommend-heading {
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;   /* ⬅ gleiche Ausrichtung wie Blogfeed */
    display: block;
}
/* Grid-Inhalt mittig halten */
/* Grid-Inhalt komplett zentrieren */
.sjs-recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    justify-content: center;  /* ⬅ sorgt dafür, dass das gesamte Grid mittig ausgerichtet ist */
}
.sjs-recommend-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
        width: 100%;             /* passt sich wie Blogkarten an */
    max-width: 350px;        /* gleiche max. Breite */
}
.sjs-recommend-card:hover {
    transform: translateY(-5px);
}
.sjs-recommend-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.sjs-recommend-content {
    padding: 15px;
}
.sjs-recommend-meta {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-bottom: 5px;
}
.sjs-recommend-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}
/* Optionale Anpassung für mobile Geräte */
@media (max-width: 820px) {
    .sjs-recommend-section {
        padding: 0 10px;
        margin: 40px auto;
    }
    .sjs-recommend-grid {
        grid-template-columns: 1fr; /* ⬅ eine Spalte und mittig */
        justify-content: center;
    }
    .sjs-recommend-heading {
        padding: 0 5px;
    }
}