/* Home Page */
/* Alle Styles wurden in universelle Widget-Klassen verschoben: */
/* - .content-container, .content-container-margin-top-negative-small, .content-container-padding-small → layout.css */
/* - .widget-hero → widgets-hero.css */
/* - .widget-grid → widgets-grid.css */
/* - .widget-tile, .widget-tile-title, .widget-tile-description → widgets-tiles.css */

/* Hero-Grafik: AI Coding (futuristisch, Dark Style) */
.home-hero-image {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-image:hover {
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.12);
}

@media (max-width: 575px) {
    .home-hero-image {
        max-width: 100%;
        margin-bottom: 24px;
        border-radius: 8px;
    }
}

#home-about,
#home-meetup {
    margin-top: 1.5rem;
}

#home-about-intro,
#home-meetup-text {
    margin-bottom: 0.75rem;
}

#home-blog-list {
    list-style: none;
    padding-left: 0;
}

.home-blog-item {
    margin-bottom: 0.5rem;
}

.home-blog-item time {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
