/* W_Blog - Front styles matching magnesy.eu */

/* Blog list */
.posts {
    padding: 2rem;
}

.posts .post {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding: 15px;
    box-shadow: 0 11px 10px -15px #111;
}

.posts .post .post-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 3px solid #009899;
}

.posts .post .post-information {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.posts .post .post-information .title-post {
    color: #009899 !important;
    font-size: 16pt !important;
    font-weight: 700;
    text-decoration: none;
}

.posts .post .post-information .title-post:hover {
    text-decoration: underline;
}

.posts .post .post-information .post-description {
    color: #000;
    font-size: 12pt;
    text-align: justify;
    line-height: 1.5;
    margin: 0;
}

.posts .post .post-information .read-more-button {
    margin-top: auto;
}

.posts .post .post-information .read-more-button .read-more {
    display: inline-block;
    background-color: #009899;
    color: #fff !important;
    border-color: transparent;
    font-size: .875rem;
    border-radius: .2rem;
    font-weight: 600;
    padding: .5rem 1.25rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
}

.posts .post .post-information .read-more-button .read-more:hover {
    background-color: #007a7a;
}

/* Single post */
.post-content {
    padding: 2rem 1rem;
}

.post-content h1 {
    margin-bottom: 25px;
    font-size: 18pt !important;
}

.post-content p {
    margin: 0;
}

.post-content ul {
    list-style: disc;
    margin-left: 35px;
}

.post-content .post-description {
    line-height: 1.7;
    font-size: 12pt;
    color: #333;
}

.post-content .post-description img {
    max-width: 100%;
    height: auto;
}

.post-content .post-description td {
    padding: 5px;
}

.post-content .post-description h2,
.post-content .post-description h3,
.post-content .post-description h4 {
    margin-left: 25px;
}
.post-author p {
    font-size: 12pt;
}

/* Responsive */
@media (max-width: 767px) {
    .posts .post {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .posts .post .post-image img {
        width: 250px;
        height: auto;
    }

    .posts .post .post-information .post-description {
        text-align: justify;
    }

    .posts .post .post-information .read-more-button {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .posts .post .post-image,
    .posts .post .title-post {
        text-align: left !important;
    }

    .read-more-button {
        text-align: left;
    }

    .posts .post .post-information .post-description {
        text-align: justify !important;
    }
}
