

.post-hero {
    width: 100%;
    height: 350px;
    background-color: #171E1B;
}

.post-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

.post-content-container {
    max-width: 1217px;
    width: 100%;
    height: auto;
    margin-top: -150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 131px;

    @media (max-width: 1220px) {
        max-width: 100%;
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
        gap: 25px;
    }


    .content {
        max-width: 907px;
        color: #5B5E62;


        .post-cover {
            max-width: 100%;
            width: 100%;
            height: 508px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 62px;
        }

        .post-date {
            font-size: 14px;
            font-weight: 400;
            color: #000;
        }

        .post-title {
            font-size: 40px;
            font-weight: 700;
            color: #000;
            margin-top: 12px;
        }

        .divisor {
            width: 100%;
            margin-top: 53px;
            margin-bottom: 57px;
            border: 1px solid #DADADA
        }

    }
}


.post-markdown-content h1,
.post-markdown-content h2,
.post-markdown-content h3,
.post-markdown-content h4,
.post-markdown-content h5,
.post-markdown-content h6 {
  margin-top: 40px;
  margin-bottom:24px;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  line-height: 40px;
}

.post-markdown-content h1 {
  font-size: 2.5em;
}

.post-markdown-content h2 {
  font-size: 2em;
}

.post-markdown-content h3 {
  font-size: 1.75em;
}

.post-markdown-content h4 {
  font-size: 1.5em;
}

.post-markdown-content h5 {
  font-size: 1.25em;
}

.post-markdown-content h6 {
  font-size: 1em;
}

/* Paragraphs */
.post-markdown-content p {
  margin-bottom: 1.5em;
  line-height: 24px;
}

/* Links */
.post-markdown-content a {
  color: #0073aa;
  text-decoration: none;
}

.post-markdown-content a:hover,
.post-markdown-content a:focus {
  color: #005177;
  text-decoration: underline;
}

/* Lists */
.post-markdown-content ul,
.post-markdown-content ol {
  margin: 1em 0;
  padding-left: 40px;
}

.post-markdown-content ul li,
.post-markdown-content ol li {
  margin-bottom: 0.5em;
}

/* Blockquotes */
.post-markdown-content blockquote {
  margin: 1.5em 0;
  padding: 0.5em 1em;
  background-color: #f9f9f9;
  border-left: 5px solid #ccc;
}

.post-markdown-content blockquote p {
  margin: 0;
  font-style: italic;
}

/* Images */
.post-markdown-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
}

/* Tables */
.post-markdown-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

.post-markdown-content table th,
.post-markdown-content table td {
  padding: 0.75em;
  border: 1px solid #ddd;
}

.post-markdown-content table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

/* Code blocks */
.post-markdown-content pre {
  background-color: #f4f4f4;
  padding: 1em;
  overflow-x: auto;
  margin: 1.5em 0;
}

.post-markdown-content code {
  background-color: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}

/* Horizontal rules */
.post-markdown-content hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

/* Captions */
.post-markdown-content figcaption {
  text-align: center;
  font-style: italic;
  font-size: 0.9em;
  color: #666;
}

/* Quotes */
.post-markdown-content q {
  quotes: "“""”""‘""’";
}

.post-markdown-content q:before {
  content: open-quote;
}

.post-markdown-content q:after {
  content: close-quote;
}

/* Inline elements */
.post-markdown-content strong {
  font-weight: bold;
}

.post-markdown-content em {
  font-style: italic;
}

/* Comments in content */
.post-markdown-content .wp-block-comment {
  background-color: #f9f9f9;
  border-left: 5px solid #ccc;
  margin: 1.5em 0;
  padding: 0.75em 1.25em;
}

/* Align classes */
.post-markdown-content .alignleft {
  float: left;
  margin-right: 1.5em;
}

.post-markdown-content .alignright {
  float: right;
  margin-left: 1.5em;
}

.post-markdown-content .aligncenter {
  display: block;
  margin: 0 auto;
}

/* Clear floats */
.post-markdown-content .clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Other elements */
.post-markdown-content .wp-caption {
  max-width: 100%;
  text-align: center;
  margin: 1.5em 0;
}

.post-markdown-content .wp-caption img {
  margin: 0 auto;
}

.post-markdown-content .wp-caption-text {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}

/* Gallery */
.post-markdown-content .gallery {
  margin: 0 -10px;
}

.post-markdown-content .gallery-item {
  display: inline-block;
  margin: 10px;
  vertical-align: top;
}

.post-markdown-content .gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.post-markdown-content .gallery-columns-2 .gallery-item,
.post-markdown-content .gallery-columns-3 .gallery-item,
.post-markdown-content .gallery-columns-4 .gallery-item,
.post-markdown-content .gallery-columns-5 .gallery-item,
.post-markdown-content .gallery-columns-6 .gallery-item,
.post-markdown-content .gallery-columns-7 .gallery-item,
.post-markdown-content .gallery-columns-8 .gallery-item,
.post-markdown-content .gallery-columns-9 .gallery-item {
  max-width: calc(100% / 2 - 20px);
}   



.left-container {
    max-width: 267px;
    width: 100%;
    height: 600px;
   
}

@media (max-width: 1050px) {
    .left-container {
        display: none;
    }
}

.post-indice-container {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 40px 60px 0px #0000000D;


    .indice-title {
        font-size: 20px;
        font-weight: 600;
        color: #000;
    }

    .post-indeces {
        width: 100%;
        margin-top:24px;
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 24px;

        a {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-decoration: none;
            width: 100%;
        }

        .active {
            font-weight: 500;
            color: #000;

            a {
              color: #000;
            }

             .point {
                background: #16FF4A;
             }
        }

        li, a {
            font-size: 14px;
            font-weight: 400;
            line-height: 21px;
            color: #5B5E62;
            display: flex;
            flex-direction: row;
            width: 100%;
            gap: 16px;
            text-decoration: none;

            .point {
                min-width: 6px;
                min-height: 6px;
                max-width: 6px;
                max-height: 6px;
                background:  #C4C5C7;
                margin-top: 9px;
            }

        }
    }

}


.content-suggestion {
    margin-top: 70px;

    @media (max-width: 1050px) {
        display: none;
    }

    .blog-section-list {
        flex-direction: column;
        margin-top: 36px;
        gap: 56px;

        .blog-section-item-date {
            color: #000;
        }

        .blog-section-item-title {
            color: #000;
        }

        .blog-section-item {
            padding-bottom: 56px;
            border-bottom: 1px solid #E9E9E9
        }

        .blog-section-item:last-child {
            border-bottom: none;

        }
    }
}

.content-suggestion-post {
  padding-left: 27px;
}

.blog-section-list-suggestion-post {

    .blog-section-item a img, .blog-section-item-image {
    max-height: 100px;
    height: 100%;
  }
}



.blog-section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #FFFFFF33;
    margin-bottom: 64px;
    padding-bottom: 64px;
    gap: 20px;

    .header-title {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        line-height: 46px;
        max-width: 500px;
    }

    form {
        max-width: 547px;
        width: 547px;
    }
}

@media (max-width: 1050px) {
    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
        width: 100%;

        .header-title {
            max-width: 100%;
            width: 100%;
            text-align: center;
            font-size: 24px;
            line-height: 32px;
        }

        .newsletter-container {
          width: 100%;
        }

        form {
            max-width: 100%;
            width: 100%;
        }
    }
}
