/* Header Anpassung */
.archive-header { text-align: center; margin-bottom: 60px; }
.page-title { font-family: "Playfair Display", serif; font-size: 3rem; color: #735e37; margin-bottom: 15px; }
.title-divider { width: 60px; height: 3px; background: #735e37; margin: 0 auto; }

/* Grid Setup */
.blog-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; /* Etwas enger bei 4 Spalten, damit es auf den Screen passt */
    margin: 40px 0;
}

/* Die Kachel */
.blog-card {
    background: #fff;
    padding: 50px 30px 35px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 94, 55, 0.15);
}

/* Das Gewinnspiel-Banner (Badge) */
.promo-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #735e37;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(115, 94, 55, 0.4);
    z-index: 4;
}

.badge-top {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    color: #fff !important;
}

.badge-date {
    display: block;
    font-size: 0.85rem;
    color: #fff !important;
    font-weight: 400;
}

/* Meta-Daten */
.blog-meta {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.blog-meta .cat a { color: #735e37; text-decoration: none; font-weight: bold; }

.blog-meta .date{
    font-size: 16px !important;
}

/* Der Titel - angepasst auf 4 Spalten */
.blog-title {
    font-family: "Playfair Display", serif;
    font-size: 24px; /* Etwas kleiner als im Archiv (26px/28px), da Spalten schmaler sind */
    font-weight: 900;
    line-height: 1.25;
    margin: 10px 0 20px 0;
    min-height: 2.8em;
}

.blog-title a { color: #1a1a1a; text-decoration: none; transition: 0.3s; font-size: 18px; font-family: "Playfair Display", serif; }
.blog-card:hover .blog-title a { color: #735e37; }

/* Excerpt & Fade */
.card-main-content { flex-grow: 1; }
.blog-excerpt-wrapper {
    position: relative;
    max-height: 85px;
    overflow: hidden;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-excerpt-wrapper p{
    font-size: 15px;   
}

.excerpt-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(transparent, #fff);
}

/* Button */
.card-footer { margin-top: 30px; }
.btn-more {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #735e37;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-more:hover { color: #735e37; padding-left: 10px; }

.aktuelles-footer{
    display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

/* Responsive */
@media (max-width: 1200px) { .blog-grid-wrapper { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .blog-grid-wrapper { grid-template-columns: 1fr; } }
