/* ============================================
   Blog Styles – Ina's Tanzgefühl
   ============================================ */

/* Blog-Header */
.blog-header {
    background: linear-gradient(135deg, #E8F4FD 0%, #FFF8E1 100%);
    padding: 6rem 0 3rem;
    text-align: center;
}
.blog-header h1 {
    font-size: 2.5rem;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}
.blog-header p {
    color: #6B6B6B;
    font-size: 1.1rem;
}

/* Blog-Grid (Übersicht) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-bild {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.blog-card-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-bild img {
    transform: scale(1.05);
}

.blog-card-inhalt {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-datum {
    font-size: 0.8rem;
    color: #5BA3C9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.blog-card-inhalt h2 {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin: 0.4rem 0 0.6rem;
    line-height: 1.4;
}
.blog-card-inhalt p {
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.5;
    flex: 1;
}
.blog-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4A820;
    transition: color 0.2s;
}
.blog-card:hover .blog-card-link {
    color: #B08E15;
}

/* Blog-Leer */
.blog-leer {
    text-align: center;
    padding: 4rem 2rem;
    color: #6B6B6B;
    font-size: 1.1rem;
}

/* ============================================
   Einzelansicht
   ============================================ */
.beitrag-wrapper {
    padding-top: 5rem;
}
.beitrag-wrapper .container {
    max-width: 780px;
}

.zurueck-link {
    display: inline-block;
    color: #5BA3C9;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}
.zurueck-link:hover {
    color: #3D8DB0;
}

.beitrag-hero {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.beitrag-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.beitrag-header {
    margin-bottom: 2rem;
}
.beitrag-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #3a3a3a;
    margin-bottom: 0.6rem;
}
.beitrag-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: #8B8B8B;
}

/* Beitrag-Inhalt (WYSIWYG HTML) */
.beitrag-inhalt {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
}
.beitrag-inhalt p {
    margin-bottom: 1.2rem;
}
.beitrag-inhalt h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #3a3a3a;
}
.beitrag-inhalt h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.8rem;
    color: #3a3a3a;
}
.beitrag-inhalt img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.beitrag-inhalt blockquote {
    border-left: 4px solid #F2C744;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #FFF8E1;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #5a5a5a;
}
.beitrag-inhalt ul, .beitrag-inhalt ol {
    margin: 1rem 0 1rem 1.5rem;
}
.beitrag-inhalt li {
    margin-bottom: 0.4rem;
}
.beitrag-inhalt a {
    color: #5BA3C9;
    text-decoration: underline;
}
.beitrag-inhalt a:hover {
    color: #3D8DB0;
}

/* Beitrag-Footer */
.beitrag-footer {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #F0F0F0;
    flex-wrap: wrap;
}

/* Navigation aktiv-Zustand für Blog */
.nav-links a.aktiv {
    color: #D4A820;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 5rem 0 2rem;
    }
    .blog-header h1 {
        font-size: 2rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .beitrag-header h1 {
        font-size: 1.7rem;
    }
    .beitrag-inhalt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.6rem;
    }
    .beitrag-header h1 {
        font-size: 1.4rem;
    }
    .beitrag-footer {
        flex-direction: column;
    }
}
