.blog-list-title-container {
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    height: 52px;
}

.blog-list-title {
    /* color: #6b3597 !important; Hildestahl */
    /* color: #561498; ArB */
    color: rgb(255,0,0) !important;
    padding: 0;
    margin: 0;
    width: 70%;
    line-height: 1; 
    margin-bottom: 9px;
}

.blog-search-form {
    display: flex;
    padding: 0;
    margin: 0;
    width: 30%;
    margin-bottom: 10px;
    box-shadow: none;
}

.blog-search-form > button {
    /* background-color: #6b3597 !important;  Hildestahl */
    /* background-color: #561498; ArB */
    background-color: rgb(255,0,0) !important; 
    color:white;
    padding: 0;
    margin: 0;
    width: 30%;
    
}
.blog-search-form > button:hover {
    /* background-color: #5d2e84 !important;  Hildestahl */
    /* background-color: #3e0e6d; ArB */
    background-color: rgb(168, 0, 0) !important;

}

.blog-search-form > input {
    padding: 0;
    margin: 0;
    width: 70%;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .blog-list-title {
        width: 30%;
    }
    .blog-search-form {
        width: 70%;
    }
}


.custom-blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    overflow: hidden;
}

.blog-content {
    flex: 1;
}

@media (max-width: 768px) {
    .blog-item {
        flex-direction: column;
        align-items: center;
    }

    .blog-image {
        width: 100%;
        height: auto;
    }

    .blog-image img {
        width: 100%;
        height: auto;
    }

    .blog-content {
        text-align: left;
    }
}

.blog-title {
    font-size: 20px;
    margin: 0;
    line-height: 1;
}

.blog-title a {
    /* color: #6b3597 !important;  Hildestahl */
    color: #555 !important;  /*Arb & V*/
    text-decoration: none;
}

.blog-title a:hover {
    /* color: #5d2e84; Hildestahl */
    color: #3a3a3a; /*Arb & V*/

}

.blog-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 16px;
    color: #555 !important;
    line-height: 1.5;
}

.blog-image {
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
