/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
.fb-feed {
	/*
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 25px;
    margin: 20px 0;
	*/
}

.fb-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	margin-bottom: 20px;
}

.fb-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.fb-item .button{
	margin-top:20px;
	/* display: block; 
	width: 100%;
	*/
}

.fb-image img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.fb-text{
	white-space: pre-wrap;
}

.fb-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Schiebt den Button nach unten */
}

