/* --- News & Blog: Zigzag-Layout ---------------------------------------- */
.ghm-news-blog {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

/* Karten-Look: klare Trennung pro Beitrag */
.ghm-news-blog__item {
    display: grid;
    grid-template-columns: 1fr 2fr;   /* Bild ~1/3, Text ~2/3 */
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 2px solid #829995;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(45, 58, 55, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ghm-news-blog__item:hover {
    box-shadow: 0 6px 20px rgba(45, 58, 55, 0.08);
    transform: translateY(-2px);
}

/* Bild rechts (jede zweite Zeile): Spalten + Reihenfolge umdrehen,
   damit Bild auch hier 1/3 bleibt und Text 2/3 */
.ghm-news-blog__item--right {
    grid-template-columns: 2fr 1fr;
}
.ghm-news-blog__item--right .ghm-news-blog__media   { order: 2; }
.ghm-news-blog__item--right .ghm-news-blog__body    { order: 1; }

.ghm-news-blog__media {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f6f5;
    aspect-ratio: 4 / 3;
}
.ghm-news-blog__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ghm-news-blog__media:hover img { transform: scale(1.03); }

.ghm-news-blog__media--empty {
    background: linear-gradient(135deg, #e8efed, #d9e4e0);
}

.ghm-news-blog__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ghm-news-blog__date {
    color: #7b8784;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.ghm-news-blog__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    color: #2d3a37;
}
.ghm-news-blog__title a {
    color: inherit;
    text-decoration: none;
}
.ghm-news-blog__title a:hover { color: #829995; }

.ghm-news-blog__excerpt {
    color: #4a5754;
    line-height: 1.55;
    font-size: 15px;
}
.ghm-news-blog__excerpt p { margin: 0 0 0.6em 0; }
.ghm-news-blog__excerpt p:last-child { margin-bottom: 0; }

.ghm-news-blog__cta {
    align-self: flex-start;
    margin-top: 4px;
    padding: 8px 18px;
    background: #829995;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}
.ghm-news-blog__cta:hover {
    background: #6a807c;
    text-decoration: none;
}

/* --- Mobile ---------------------------------------------------------- */
@media (max-width: 768px) {
    .ghm-news-blog {
        gap: 24px;
    }
    .ghm-news-blog__item,
    .ghm-news-blog__item--right {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }
    /* Auf Mobile immer Bild oben, Text unten */
    .ghm-news-blog__item--right .ghm-news-blog__media { order: 1; }
    .ghm-news-blog__item--right .ghm-news-blog__body  { order: 2; }
    .ghm-news-blog__title { font-size: 20px; }
    .ghm-news-blog__media { aspect-ratio: 16 / 9; }
}
