    .container .WrapBlog {
        padding: 180px 0 150px;
    }

    .container article {
        background: #f0f0f0;
        padding: 40px 20px 80px 20px;
        overflow: hidden;
    }

    article img {
        float: left;
        height: auto;
        margin: 10px 10px 10px 0;
        max-width: 100%;
    }

    .toph2 small {
        font-size: 12px;
        font-weight: normal;
        font-family: 'Playfair Display', serif;
    }

    .toph2 {
        font-size: 40px;
        margin-bottom: 20px;
        float: left;
        color: #C8A675;
        font-family: 'Playfair Display', serif;
    }

    article .price {
        font-size: 30px;
        font-weight: bold;
        color: black;
        margin-bottom: 20px;
        text-shadow: 0 0 1px white;
    }

    article .content {
        display: flex;
        gap: 20px;
    }

    article .content figure {
        margin-bottom: 20px;
        display: inline-block;
    }

    article .content p {
        margin: 20px 0;
    }

    article .content p,
    article .content li {
        color: #000;
        font-size: 18px;
    }

    article .content ul {
        list-style-position: inside;
    }

    article .contactCard {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
    }

    article .contactCard a {
        color: #666;
    }

    .contactCard dt {
        font-weight: normal;
        margin-top: 20px;
    }

    .map {
        height: 400px;
        width: 100%;
        border: 2px solid #000;
        margin-bottom: 10px;
    }

    .shareBtn {
        padding: 5px;
        margin-left: 20px;
        border: 1px solid #000;
        border: 1px solid #ddd;
        padding: 10px;
        font-size: 23px;
        border-radius: 7px;
        background: #fff;
    }

    .wp-block-image img {
        height: 200px;
        object-fit: contain;
        cursor: pointer;
        width: 100%;
        max-width: 100%;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .modal-content {
        margin: auto;
        display: block;
        max-width: 80%;
        max-height: 80%;
    }

    .caracteristics {
        display: block;
    }

    .close {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 35px;
        font-weight: bold;
        color: white;
        cursor: pointer;
    }

    .type {
        width: 100%;
        display: block;
        border-bottom: 1px solid #999;
        padding: 0 0 10px 0;
        text-align: right;
        overflow: hidden;
    }

    .meta {
        flex: 0 0 35%;
        max-width: 35%;
        padding-top: 20px;
    }

    .text {
        flex: 1;
    }

    @media (max-width: 768px) {

        .container .WrapBlog {
            padding: 10px 0 150px 0;
        }

        .container>* {
            padding: 0 0;
        }

        .toph2 {
            text-align: left;
        }

        article .content {
            flex-direction: column;
        }

        .meta {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .contactCard {
            display: none;
        }

    }