.posts {
    position: relative;

    margin-top: 5%;
    margin-bottom: 200px;

    width: 100%;

    padding: 50px;
    box-sizing: border-box;

    background-color: var(--c-bg);
    backdrop-filter: blur(var(--c-blur));
    border-radius: 20px;
}

.postList {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
}


.post {
    position: relative;

    width: 100%;

    padding: 20px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
    text-decoration: none;

    background-color: var(--tc-bg);
    border-radius: 10px;
}

.post:hover {
    background-color: var(--tc-bg-hover-variant);
}


.post_image {
    position: relative;

    width: 20%;
    min-width: 150px;
    aspect-ratio: 1.9/1;

    background-image: url("/assets/postAssets/fallback.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 10px;
    overflow: hidden;
}

.postImageContainer {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background-image: url("/assets/postAssets/fallback.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    background-color: #0000008c;
    backdrop-filter: blur(20px);
}

.postInfos {
    position: relative;

    width: 60%;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}


.post_title {
    position: relative;

    font-family: var(--text-font);
    font-weight: 700;
    font-size: 35px;
    color: var(--text);
}

.post_time {
    position: relative;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
    opacity: 0.75;
}

.postActions {
    position: relative;

    width: 20%;

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: end;
}



.aktBtn {
    position: relative;

    padding: 10px 15px;
    box-sizing: border-box;

    padding: 8px;
    box-sizing: border-box;

    fill: var(--text);

    display: flex;
    align-items: center;
    justify-content: center;
}











@media (max-width: 768px) {

    .posts {
        padding: 30px;
    }

    .post {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .post_image {
        width: 100%;
    }

    .postInfos {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .post_title {
        font-size: 22px;
    }

    .post_time {
        font-size: 12px;
    }

    .postActions {
        display: none;
    }
}