/********** blog-post.html ***********/
.blog-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1 0 auto;
    background-color: #F4F1EC;
    animation: fadeIn 0.3s ease-out 0s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.blog-post-image-wrapper {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  width: 100%;
  min-height: clamp(24rem, 54vh, 36rem);
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  background: var(--blog-cover-fallback);
}

.background-emulate {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  image-rendering: crisp-edges;
  image-rendering: -webkit-crisp-edges;
}


.text-container {
    position: relative;
    z-index: 2;
    width: calc(100% - 2rem);
    max-width: 78rem;
    min-width: 0;
    padding: clamp(2rem, 7vh, 6rem) 0;
    box-sizing: border-box;
}

.blog-post-image-wrapper h1 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1.75rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: 0px;
  color: #fff;
  text-align: left;
  position: relative;
  margin: 0; 
  padding: 1.5rem; 
  z-index: 2;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out 0s forwards;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: normal;
  box-sizing: border-box;
}

.blog-post-image-wrapper h2 {
  font-family: 'Roboto', 'Roboto-Condensed', 'Signika', 'Arsenal', sans-serif;
  letter-spacing: 2px;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  color: #fff;
  text-align: left;
  padding: 1rem; 
  margin: 0;  
  z-index: 2;
  animation: fadeIn 0.3s ease-out 0s forwards;
}



.blog-post-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.28) 100%
    );
  pointer-events: none;
}

.background-emulate {
  z-index: 0;
}


/* =========================================================
   BLOG POST DETAILS RESPONSIVO
   ========================================================= */

.blog-post-details {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #F2EEE8;
}

.blog-post-details-wrapper {
  width: min(calc(80rem - 2rem), 95%);
  margin-left: auto;
  margin-right: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.blog-post-details-wrapper > * {
  flex: 0 1 auto;
}

.blog-post-details p,
.blog-post-category p,
.blog-like-count {
  line-height: 1.35rem;
}

.blog-post-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.03);
}

.blog-like-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
}

