﻿.blogs {
    padding: 0.5rem;
    line-height: 2.5em;
}

.blog > div.content {
    text-align: justify;
}


.posts {
    font-size: 14px;
    width: 100vw;
    padding: 0.5rem;
    margin: 5rem 0;
}

    .posts > div.posts-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        margin: 1rem 0;
    }

        .posts > div.posts-title > div:first-child {
            font-size: 12px;
            font-weight: bolder;
        }

        .posts > div.posts-title > a:last-child {
            font-size: 10px;
            color: #808080;
            text-decoration: none;
        }

    .posts > div.posts-items {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        gap: 2vw;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .posts > div.posts-items > div.post {
            width: 65%;
            border: 1px solid #ececec;
            border-radius: 5px;
            flex: 0 0 auto;
            box-shadow: 0px 10px 15px 3px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 0.5rem;
        }

            .posts > div.posts-items > div.post > div.post-picture {
                width: 100%;
                margin: 0 auto;
            }

                .posts > div.posts-items > div.post > div.post-picture > img {
                    width: 100%;
                    border-radius: 8px;
                }

            .posts > div.posts-items > div.post > a.post-title {
                padding: 0.5rem;
                text-decoration: none;
                color: #003366;
            }

            .posts > div.posts-items > div.post > div.port-description {
                font-size: 12px;
                color: #808080;
                margin: 0.5rem 0 0 0;
                padding: 0.5rem;
            }


@media only screen and (max-width: 600px) {
}

@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 768px) {
    .posts {
        width: 85%;
        margin: 5rem auto;
        padding: unset;
    }

        .posts > div.posts-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            margin: 0.5rem 0;
        }

            .posts > div.posts-title > div:first-child {
                font-size: 18px;
                font-weight: bolder;
            }

            .posts > div.posts-title > div:last-child {
                font-size: 12px;
                color: #808080;
            }

        .posts > div.posts-items {
            display: flex;
            justify-content: space-between;
            gap: 1vw;
            overflow-x: hidden;
            margin: 2rem 0;
        }

            .posts > div.posts-items > div.post {
                width: 32%;
                border: 1px solid #ececec;
                border-radius: 5px;
                border-radius: 10px;
                padding: 0.5rem;
            }

                .posts > div.posts-items > div.post > div.post-picture {
                    width: 100%;
                    margin: 0 auto;
                }

                    .posts > div.posts-items > div.post > div.post-picture > img {
                        width: 100%;
                        border-radius: 8px;
                    }

                .posts > div.posts-items > div.post > a.post-title {
                    padding: 0.5rem;
                    text-decoration: none;
                    color: #003366;
                    font-size: 16px;
                }

                .posts > div.posts-items > div.post > div.port-description {
                    font-size: 14px;
                    color: #808080;
                    margin: 0.5rem 0 0 0;
                    padding: 0.5rem;
                }
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1200px) {
}
