/* subpages-container.css */

.subpage-container {
    display: flex;
    flex-wrap: wrap;
}

.subpage {
    width: calc(49% - 1%);
    margin: 1%;
    float: left;
}

.subpage a {
    text-decoration: none;
    color: #00a300;
	font-weight: bold;
}

.subpage-content {
    border: 1px solid #ccc;
    overflow: hidden;
    background-color: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    box-shadow: 3px 3px 3px 2px #ccc;
    margin: 1em 1%;
    padding: .75em 2%;
    display: block;
}

.subpage-title {
    margin-bottom: 10px;
    text-align: left;
}

.subpage-thumbnail {
    /* Define styles for thumbnails if needed */
}

.subpage-excerpt {
    margin-bottom: 0;
}

.subpage-link {
    text-align: left;
	color: #00a300;
	font-weight: bold;
}

/* Anpassungen für das geänderte Layout */
@media screen and (max-width: 1023px) {
    .subpage {
        width: calc(49% - 1%);
    }
}

@media screen and (max-width: 767px) {
    .subpage {
        width: calc(100% - 1%);
    }
}