/* tablet */
@media (max-width: 928px) {
  .blog-post-details {
    padding: 1rem;
  }

  .blog-post-details-wrapper {
    width: 100%;
    gap: 0.8rem 1.25rem;
    justify-content: center;
  }

  .blog-post-details p,
  .blog-post-category p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/* mobile */
@media (max-width: 640px) {
  .blog-post-details {
      padding: 0.65rem 0.75rem;
  }

  .blog-post-details-wrapper {
      display: grid;

      grid-template-columns:
          repeat(2, minmax(0, 1fr));

      gap: 0.4rem 0.5rem;

      width: 100%;
  }

  .blog-post-details-wrapper > * {
      width: auto;

      display: flex;
      align-items: center;
      justify-content: center;

      min-height: 1.75rem;

      text-align: center;
  }

  .blog-post-category,
  .blog-like-form {
      width: auto;
  }

  .blog-post-details p,
  .blog-post-category p,
  .blog-like-count {
    font-size: 0.95rem;
  }
}

.blog-like-toggle {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #4F4A44;
  transition: transform 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.blog-like-toggle:hover {
  color: red;
  opacity: 0.92;
}

.blog-like-toggle:active {
  transform: scale(0.94);
}

.blog-like-toggle:focus-visible {
  outline: 2px solid #2E98ED;
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.blog-like-icon {
  font-size: 1.35rem;
  line-height: 1;
  display: inline-block;
}

/* estado curtido */
.blog-like-toggle.is-liked .blog-like-icon {
  color: red;
}

.blog-like-toggle.is-liked .blog-like-icon::before {
  content: "♥";
}

.blog-like-toggle:not(.is-liked) .blog-like-icon::before {
  content: "♡";
}

.blog-like-icon {
  font-size: 1.35rem;
  color: inherit;
}









.blog-post-article {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 1.15rem;
    background-color: #F4F1EC;
    align-items: flex-start;
    justify-content: center;
    flex: 1 0 auto;
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 728px;
    margin: 0 auto 1.75rem;
    padding: 0;
}

.blog-post-content .blog-post-summary {
    width: 100%;
    min-width: 0;

    margin: 0 0 2rem;
    padding: 1.5rem 0;

    box-sizing: border-box;

    border-top:
        1px solid rgba(40, 80, 149, 0.22);

    border-bottom:
        1px solid rgba(40, 80, 149, 0.22);

    background: transparent;

    color: #3F3B36;

    font-family:
        'Roboto',
        'Signika',
        'Arsenal',
        sans-serif;

    font-size:
        clamp(
            1.2rem,
            2.7vw,
            1.4rem
        );

    font-weight: 400;
    line-height: 1.65;

    text-align: left;
}



.blog-post-content .image-block {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #E8E4DE;
}

.blog-post-content .image-block img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.blog-post-content .image-block .image-description {
  text-align: left;
  font-family: 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 300;
  line-height: 1.125rem;
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(25, 25, 25, 0.16);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(64px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  box-sizing: border-box;
}

/* Estilos para elementos de lista */
.blog-post-content p,
.blog-post-content p span,
.blog-post-content ul,
.blog-post-content ol,
.blog-post-content li {
    color: #4F4A44;

    font-family:
        'Roboto',
        'Signika',
        'Arsenal',
        sans-serif;

    font-size:
        clamp(
            1.125rem,
            2.5vw,
            1.25rem
        );

    font-weight: 300;
    line-height: 2.5rem;
}

.blog-post-content p,
.blog-post-content p span {
    text-align: left;

    margin-bottom: 1rem;

    background-color: transparent;
}

.blog-post-content ul,
.blog-post-content ol {
    width: 100%;

    margin: 0.75rem 0 1rem;
    padding-left: 1.75rem;

    text-align: left;
}

.blog-post-content li {
    margin: 0 0 0.25rem;
    padding: 0;
}


.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  color: #2F2B27;
  text-align: left;
  margin-bottom: 1.5rem; 
  margin-top: 1rem; 
}

.blog-post-content h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0px;
}

.blog-post-content h3 {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  line-height: 2.25rem;
}

.blog-post-content h4 {
  font-size: clamp(1.37rem, 5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.5rem;
}

.blog-post-content h5 {
  font-size: clamp(1.37rem, 5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.5rem;
}

.blog-post-content h6 {
  font-size: clamp(1.125rem, 5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.25rem;
}

.blog-post-content > p,
.blog-post-content > h2,
.blog-post-content > h3,
.blog-post-content > h4,
.blog-post-content > h5,
.blog-post-content > h6,
.blog-post-content > ul,
.blog-post-content > ol,
.blog-post-content > dl,
.blog-post-content > pre,
.blog-post-content > table,
.blog-post-content > figure,
.blog-post-content > hr {
  width: 100%;
  box-sizing: border-box;
}

.blog-post-content a {
  color: #285095;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.18s ease;
}

.blog-post-content a:hover,
.blog-post-content a:focus {
  color: #2E98ED;
}


/* =========================================================
TABELAS
========================================================= */

.blog-post-content .table-scientific {
  display: block;
  width: 100%;
  margin: 1.25rem 0 1.5rem;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
  color: #4F4A44;
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.blog-post-content .table-scientific thead {
  background: rgba(40, 80, 149, 0.08);
}

.blog-post-content .table-scientific th,
.blog-post-content .table-scientific td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(79, 74, 68, 0.16);
  vertical-align: top;
  text-align: left;
}

.blog-post-content .table-scientific th {
  color: #2F2B27;
  font-weight: 600;
}

.blog-post-content .table-scientific tbody tr:last-child td {
  border-bottom: 0;
}

/* =========================================================
CODIGOS
========================================================= */
.blog-post-content pre {
  width: 100%;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem;
  overflow-x: auto;
 border-radius: var(--radius-media);
  background: #292D32;
  color: #F5F5F5;
  text-align: left;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.65;
}

.blog-post-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.blog-post-content :not(pre) > code {
  padding: 0.12rem 0.35rem;
  border-radius: var(--radius-xs);
  background: rgba(40, 80, 149, 0.08);
  color: #37475F;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}
/* =========================================================
SEPARADOR
========================================================= */
.blog-post-content hr {
  margin: 1.75rem 0;
  border: 0;
  border-top: 1px solid rgba(79, 74, 68, 0.18);
}


/* =========================================================
TABELAS
========================================================= */




/* =========================================================
   BLOCKQUOTES
   Base comum + 8 variações
   ========================================================= */

.blog-post blockquote {
  margin: 1rem 0;
  padding: 1rem 0rem;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
}

/* remove margens internas estranhas se houver tags dentro */
.blog-post blockquote p:last-child {
  margin-bottom: 0;
}

.blog-post blockquote p,
.blog-post blockquote p span {
  margin: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
}

/* -------------------------
   1. Destaque editorial
   Forte, limpo, elegante
------------------------- */
.blog-post blockquote.blockquote1 {
  border-left: 4px solid #285095;
  padding: 1rem 1.15rem;
  margin-bottom:1.5rem;
  background: transparent;
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: 0;
  text-align: left;
  color: #4F4A44;
}

/* -------------------------
   2. Citação deslocada
   Mais leve, mais autoral
------------------------- */
.blog-post blockquote.blockquote2 {
  width: min(80%, 560px);
  border-left: 3px solid #808080;
  padding: 1rem 1.15rem;
  margin-bottom:1.5rem;
  background-color: #F2EEE8;
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 2.5rem;
  letter-spacing: 0.4px;
  text-align: left;
  color: #6A635B;
}

/* -------------------------
   3. Card com glow sutil
   Mais visual, mas utilizável
------------------------- */
.blog-post blockquote.blockquote3 {
  width: min(78%, 520px);
  border: 1px solid rgba(40, 80, 149, 0.22);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #F7F4EF 0%, #F4F1EC 100%);
  box-shadow: 0 10px 30px rgba(40, 80, 149, 0.08);
  padding: 1rem 1.15rem;
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 2.5rem;
  text-align: left;
  color: #5C554E;
}

.blog-post blockquote.blockquote3::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  padding: 1px;
  background: linear-gradient(135deg, #285095, #F4F1EC, #3B8210);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}


/* -------------------------
   5. Minimal técnico
   Bom para nota séria
------------------------- */
.blog-post blockquote.blockquote4 {
  padding: 1rem 1.15rem;
  border-top: 1px solid #D7D1C8;
  border-bottom: 1px solid #D7D1C8;
  background: transparent;
  font-family: 'Roboto', 'Arsenal', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 2.5rem;
  text-align: left;
  color: #5E5851;
}

/* -------------------------
   6. Caixa azul suave
   Para destaque informativo
------------------------- */
.blog-post blockquote.blockquote5 {
  padding: 1rem 1.15rem;
  background: rgba(40, 80, 149, 0.06);
  border-left: 4px solid #285095;
 border-radius: var(--radius-media);
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 2.5rem;
  text-align: left;
  color: #4F4A44;
}

/* -------------------------
   7. Caixa verde suave
   Para insight positivo
------------------------- */
.blog-post blockquote.blockquote6 {
  padding: 1rem 1.15rem;
  background: rgba(59, 130, 16, 0.07);
  border-left: 4px solid #3B8210;
 border-radius: var(--radius-media);
  font-family: 'Roboto', 'Arsenal', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 2.5rem;
  text-align: left;
  color: #4F4A44;
}





.blog-post-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(728px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.5rem 1rem 3.5rem;
    border-top: 1px solid rgba(79, 74, 68, 0.14);
    text-align: center;
}

.blog-post-author__avatar {
    position: relative;

    display: flex;

    width: 96px;
    height: 96px;

    align-items: center;
    justify-content: center;

    margin-bottom: 0.75rem;

    overflow: hidden;

    border-radius: 14px;

    background: transparent;

    color: #fff;

    font-family: 'Roboto', 'Signika', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;

    box-shadow: none;
}

.blog-post-author__avatar img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}


.blog-post-author__name {
    margin: 0;
    color: #2F2B27;
    font-family: 'Roboto', 'Signika', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
}

.blog-post-author__profession {
    margin: 0.3rem 0 0;
    color: #77716A;
    font-family: 'Roboto', 'Signika', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.4;
}






/*Related Content */

/* Related Content */

.related-content {
  width: 100%;
  background-color: #e3e3e3;
  padding: 2.75rem 0 3.5rem;
  text-align: center;
}

.related-content-container {
  width: min(calc(80rem - 2rem), 95%);
  margin: 0 auto;
}

.related-content h3 {
  font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.08;
  color: #333;
  margin: 0 0 1.5rem;
}

.blog-post-related-content {
  margin: 0;
  padding: 0;
}

/* Ajustes do componente compartilhado dentro de related-content. */
.related-content .blog-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin: 0;
}

.related-content .blog-card-link {
  height: clamp(20rem, 28vw, 24rem);
  text-decoration: none;
}

.related-content .blog-card-content {
  left: 0;
  right: 0;
  min-height: 10rem;
  background: rgba(30, 30, 30, 0.22);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding-bottom: 0.25rem;
}

.related-content .blog-card-title {
  padding: 0.85rem 0.9rem 0;
}

.related-content .blog-card-title h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.related-content .blog-card-summary {
  padding: 0.25rem 0.9rem 0;
}

.related-content .blog-card-details {
  padding: 0.65rem 0.9rem 0.7rem;
}

/* tablet */
@media (max-width: 928px) {
    .related-content {
        padding: 2.25rem 0 3rem;
    }

    .related-content h3 {
        margin-bottom: 1.5rem;
    }

    .related-content
    .blog-card-link {
        height: clamp(16rem, 44vw, 20rem);
    }

    .related-content
    .blog-card-content {
        min-height: 7rem;
    }
}

@media (max-width: 520px) {
    .related-content {
      padding: 1.75rem 0 2.25rem;
  }

  .related-content h3 {
      margin-bottom: 1rem;
  }

    .related-content
    .blog-card-link {
        height: 14rem;
    }

    .related-content
    .blog-card-title {
        padding: 0.7rem 0.7rem 0;
    }

    .related-content
    .blog-card-title h4 {
        font-size: clamp(0.82rem, 3.7vw, 0.98rem);
    }

    .related-content
    .blog-card-details {
        padding: 0.55rem 0.7rem 0.65rem;
    }
}


@media (max-width: 640px) {
    .blog-post-image-wrapper {
      min-height: 24rem;
      height: auto;
    }

    .text-container {
        width: calc(100% - 2rem);
        max-width: 100%;
        min-width: 0;

        padding: 2.5rem 0;
    }

    .blog-post-image-wrapper h1 {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        font-size: clamp(1.75rem, 8vw, 2.7rem);
        line-height: 1.08;

        white-space: normal;
        overflow-wrap: anywhere;
    }

  .blog-post-image-wrapper h2 {
    padding: 0.75rem 0 0;
    line-height: 1.45;
  }

  .blog-post-article {
    padding: 0.85rem 0.75rem;
  }

  .blog-post-content {
    margin-bottom: 1.25rem;
  }

  .blog-post-content .blog-post-summary {
      margin-bottom: 1.5rem;
      padding: 1.15rem 0;

      line-height: 1.6;
  }

  .blog-post-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.15;
  }

  .blog-post-content h3 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .blog-post-content h4,
  .blog-post-content h5,
  .blog-post-content h6 {
    margin-top: 1.15rem;
    margin-bottom: 1rem;
  }

  .blog-post-content p,
  .blog-post ul,
  .blog-post ol {
    line-height: 1.85;
  }

  .blog-post blockquote.blockquote2,
  .blog-post blockquote.blockquote3 {
    width: 100%;
  }

  .blog-post-content .image-block .image-description {
    position: static;
    padding: 0.75rem 0.9rem;
    background: #403C38;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .blog-post-content .table-scientific {
    font-size: 0.88rem;
  }

  .blog-post-content .table-scientific th,
  .blog-post-content .table-scientific td {
    padding: 0.7rem 0.75rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
    .blog-post-author {
        padding: 1.5rem 0.75rem 2rem;
    }

    .blog-post-author__avatar {
        width: 84px;
        height: 84px;
    }

    .blog-post-image-wrapper h1 {
      font-size: clamp(2rem, 9vw, 2.7rem);
      line-height: 1.08;
    }

    .blog-post-image-wrapper h2 {
        margin-top: 0.75rem;

        font-size: clamp(0.95rem, 4vw, 1.15rem);
        line-height: 1.4;
        letter-spacing: 0.5px;
    }

    /* =========================================================
     METADADOS
     categoria / data / visualizações / likes
     ========================================================= */

    .blog-post-details p,
    .blog-post-category p,
    .blog-like-count {
      font-size: clamp(0.72rem, 3vw, 0.95rem);
      line-height: 1.35;
    }

    .blog-like-icon {
      font-size: clamp(1rem, 4.5vw, 1.35rem);
      line-height: 1;
    }


    /* =========================================================
      RESUMO
      ========================================================= */

    .blog-post-content .blog-post-summary {
        font-size:
            clamp(
                1.05rem,
                4.5vw,
                1.25rem
            );

        line-height: 1.6;
    }


    /* =========================================================
      TEXTO PRINCIPAL
      ========================================================= */

    .blog-post-content p,
    .blog-post-content p span,
    .blog-post-content ul,
    .blog-post-content ol,
    .blog-post-content li {
        font-size:
            clamp(
                0.92rem,
                3.8vw,
                1.25rem
            );

        line-height: 1.85;
    }


    /* =========================================================
      LINKS DENTRO DO ARTIGO
      ========================================================= */

    .blog-post-content a {
      font-size: inherit;
      line-height: inherit;

      text-decoration-thickness: 1px;
      text-underline-offset: 0.18em;
    }


    /* =========================================================
      HEADINGS DO ARTIGO
      ========================================================= */

    .blog-post-content h2 {
      margin-top: 1.25rem;
      margin-bottom: 0.75rem;

      font-size: clamp(1.5rem, 6.5vw, 2rem);
      line-height: 1.15;
    }

    .blog-post-content h3 {
      margin-top: 1.15rem;
      margin-bottom: 0.7rem;

      font-size: clamp(1.3rem, 5.8vw, 1.7rem);
      line-height: 1.2;
    }

    .blog-post-content h4 {
      margin-top: 1rem;
      margin-bottom: 0.6rem;

      font-size: clamp(1.05rem, 4.8vw, 1.5rem);
      line-height: 1.25;
    }

    .blog-post-content h5 {
      margin-top: 1rem;
      margin-bottom: 0.6rem;

      font-size: clamp(1rem, 4.5vw, 1.5rem);
      line-height: 1.25;
    }

    .blog-post-content h6 {
      margin-top: 1rem;
      margin-bottom: 0.6rem;

      font-size: clamp(0.9rem, 4vw, 1.25rem);
      line-height: 1.3;
    }


    /* =========================================================
      LISTAS
      ========================================================= */

    .blog-post ul,
    .blog-post ol {
        margin: 0.6rem 0 0.85rem;
        padding-left: 1.25rem;

    }

    .blog-post-content ul,
    .blog-post-content ol {
        margin: 0.6rem 0 0.85rem;
        padding-left: 1.5rem;
    }

    .blog-post-content li {
        margin-bottom: 0.2rem;
    }

    .blog-post ul li,
    .blog-post ol li {
        margin-bottom: 0.2rem;

        font-size: inherit;
        line-height: inherit;
    }

    .blog-post li > ul,
    .blog-post li > ol {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
        padding-left: 1.25rem;
   }

    @media (max-width: 640px) {
      .blog-post li > ul,
      .blog-post li > ol {
          margin-top: 0.15rem;
          margin-bottom: 0.15rem;
          padding-left: 1rem;
      }
    }

    .blog-post-content dl {
        margin: 0.75rem 0 1rem;

        color: #4F4A44;

        font-family: 'Roboto', 'Signika', 'Arsenal', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        font-weight: 300;
        line-height: 1.6;
    }

    .blog-post-content dt {
        margin-top: 0.6rem;
        margin-bottom: 0.15rem;

        font-weight: 500;
    }

    .blog-post-content dd {
        margin: 0 0 0.45rem 1.25rem;
    }

    @media (max-width: 640px) {

      .blog-post-content dl {
          margin: 0.6rem 0 0.85rem;

          font-size: clamp(0.85rem, 3.5vw, 1rem);
          line-height: 1.5;
      }

      .blog-post-content dt {
          margin-top: 0.45rem;
          margin-bottom: 0.1rem;
      }

      .blog-post-content dd {
          margin:
              0
              0
              0.3rem
              1rem;
      }
    }


    /* =========================================================
      DESCRIÇÃO / LEGENDA SOBRE IMAGENS
      ========================================================= */

    .blog-post-content .image-block .image-description {
      font-size: clamp(0.72rem, 3.2vw, 1.125rem);
      line-height: 1.35;
    }

    .blog-post-content figure.image-block {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    @media (max-width: 640px) {
        .blog-post-content figure.image-block {
            margin-top: 0.75rem;
            margin-bottom: 0.85rem;
        }
    }


    /* =========================================================
      BLOCKQUOTES
      ========================================================= */

    .blog-post blockquote.blockquote1 {
      font-size: clamp(0.92rem, 3.8vw, 1.25rem);
      line-height: 1.65;
    }

    .blog-post blockquote.blockquote2 {
      width: 100%;

      font-size: clamp(0.9rem, 3.7vw, 1.25rem);
      line-height: 1.65;
    }

    .blog-post blockquote.blockquote3 {
      width: 100%;

      font-size: clamp(0.9rem, 3.7vw, 1.25rem);
      line-height: 1.65;
    }

    .blog-post blockquote.blockquote4 {
      font-size: clamp(0.9rem, 3.7vw, 1.25rem);
      line-height: 1.65;
    }

    .blog-post blockquote.blockquote5 {
      font-size: clamp(0.9rem, 3.7vw, 1.25rem);
      line-height: 1.65;
    }

    .blog-post blockquote.blockquote6 {
      font-size: clamp(0.9rem, 3.7vw, 1.25rem);
      line-height: 1.65;
    }

    /*
    Os <p> internos dos blockquotes já herdam:
    font-size: inherit;
    line-height: inherit;
    portanto não precisam de regra própria.
    */

    @media (max-width: 640px) {

        .blog-post blockquote {
            margin: 0.75rem 0;
            padding: 0.75rem 0;
        }

        .blog-post blockquote.blockquote1,
        .blog-post blockquote.blockquote2,
        .blog-post blockquote.blockquote3,
        .blog-post blockquote.blockquote4,
        .blog-post blockquote.blockquote5,
        .blog-post blockquote.blockquote6 {
            padding: 0.75rem 0.9rem;
        }
    }


    /* =========================================================
      TABELAS
      ========================================================= */

    .blog-post-content .table-scientific {
      font-size: clamp(0.68rem, 2.8vw, 0.88rem);
      line-height: 1.4;
    }

    .blog-post-content .table-scientific th,
    .blog-post-content .table-scientific td {
      font-size: inherit;
      line-height: inherit;

      padding: 0.7rem 0.75rem;
      white-space: nowrap;
    }

    .blog-post-content .table-scientific caption {
        padding: 0 0 0.5rem;

        color: #6A635B;

        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.35;

        text-align: left;
    }

    @media (max-width: 640px) {
        .blog-post-content .table-scientific caption {
            padding-bottom: 0.35rem;

            font-size: clamp(0.7rem, 2.8vw, 0.8rem);
        }
    }

    .blog-post-content cite,
    .blog-post blockquote cite {
        display: block;

        margin-top: 0.45rem;

        font-size: 0.85em;
        font-style: normal;
        font-weight: 400;
        line-height: 1.35;

        opacity: 0.8;
    }

    .blog-post-content abbr[title] {
        text-decoration:
            underline dotted;

        text-underline-offset: 0.15em;

        cursor: help;
    }

    .blog-post-content sup,
    .blog-post-content sub {
        font-size: 0.72em;
        line-height: 0;
    }

    .blog-post-content strong,
    .blog-post-content b,
    .blog-post-content em,
    .blog-post-content i {
        font-size: inherit;
        line-height: inherit;
    }

    .blog-post-content strong,
    .blog-post-content b {
        font-weight: 600;
    }

    .blog-post-content em,
    .blog-post-content i {
        font-style: italic;
    }


    /* =========================================================
      BLOCO DE CÓDIGO
      ========================================================= */

    .blog-post-content pre {
      font-size: clamp(0.68rem, 2.8vw, 0.9rem);
      line-height: 1.55;
    }

    .blog-post-content pre code {
      font-size: inherit;
      line-height: inherit;
    }


    /* =========================================================
      CÓDIGO INLINE
      ========================================================= */

    .blog-post-content :not(pre) > code {
      font-size: clamp(0.75rem, 3.2vw, 0.9em);
      line-height: inherit;
    }


    /* =========================================================
      AUTOR
      ========================================================= */

    .blog-post-author__avatar {
      font-size: clamp(1rem, 4.5vw, 1.4rem);
    }

    .blog-post-author__name {
      font-size: clamp(0.9rem, 3.8vw, 1.1rem);
      line-height: 1.35;
    }

    .blog-post-author__profession {
      font-size: clamp(0.78rem, 3.3vw, 0.95rem);
      line-height: 1.4;
    }


    /* =========================================================
      CONTEÚDO RELACIONADO — TÍTULO DA SEÇÃO
      ========================================================= */

    .related-content h3 {
      font-size: clamp(1.35rem, 6vw, 3rem);
      line-height: 1.08;
    }


    /* =========================================================
      CARDS RELACIONADOS — TÍTULO
      ========================================================= */

    .related-content .blog-card-title h4 {
      font-size: clamp(0.9rem, 4vw, 1.35rem);
    }


    /* =========================================================
      CARDS RELACIONADOS — RESUMO
      ========================================================= */

    .related-content .blog-card-summary p {
      font-size: clamp(0.72rem, 3.2vw, 0.95rem);
    }


    /* =========================================================
      CARDS RELACIONADOS — DATA
      ========================================================= */

    .related-content .blog-card-date p {
      font-size: clamp(0.68rem, 2.8vw, 0.9rem);
      line-height: 1.2;
    }


    /* =========================================================
      CARDS RELACIONADOS — CATEGORIA
      ========================================================= */

    .related-content .blog-card-category p {
      font-size: clamp(0.65rem, 2.7vw, 0.8rem);
      line-height: 1.2;
    }
}





      
