/* ==========================================================
   BLOG — CONFIGURAÇÕES GERAIS
========================================================== */

.blog-page {
    background-color: #fff;
    color: #17232c;
    padding-bottom: 42px;
}

.blog-page img {
    max-width: 100%;
}

.blog-page a {
    transition:
        color 160ms ease,
        opacity 160ms ease,
        transform 180ms ease;
}


/* ==========================================================
   CABEÇALHO DO BLOG
========================================================== */

.blog-header {
    border-bottom: 1px solid #173f5d;
    padding-bottom: 18px;
    padding-top: 28px;
}

.blog-header-title {
    align-items: end;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.blog-header-eyebrow {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.blog-header-title h1 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 2.35rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 7px;
}

.blog-header-title p {
    color: #596168;
    font-family: "DM Sans", sans-serif;
    font-size: 0.76rem;
    line-height: 1.4;
    margin: 0;
}


/* ==========================================================
   PESQUISA
========================================================== */

.blog-search-form {
    display: grid;
    flex: 0 1 440px;
    grid-template-columns: minmax(200px, 1fr) auto;
}

.blog-search-form input {
    background-color: #fff;
    border: 1px solid #bdc6cc;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    color: #17232c;
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    height: 40px;
    outline: none;
    padding: 0 13px;
    width: 100%;
}

.blog-search-form input::placeholder {
    color: #81898f;
}

.blog-search-form input:focus {
    border-color: #173f5d;
    box-shadow: inset 0 0 0 1px #173f5d;
}

.blog-search-form button {
    align-items: center;
    background-color: #082f4c;
    border: 1px solid #082f4c;
    border-radius: 0 2px 2px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    gap: 7px;
    height: 40px;
    justify-content: center;
    padding: 0 18px;
}

.blog-search-form button:hover {
    background-color: #174e70;
}


/* ==========================================================
   CATEGORIAS
========================================================== */

.blog-categories {
    align-items: center;
    display: flex;
    gap: 7px 22px;
    margin-top: 22px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: thin;
}

.blog-category-link {
    border-bottom: 2px solid transparent;
    color: #3f494f;
    flex: 0 0 auto;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    padding: 5px 0;
    text-decoration: none;
}

.blog-category-link:hover,
.blog-category-link.active {
    border-bottom-color: #d9ed1c;
    color: #082f4c;
}


/* ==========================================================
   DESTAQUE
========================================================== */

.blog-featured {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 2.35fr) minmax(270px, 0.8fr);
    padding-bottom: 28px;
    padding-top: 26px;
}

.blog-featured-article {
    border-right: 1px solid #cdd3d7;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(280px, 1.25fr) minmax(270px, 0.95fr);
    padding-right: 28px;
}

.blog-featured-image-link {
    display: block;
    min-height: 365px;
    overflow: hidden;
}

.blog-featured-image {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease;
    width: 100%;
}

.blog-featured-image-link:hover .blog-featured-image {
    transform: scale(1.015);
}

.blog-featured-content {
    align-self: center;
}

.blog-article-category {
    color: #315b78;
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 9px;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-article-category:hover {
    color: #082f4c;
}

.blog-featured-content h2 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.8rem, 2.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.03;
    margin: 0 0 13px;
}

.blog-featured-content h2 a,
.blog-article-card h3 a,
.most-read-content h3 a {
    color: #17232c;
    text-decoration: none;
}

.blog-featured-content h2 a:hover,
.blog-article-card h3 a:hover,
.most-read-content h3 a:hover {
    color: #315b78;
}

.blog-featured-summary {
    color: #535c62;
    font-family: "DM Sans", sans-serif;
    font-size: 0.76rem;
    line-height: 1.5;
    margin: 0 0 16px;
}


/* ==========================================================
   METADADOS
========================================================== */

.blog-article-meta {
    align-items: center;
    color: #687178;
    display: flex;
    flex-wrap: wrap;
    font-family: "DM Sans", sans-serif;
    font-size: 0.6rem;
    gap: 5px;
    line-height: 1.4;
}

.blog-article-meta a {
    color: #4d5961;
    font-weight: 600;
    text-decoration: none;
}

.blog-article-meta a:hover {
    color: #173f5d;
}

.blog-meta-separator {
    color: #a0a6aa;
}


/* ==========================================================
   MAIS LIDAS
========================================================== */

.blog-most-read header {
    border-bottom: 1px solid #173f5d;
    padding-bottom: 8px;
}

.blog-most-read header h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.32rem;
    font-weight: 400;
    margin: 0;
}

.blog-most-read ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-most-read li {
    align-items: flex-start;
    border-bottom: 1px solid #d8dcdf;
    display: grid;
    gap: 13px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 13px 0;
}

.blog-most-read li:last-child {
    border-bottom: 0;
}

.most-read-number {
    color: #1e2f3a;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1;
}

.most-read-category {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.49rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.most-read-content h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 5px;
}

.most-read-content small {
    color: #737c82;
    font-family: "DM Sans", sans-serif;
    font-size: 0.5rem;
}


/* ==========================================================
   IMAGEM AUSENTE
========================================================== */

.blog-image-placeholder {
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #f2f2ef,
            #e3e5e4
        );
    color: #315b78;
    display: flex;
    font-size: 2.5rem;
    height: 100%;
    justify-content: center;
    min-height: 200px;
    width: 100%;
}


/* ==========================================================
   PUBLICIDADE
========================================================== */

.blog-advertising {
    border-bottom: 1px solid #173f5d;
    border-top: 1px solid #cbd0d3;
    padding-bottom: 12px;
    padding-top: 8px;
    text-align: center;
}

.blog-advertising > span {
    color: #4f5a61;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.48rem;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.blog-advertising > div {
    align-items: center;
    background:
        linear-gradient(
            110deg,
            #f3f2ef,
            #e8e6e2
        );
    color: #858585;
    display: flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    gap: 10px;
    height: 82px;
    justify-content: center;
}

.blog-advertising strong {
    font-weight: 400;
}


/* ==========================================================
   NOTÍCIAS RECENTES
========================================================== */

.blog-latest {
    padding-top: 27px;
}

.blog-section-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-bottom: 19px;
}

.blog-section-heading h2 {
    color: #17232c;
    flex: 0 0 auto;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.72rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.blog-heading-line {
    background-color: #173f5d;
    flex: 1;
    height: 1px;
}

.blog-content-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 2.35fr) minmax(265px, 0.72fr);
}

.blog-articles-grid {
    display: grid;
    gap: 26px 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-article-card {
    border-bottom: 1px solid #d3d8db;
    display: grid;
    gap: 14px;
    grid-template-columns: 145px minmax(0, 1fr);
    min-height: 145px;
    padding-bottom: 22px;
}

.blog-card-image-link {
    display: block;
    height: 125px;
    overflow: hidden;
}

.blog-card-image {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.blog-card-image-link:hover .blog-card-image {
    transform: scale(1.025);
}

.blog-card-image-link .blog-image-placeholder {
    font-size: 1.7rem;
    min-height: 125px;
}

.blog-card-content {
    min-width: 0;
}

.blog-card-content .blog-article-category {
    font-size: 0.53rem;
    margin-bottom: 5px;
}

.blog-article-card h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.17;
    margin: 0 0 7px;
}

.blog-article-card p {
    color: #596268;
    display: -webkit-box;
    font-family: "DM Sans", sans-serif;
    font-size: 0.63rem;
    line-height: 1.42;
    margin: 0 0 9px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* ==========================================================
   SIDEBAR
========================================================== */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-sidebar-ad {
    align-items: center;
    background:
        linear-gradient(
            125deg,
            #f1f0ed,
            #e5e3df
        );
    color: #858585;
    display: flex;
    flex-direction: column;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    text-transform: uppercase;
}

.blog-sidebar-ad span {
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.blog-sidebar-ad strong {
    font-size: 0.78rem;
    font-weight: 400;
}

.blog-sidebar-newsletter {
    border: 1px solid #173f5d;
    padding: 20px;
}

.newsletter-eyebrow {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.blog-sidebar-newsletter h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.32rem;
    font-weight: 400;
    line-height: 1.12;
    margin: 0 0 8px;
}

.blog-sidebar-newsletter p {
    color: #596168;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    line-height: 1.45;
    margin: 0 0 13px;
}

.blog-sidebar-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-sidebar-newsletter input,
.blog-sidebar-newsletter button {
    border-radius: 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    height: 39px;
}

.blog-sidebar-newsletter input {
    background-color: #fff;
    border: 1px solid #c4cbcf;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.blog-sidebar-newsletter input:focus {
    border-color: #173f5d;
    box-shadow: 0 0 0 2px rgb(23 63 93 / 8%);
}

.blog-sidebar-newsletter button {
    background-color: #d9ed1c;
    border: 0;
    color: #173349;
    cursor: pointer;
    font-weight: 700;
}

.blog-sidebar-newsletter button:hover {
    background-color: #173f5d;
    color: #fff;
}

.blog-sidebar-newsletter small {
    color: #7b8388;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.51rem;
    margin-top: 10px;
    text-align: center;
}


/* ==========================================================
   PAGINAÇÃO
========================================================== */

.blog-pagination {
    align-items: center;
    border-top: 1px solid #cdd3d6;
    display: grid;
    gap: 15px;
    grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
    margin-top: 31px;
    padding-top: 22px;
}

.pagination-pages {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.pagination-direction,
.pagination-number {
    align-items: center;
    color: #173f5d;
    display: inline-flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    justify-content: center;
    text-decoration: none;
}

.pagination-direction {
    gap: 7px;
}

.pagination-direction:last-child {
    justify-self: end;
}

.pagination-direction:first-child {
    justify-self: start;
}

.pagination-number {
    border: 1px solid #c7ced2;
    height: 32px;
    width: 32px;
}

.pagination-number:hover,
.pagination-number.active {
    background-color: #173f5d;
    border-color: #173f5d;
    color: #fff;
}

.pagination-direction.disabled {
    color: #adb2b5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: #757d82;
    font-family: "DM Sans", sans-serif;
    padding: 0 3px;
}


/* ==========================================================
   ESTADO VAZIO
========================================================== */

.blog-empty-state {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
    padding-bottom: 70px;
    padding-top: 70px;
    text-align: center;
}

.blog-empty-state > i {
    color: #173f5d;
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.blog-empty-state h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 8px;
}

.blog-empty-state p {
    color: #646d73;
    font-family: "DM Sans", sans-serif;
    font-size: 0.76rem;
    margin: 0 0 19px;
}

.blog-empty-state a {
    border: 1px solid #173f5d;
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
}

.blog-empty-state a:hover {
    background-color: #173f5d;
    color: #fff;
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1180px) {
    .blog-featured {
        grid-template-columns: minmax(0, 2fr) 270px;
    }

    .blog-featured-article {
        gap: 20px;
        grid-template-columns: minmax(250px, 1.1fr) minmax(245px, 0.9fr);
        padding-right: 24px;
    }

    .blog-featured-image-link {
        min-height: 330px;
    }

    .blog-content-layout {
        grid-template-columns: minmax(0, 2fr) 250px;
    }

    .blog-articles-grid {
        grid-template-columns: 1fr;
    }

    .blog-article-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }
}


@media (max-width: 900px) {
    .blog-header-title {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-search-form {
        flex-basis: auto;
        max-width: 100%;
        width: 100%;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-article {
        border-bottom: 1px solid #cdd3d7;
        border-right: 0;
        padding-bottom: 26px;
        padding-right: 0;
    }

    .blog-most-read {
        margin-top: 4px;
    }

    .blog-most-read ol {
        display: grid;
        gap: 0 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-content-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 680px) {
    .blog-header {
        padding-top: 20px;
    }

    .blog-header-title h1 {
        font-size: 1.9rem;
    }

    .blog-search-form {
        grid-template-columns: minmax(0, 1fr) 45px;
    }

    .blog-search-form button {
        padding: 0;
    }

    .blog-search-form button span {
        display: none;
    }

    .blog-featured-article {
        grid-template-columns: 1fr;
    }

    .blog-featured-image-link {
        min-height: 260px;
    }

    .blog-featured-image {
        aspect-ratio: 1.5 / 1;
        height: auto;
    }

    .blog-featured-content h2 {
        font-size: 1.75rem;
    }

    .blog-most-read ol {
        grid-template-columns: 1fr;
    }

    .blog-advertising > div {
        font-size: 0.82rem;
        height: 70px;
    }

    .blog-articles-grid {
        gap: 20px;
    }

    .blog-article-card {
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .blog-card-image-link {
        height: 105px;
    }

    .blog-card-image-link .blog-image-placeholder {
        min-height: 105px;
    }

    .blog-article-card h3 {
        font-size: 0.98rem;
    }

    .blog-article-card p {
        display: none;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-pagination {
        grid-template-columns: 1fr;
    }

    .pagination-pages {
        grid-row: 1;
    }

    .pagination-direction:first-child {
        grid-column: 1;
        grid-row: 2;
    }

    .pagination-direction:last-child {
        grid-column: 1;
        grid-row: 2;
    }
}


@media (max-width: 430px) {
    .blog-category-link {
        font-size: 0.62rem;
    }

    .blog-featured-image-link {
        min-height: 215px;
    }

    .blog-article-card {
        gap: 10px;
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .blog-card-image-link {
        height: 90px;
    }

    .blog-card-image-link .blog-image-placeholder {
        min-height: 90px;
    }

    .blog-card-content .blog-article-category {
        font-size: 0.48rem;
    }

    .blog-article-card h3 {
        font-size: 0.86rem;
    }

    .blog-article-meta {
        font-size: 0.52rem;
    }

    .pagination-number {
        height: 29px;
        width: 29px;
    }
}

/* ==========================================================
   PÁGINA DO ARTIGO
========================================================== */

.article-page {
    background-color: #fff;
    color: #17232c;
    padding-bottom: 45px;
}


/* ==========================================================
   CABEÇALHO
========================================================== */

.article-header {
    max-width: 1120px;
    padding-bottom: 28px;
    padding-top: 28px;
}

.article-breadcrumb {
    align-items: center;
    color: #747d83;
    display: flex;
    flex-wrap: wrap;
    font-family: "DM Sans", sans-serif;
    font-size: 0.6rem;
    gap: 8px;
    margin-bottom: 28px;
}

.article-breadcrumb a {
    color: #59666e;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: #173f5d;
}

.article-breadcrumb i {
    color: #a2a8ac;
    font-size: 0.42rem;
}

.article-header-category {
    color: #315b78;
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-decoration: none;
    text-transform: uppercase;
}

.article-header-category:hover {
    color: #082f4c;
}

.article-header h1 {
    color: #14232d;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin: 0;
    max-width: 1060px;
}

.article-lead {
    color: #515b62;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    margin: 20px 0 0;
    max-width: 860px;
}


/* ==========================================================
   AUTOR E PUBLICAÇÃO
========================================================== */

.article-author-line {
    align-items: center;
    border-top: 1px solid #d1d6d9;
    display: flex;
    margin-top: 26px;
    padding-top: 18px;
}

.article-author-photo {
    border-radius: 50%;
    display: block;
    flex: 0 0 48px;
    height: 48px;
    margin-right: 11px;
    overflow: hidden;
    width: 48px;
}

.article-author-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.article-author-information {
    display: flex;
    flex-direction: column;
    font-family: "DM Sans", sans-serif;
    line-height: 1.25;
}

.article-written-by {
    color: #8a9195;
    font-size: 0.52rem;
}

.article-author-name {
    color: #173f5d;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
}

.article-author-role {
    color: #687278;
    font-size: 0.54rem;
    margin-top: 2px;
}

.article-publication-data {
    align-items: center;
    color: #697278;
    display: flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.59rem;
    gap: 7px;
    margin-left: auto;
}

.article-data-separator {
    color: #a4aaae;
}


/* ==========================================================
   IMAGEM PRINCIPAL
========================================================== */

.article-cover {
    margin-bottom: 0;
    max-width: 1200px;
}

.article-cover img {
    display: block;
    height: auto;
    max-height: 660px;
    object-fit: cover;
    width: 100%;
}

.article-cover figcaption {
    border-bottom: 1px solid #d5dade;
    color: #737c82;
    font-family: "DM Sans", sans-serif;
    font-size: 0.54rem;
    line-height: 1.45;
    padding: 8px 0;
}


/* ==========================================================
   ESTRUTURA PRINCIPAL
========================================================== */

.article-main {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: 55px minmax(0, 720px) minmax(260px, 300px);
    justify-content: center;
    padding-bottom: 42px;
    padding-top: 38px;
}


/* ==========================================================
   COMPARTILHAMENTO LATERAL
========================================================== */

.article-share {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 25px;
}

.article-share > span {
    color: #697278;
    font-family: "DM Sans", sans-serif;
    font-size: 0.48rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.article-share a,
.article-share button,
.article-footer-share a,
.article-footer-share button {
    align-items: center;
    background: #fff;
    border: 1px solid #bdc7cd;
    border-radius: 50%;
    color: #173f5d;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: 0.72rem;
    height: 34px;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    width: 34px;
}

.article-share a:hover,
.article-share button:hover,
.article-footer-share a:hover,
.article-footer-share button:hover {
    background-color: #173f5d;
    border-color: #173f5d;
    color: #fff;
}

.copy-link-message {
    color: #537085;
    font-family: "DM Sans", sans-serif;
    font-size: 0.48rem;
    min-height: 30px;
    text-align: center;
}


/* ==========================================================
   CONTEÚDO EDITORIAL
========================================================== */

.article-content-column {
    min-width: 0;
}

.article-content {
    color: #263239;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.82;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content p {
    margin: 0 0 1.4em;
}

.article-content > p:first-child::first-letter {
    color: #173f5d;
    float: left;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 4.2rem;
    line-height: 0.78;
    margin: 10px 10px 0 0;
}

.article-content h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.18;
    margin: 1.7em 0 0.65em;
}

.article-content h3 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 1.6em 0 0.65em;
}

.article-content h4 {
    color: #17232c;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    margin: 1.5em 0 0.6em;
}

.article-content a {
    color: #1f5e84;
    text-decoration: underline;
    text-decoration-color: #a4bac7;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: #082f4c;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.5em;
    padding-left: 1.5em;
}

.article-content li {
    margin-bottom: 0.5em;
    padding-left: 0.3em;
}

.article-content blockquote {
    border-bottom: 1px solid #b8c5cc;
    border-top: 1px solid #b8c5cc;
    color: #173f5d;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.5rem;
    font-style: normal;
    line-height: 1.4;
    margin: 2em 0;
    padding: 1.1em 1.5em;
    position: relative;
    text-align: center;
}

.article-content blockquote::before {
    background: #fff;
    color: #d9ed1c;
    content: "“";
    font-family: Georgia, serif;
    font-size: 4rem;
    left: 50%;
    line-height: 1;
    padding: 0 12px;
    position: absolute;
    top: -25px;
    transform: translateX(-50%);
}

.article-content blockquote p {
    margin: 0;
}

.article-content img {
    display: block;
    height: auto;
    margin: 2em auto;
    max-width: 100%;
}

.article-content figure {
    margin: 2em 0;
}

.article-content figure img {
    margin-bottom: 7px;
}

.article-content figcaption {
    color: #747d82;
    font-family: "DM Sans", sans-serif;
    font-size: 0.55rem;
    line-height: 1.45;
}

.article-content table {
    border-collapse: collapse;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    margin: 2em 0;
    overflow-x: auto;
    width: 100%;
}

.article-content th,
.article-content td {
    border: 1px solid #ccd2d6;
    padding: 10px 12px;
    text-align: left;
}

.article-content th {
    background: #eef1f2;
    color: #173f5d;
}

.article-content hr {
    border: 0;
    border-top: 1px solid #cbd2d6;
    margin: 2.5em 0;
}


/* ==========================================================
   RODAPÉ DO CONTEÚDO
========================================================== */

.article-content-footer {
    align-items: center;
    border-bottom: 1px solid #cbd2d6;
    border-top: 1px solid #cbd2d6;
    display: flex;
    font-family: "DM Sans", sans-serif;
    margin-top: 35px;
    padding: 14px 0;
}

.article-category-footer {
    align-items: center;
    display: flex;
    font-size: 0.62rem;
    gap: 7px;
}

.article-category-footer span {
    color: #777f84;
}

.article-category-footer a {
    color: #173f5d;
    font-weight: 700;
    text-decoration: none;
}

.article-footer-share {
    align-items: center;
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.article-footer-share > span {
    color: #777f84;
    font-size: 0.59rem;
    margin-right: 3px;
}

.article-footer-share a,
.article-footer-share button {
    font-size: 0.62rem;
    height: 29px;
    width: 29px;
}


/* ==========================================================
   BOX DO AUTOR
========================================================== */

.article-author-box {
    align-items: center;
    background: #f5f5f2;
    border-left: 3px solid #173f5d;
    display: grid;
    gap: 20px;
    grid-template-columns: 92px minmax(0, 1fr);
    margin-top: 30px;
    padding: 22px;
}

.article-author-box-photo {
    border-radius: 50%;
    display: block;
    height: 88px;
    overflow: hidden;
    width: 88px;
}

.article-author-box-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.article-author-box-content > span {
    color: #68737a;
    font-family: "DM Sans", sans-serif;
    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-author-box-content h2 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.32rem;
    font-weight: 400;
    margin: 4px 0 7px;
}

.article-author-box-content h2 a {
    color: #17232c;
    text-decoration: none;
}

.article-author-box-content p {
    color: #566168;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    line-height: 1.45;
    margin: 0 0 8px;
}

.article-author-posts {
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    text-decoration: none;
}


/* ==========================================================
   SIDEBAR DO ARTIGO
========================================================== */

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.article-sidebar-ad {
    align-items: center;
    background: linear-gradient(125deg, #f1f0ed, #e5e3df);
    color: #858585;
    display: flex;
    flex-direction: column;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    text-transform: uppercase;
}

.article-sidebar-ad span {
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.article-sidebar-ad strong {
    font-size: 0.78rem;
    font-weight: 400;
}


/* ==========================================================
   MAIS LIDAS DO ARTIGO
========================================================== */

.article-most-read {
    border-top: 1px solid #173f5d;
}

.article-most-read header {
    border-bottom: 1px solid #cdd3d6;
    padding: 12px 0 9px;
}

.article-most-read header h2 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    margin: 0;
}

.article-most-read ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-most-read li {
    border-bottom: 1px solid #d7dcdf;
    display: grid;
    gap: 12px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 12px 0;
}

.article-ranking-number {
    color: #172b38;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.28rem;
    line-height: 1;
}

.article-ranking-category {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.47rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.article-most-read h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 4px;
}

.article-most-read h3 a {
    color: #17232c;
    text-decoration: none;
}

.article-most-read h3 a:hover {
    color: #315b78;
}

.article-most-read small {
    color: #737c82;
    font-family: "DM Sans", sans-serif;
    font-size: 0.49rem;
}


/* ==========================================================
   NEWSLETTER DO ARTIGO
========================================================== */

.article-newsletter {
    border: 1px solid #173f5d;
    padding: 19px;
}

.article-newsletter-eyebrow {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.article-newsletter h2 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 7px;
}

.article-newsletter p {
    color: #59636a;
    font-family: "DM Sans", sans-serif;
    font-size: 0.63rem;
    line-height: 1.45;
    margin: 0 0 12px;
}

.article-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-newsletter input,
.article-newsletter button {
    border-radius: 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    height: 38px;
}

.article-newsletter input {
    border: 1px solid #c5ccd0;
    outline: none;
    padding: 0 11px;
}

.article-newsletter input:focus {
    border-color: #173f5d;
}

.article-newsletter button {
    background: #d9ed1c;
    border: 0;
    color: #173349;
    cursor: pointer;
    font-weight: 700;
}

.article-newsletter button:hover {
    background: #173f5d;
    color: #fff;
}

.article-newsletter > small {
    color: #7b8388;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.49rem;
    margin-top: 9px;
    text-align: center;
}


/* ==========================================================
   PUBLICIDADE HORIZONTAL
========================================================== */

.article-horizontal-ad {
    border-bottom: 1px solid #173f5d;
    border-top: 1px solid #cbd0d3;
    padding-bottom: 12px;
    padding-top: 8px;
    text-align: center;
}

.article-horizontal-ad > span {
    color: #59636a;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.47rem;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.article-horizontal-ad > div {
    align-items: center;
    background: linear-gradient(110deg, #f3f2ef, #e8e6e2);
    color: #858585;
    display: flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.92rem;
    gap: 10px;
    height: 82px;
    justify-content: center;
}

.article-horizontal-ad strong {
    font-weight: 400;
}


/* ==========================================================
   ARTIGOS RELACIONADOS
========================================================== */

.related-articles {
    padding-bottom: 20px;
    padding-top: 28px;
}

.related-articles-heading {
    align-items: center;
    display: flex;
    gap: 17px;
    margin-bottom: 18px;
}

.related-articles-heading h2 {
    flex: 0 0 auto;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 400;
    margin: 0;
}

.related-articles-heading > div {
    background: #173f5d;
    flex: 1;
    height: 1px;
}

.related-articles-heading > a {
    color: #173f5d;
    flex: 0 0 auto;
    font-family: "DM Sans", sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    text-decoration: none;
}

.related-articles-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-article-card {
    border-right: 1px solid #d4d9dc;
    padding-right: 22px;
}

.related-article-card:last-child {
    border-right: 0;
    padding-right: 0;
}

.related-article-image {
    display: block;
    height: 205px;
    margin-bottom: 12px;
    overflow: hidden;
}

.related-article-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.related-article-image:hover img {
    transform: scale(1.02);
}

.related-article-image .blog-image-placeholder {
    min-height: 205px;
}

.related-article-card h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.18;
    margin: 0 0 8px;
}

.related-article-card h3 a {
    color: #17232c;
    text-decoration: none;
}

.related-article-card h3 a:hover {
    color: #315b78;
}

.related-article-card > p {
    color: #596269;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    line-height: 1.45;
    margin: 0 0 10px;
}


/* ==========================================================
   RESPONSIVIDADE DO ARTIGO
========================================================== */

@media (max-width: 1050px) {
    .article-main {
        grid-template-columns: 45px minmax(0, 1fr) 260px;
    }

    .article-content {
        font-size: 1.02rem;
    }
}


@media (max-width: 850px) {
    .article-main {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .article-sidebar {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 15px;
    }

    .article-most-read {
        grid-column: 1 / -1;
    }

    .article-most-read ol {
        display: grid;
        gap: 0 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-articles-grid {
        gap: 18px;
    }

    .related-article-image {
        height: 170px;
    }
}


@media (max-width: 680px) {
    .article-header {
        padding-top: 20px;
    }

    .article-breadcrumb {
        margin-bottom: 20px;
    }

    .article-header h1 {
        font-size: 2.35rem;
    }

    .article-lead {
        font-size: 0.85rem;
    }

    .article-author-line {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .article-publication-data {
        flex-basis: 100%;
        margin-left: 59px;
        margin-top: 9px;
    }

    .article-cover img {
        min-height: 250px;
    }

    .article-main {
        display: block;
        padding-top: 26px;
    }

    .article-share {
        flex-direction: row;
        margin-bottom: 22px;
        position: static;
    }

    .article-share > span {
        margin-bottom: 0;
        margin-right: 4px;
        writing-mode: horizontal-tb;
    }

    .copy-link-message {
        min-height: auto;
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.72;
    }

    .article-content h2 {
        font-size: 1.55rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
    }

    .article-content blockquote {
        font-size: 1.25rem;
        padding-left: 0.8em;
        padding-right: 0.8em;
    }

    .article-content-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .article-footer-share {
        margin-left: 0;
    }

    .article-author-box {
        align-items: start;
        grid-template-columns: 70px minmax(0, 1fr);
        padding: 17px;
    }

    .article-author-box-photo {
        height: 66px;
        width: 66px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .article-most-read {
        grid-column: auto;
    }

    .article-most-read ol {
        grid-template-columns: 1fr;
    }

    .related-articles-heading {
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .related-articles-heading > div {
        order: 3;
        flex-basis: 100%;
    }

    .related-articles-heading > a {
        margin-left: auto;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .related-article-card {
        border-bottom: 1px solid #d4d9dc;
        border-right: 0;
        padding-bottom: 20px;
        padding-right: 0;
    }

    .related-article-card:last-child {
        border-bottom: 0;
    }

    .related-article-image {
        height: auto;
    }

    .related-article-image img {
        aspect-ratio: 1.7 / 1;
        height: auto;
    }
}


@media (max-width: 430px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-author-photo {
        flex-basis: 42px;
        height: 42px;
        width: 42px;
    }

    .article-publication-data {
        margin-left: 53px;
    }

    .article-cover img {
        min-height: 215px;
    }

    .article-share a,
    .article-share button {
        height: 31px;
        width: 31px;
    }

    .article-author-box {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   PÁGINA DO AUTOR
========================================================== */

.author-page {
    background-color: #fff;
    color: #17232c;
    padding-bottom: 45px;
}


/* ==========================================================
   PERFIL DO AUTOR
========================================================== */

.author-profile {
    border-bottom: 1px solid #173f5d;
    padding-bottom: 30px;
    padding-top: 28px;
}

.author-profile .article-breadcrumb {
    margin-bottom: 26px;
}

.author-profile-content {
    align-items: center;
    display: grid;
    gap: 27px;
    grid-template-columns: 150px minmax(0, 1fr) 170px;
}

.author-profile-photo {
    border-radius: 50%;
    height: 145px;
    overflow: hidden;
    width: 145px;
}

.author-profile-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.author-profile-information {
    max-width: 760px;
}

.author-profile-eyebrow {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.author-profile-information h1 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.author-profile-information h2 {
    color: #315b78;
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    margin: 8px 0 12px;
}

.author-profile-information p {
    color: #505b62;
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
}

.author-social-links {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.author-social-links a {
    align-items: center;
    border: 1px solid #aebbc3;
    border-radius: 50%;
    color: #173f5d;
    display: flex;
    font-size: 0.72rem;
    height: 33px;
    justify-content: center;
    text-decoration: none;
    width: 33px;
}

.author-social-links a:hover {
    background-color: #173f5d;
    border-color: #173f5d;
    color: #fff;
}

.author-publication-summary {
    align-items: center;
    border-left: 1px solid #cbd2d6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 105px;
    text-align: center;
}

.author-publication-summary strong {
    color: #173f5d;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
}

.author-publication-summary span {
    color: #687178;
    font-family: "DM Sans", sans-serif;
    font-size: 0.58rem;
    line-height: 1.35;
    margin-top: 6px;
    max-width: 90px;
}


/* ==========================================================
   ARTIGOS DO AUTOR
========================================================== */

.author-articles {
    padding-top: 27px;
}

.author-section-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.author-section-heading h2 {
    color: #17232c;
    flex: 0 0 auto;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.author-section-heading > div {
    background-color: #173f5d;
    flex: 1;
    height: 1px;
}

.author-page-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 2.5fr) minmax(260px, 0.75fr);
}

.author-articles-grid {
    display: grid;
    gap: 25px 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.author-article-card {
    border-bottom: 1px solid #d1d7da;
    padding-bottom: 22px;
}

.author-article-image {
    display: block;
    height: 220px;
    margin-bottom: 12px;
    overflow: hidden;
}

.author-article-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.author-article-image:hover img {
    transform: scale(1.02);
}

.author-article-image .blog-image-placeholder {
    min-height: 220px;
}

.author-article-content .blog-article-category {
    margin-bottom: 6px;
}

.author-article-content h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.17;
    margin: 0 0 8px;
}

.author-article-content h3 a {
    color: #17232c;
    text-decoration: none;
}

.author-article-content h3 a:hover {
    color: #315b78;
}

.author-article-content > p {
    color: #596269;
    display: -webkit-box;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    line-height: 1.47;
    margin: 0 0 11px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* ==========================================================
   SIDEBAR DO AUTOR
========================================================== */

.author-sidebar {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.author-sidebar-ad {
    align-items: center;
    background:
        linear-gradient(
            125deg,
            #f1f0ed,
            #e5e3df
        );
    color: #858585;
    display: flex;
    flex-direction: column;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    text-transform: uppercase;
}

.author-sidebar-ad span {
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.author-sidebar-ad strong {
    font-size: 0.78rem;
    font-weight: 400;
}


/* ==========================================================
   MAIS LIDOS DO AUTOR
========================================================== */

.author-most-read {
    border-top: 1px solid #173f5d;
}

.author-most-read header {
    border-bottom: 1px solid #d0d6d9;
    padding: 11px 0 9px;
}

.author-most-read header h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.22rem;
    font-weight: 400;
    margin: 0;
}

.author-most-read ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.author-most-read li {
    border-bottom: 1px solid #d8dcdf;
    display: grid;
    gap: 11px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 12px 0;
}

.author-most-read li > span {
    color: #173349;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1;
}

.author-most-read li small {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.47rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.author-most-read li h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
}

.author-most-read li h3 a {
    color: #17232c;
    text-decoration: none;
}

.author-most-read li h3 a:hover {
    color: #315b78;
}


/* ==========================================================
   NEWSLETTER DO AUTOR
========================================================== */

.author-newsletter {
    border: 1px solid #173f5d;
    padding: 19px;
}

.author-newsletter > span {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.author-newsletter h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.24rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 7px;
}

.author-newsletter p {
    color: #59636a;
    font-family: "DM Sans", sans-serif;
    font-size: 0.63rem;
    line-height: 1.45;
    margin: 0 0 12px;
}

.author-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-newsletter input,
.author-newsletter button {
    border-radius: 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    height: 38px;
}

.author-newsletter input {
    border: 1px solid #c5ccd0;
    outline: none;
    padding: 0 11px;
}

.author-newsletter input:focus {
    border-color: #173f5d;
    box-shadow: 0 0 0 2px rgb(23 63 93 / 8%);
}

.author-newsletter button {
    background-color: #d9ed1c;
    border: 0;
    color: #173349;
    cursor: pointer;
    font-weight: 700;
}

.author-newsletter button:hover {
    background-color: #173f5d;
    color: #fff;
}

.author-newsletter > small {
    color: #7b8388;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.49rem;
    margin-top: 9px;
    text-align: center;
}


/* ==========================================================
   PAGINAÇÃO DO AUTOR
========================================================== */

.author-pagination {
    margin-left: 0;
    margin-right: 0;
}


/* ==========================================================
   AUTOR SEM ARTIGOS
========================================================== */

.author-empty-state {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: 50px 20px;
    text-align: center;
}

.author-empty-state > i {
    color: #173f5d;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.author-empty-state h2 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 8px;
}

.author-empty-state p {
    color: #687178;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    margin: 0 0 18px;
}

.author-empty-state a {
    border: 1px solid #173f5d;
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    padding: 10px 18px;
    text-decoration: none;
}

.author-empty-state a:hover {
    background-color: #173f5d;
    color: #fff;
}


/* ==========================================================
   RESPONSIVIDADE DA PÁGINA DO AUTOR
========================================================== */

@media (max-width: 1050px) {
    .author-profile-content {
        grid-template-columns: 130px minmax(0, 1fr) 140px;
    }

    .author-profile-photo {
        height: 125px;
        width: 125px;
    }

    .author-page-layout {
        grid-template-columns: minmax(0, 2fr) 250px;
    }

    .author-articles-grid {
        grid-template-columns: 1fr;
    }

    .author-article-card {
        display: grid;
        gap: 16px;
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .author-article-image {
        height: 150px;
        margin-bottom: 0;
    }

    .author-article-image .blog-image-placeholder {
        min-height: 150px;
    }
}


@media (max-width: 820px) {
    .author-profile-content {
        align-items: start;
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .author-profile-photo {
        height: 110px;
        width: 110px;
    }

    .author-publication-summary {
        align-items: flex-start;
        border-left: 0;
        border-top: 1px solid #d1d6d9;
        flex-direction: row;
        gap: 8px;
        grid-column: 1 / -1;
        justify-content: flex-start;
        min-height: 0;
        padding-top: 15px;
        text-align: left;
    }

    .author-publication-summary strong {
        font-size: 1.35rem;
    }

    .author-publication-summary span {
        align-self: center;
        margin-top: 0;
        max-width: none;
    }

    .author-page-layout {
        grid-template-columns: 1fr;
    }

    .author-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .author-most-read {
        grid-column: 1 / -1;
    }

    .author-most-read ol {
        display: grid;
        gap: 0 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 620px) {
    .author-profile {
        padding-top: 20px;
    }

    .author-profile-content {
        grid-template-columns: 85px minmax(0, 1fr);
        gap: 17px;
    }

    .author-profile-photo {
        height: 82px;
        width: 82px;
    }

    .author-profile-information h1 {
        font-size: 1.9rem;
    }

    .author-profile-information h2 {
        font-size: 0.68rem;
    }

    .author-profile-information p {
        grid-column: 1 / -1;
        font-size: 0.69rem;
    }

    .author-articles-grid {
        gap: 19px;
    }

    .author-article-card {
        gap: 11px;
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .author-article-image {
        height: 100px;
    }

    .author-article-image .blog-image-placeholder {
        min-height: 100px;
    }

    .author-article-content h3 {
        font-size: 1rem;
    }

    .author-article-content > p {
        display: none;
    }

    .author-sidebar {
        grid-template-columns: 1fr;
    }

    .author-most-read {
        grid-column: auto;
    }

    .author-most-read ol {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 400px) {
    .author-profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-profile-photo {
        height: 105px;
        margin: 0 auto;
        width: 105px;
    }

    .author-social-links {
        justify-content: center;
    }

    .author-publication-summary {
        justify-content: center;
    }

    .author-article-card {
        grid-template-columns: 95px minmax(0, 1fr);
    }

    .author-article-image {
        height: 90px;
    }
}

/* ==========================================================
   PÁGINA DE BUSCA
========================================================== */

.search-page {
    background-color: #fff;
    color: #17232c;
    padding-bottom: 45px;
}


/* ==========================================================
   CABEÇALHO DA BUSCA
========================================================== */

.search-header {
    border-bottom: 1px solid #173f5d;
    padding-bottom: 27px;
    padding-top: 28px;
}

.search-header .article-breadcrumb {
    margin-bottom: 25px;
}

.search-header-content {
    align-items: end;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
}

.search-header-eyebrow {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.search-header-content h1 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 8px;
}

.search-header-content p {
    color: #5a646a;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    line-height: 1.45;
    margin: 0;
    max-width: 500px;
}


/* ==========================================================
   FORMULÁRIO PRINCIPAL
========================================================== */

.search-main-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 120px;
}

.search-main-form input,
.search-main-form button {
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    height: 45px;
}

.search-main-form input {
    background-color: #fff;
    border: 1px solid #bfc8cd;
    border-radius: 2px 0 0 2px;
    border-right: 0;
    color: #17232c;
    outline: none;
    padding: 0 14px;
    width: 100%;
}

.search-main-form input::placeholder {
    color: #818a90;
}

.search-main-form input:focus {
    border-color: #173f5d;
    box-shadow: inset 0 0 0 1px #173f5d;
}

.search-main-form button {
    align-items: center;
    background-color: #082f4c;
    border: 1px solid #082f4c;
    border-radius: 0 2px 2px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    gap: 7px;
    justify-content: center;
}

.search-main-form button:hover {
    background-color: #174e70;
}


/* ==========================================================
   CATEGORIAS DA BUSCA
========================================================== */

.search-categories {
    align-items: center;
    border-bottom: 1px solid #d4d9dc;
    display: flex;
    gap: 8px 18px;
    overflow-x: auto;
    padding-bottom: 14px;
    padding-top: 14px;
    scrollbar-width: thin;
}

.search-categories > span {
    color: #697278;
    flex: 0 0 auto;
    font-family: "DM Sans", sans-serif;
    font-size: 0.59rem;
    font-weight: 600;
}

.search-categories a {
    color: #37444d;
    flex: 0 0 auto;
    font-family: "DM Sans", sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-decoration: none;
}

.search-categories a:hover {
    color: #173f5d;
    text-decoration: underline;
    text-decoration-color: #d9ed1c;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}


/* ==========================================================
   RESULTADOS
========================================================== */

.search-results {
    padding-top: 27px;
}

.search-results-heading {
    align-items: end;
    border-bottom: 1px solid #173f5d;
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
    padding-bottom: 13px;
}

.search-results-heading > div > span {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.search-results-heading h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.search-results-heading > p {
    color: #667077;
    font-family: "DM Sans", sans-serif;
    font-size: 0.62rem;
    margin: 0;
}

.search-results-heading > p strong {
    color: #173f5d;
    font-size: 0.8rem;
}

.search-results-layout {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 2.4fr) minmax(260px, 0.72fr);
}


/* ==========================================================
   LISTA DE RESULTADOS
========================================================== */

.search-results-list {
    border-top: 1px solid #d2d7da;
}

.search-result-card {
    border-bottom: 1px solid #d2d7da;
    display: grid;
    gap: 20px;
    grid-template-columns: 220px minmax(0, 1fr);
    padding: 20px 0;
}

.search-result-card:first-child {
    padding-top: 0;
}

.search-result-image {
    display: block;
    height: 155px;
    overflow: hidden;
}

.search-result-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.search-result-image:hover img {
    transform: scale(1.02);
}

.search-result-image .blog-image-placeholder {
    font-size: 2rem;
    min-height: 155px;
}

.search-result-content {
    align-self: center;
    min-width: 0;
}

.search-result-content .blog-article-category {
    margin-bottom: 6px;
}

.search-result-content h2 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.42rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 8px;
}

.search-result-content h2 a {
    color: #17232c;
    text-decoration: none;
}

.search-result-content h2 a:hover {
    color: #315b78;
}

.search-result-content > p {
    color: #596269;
    display: -webkit-box;
    font-family: "DM Sans", sans-serif;
    font-size: 0.67rem;
    line-height: 1.48;
    margin: 0 0 11px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* ==========================================================
   SIDEBAR DA BUSCA
========================================================== */

.search-sidebar {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.search-sidebar-ad {
    align-items: center;
    background:
        linear-gradient(
            125deg,
            #f1f0ed,
            #e5e3df
        );
    color: #858585;
    display: flex;
    flex-direction: column;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    text-transform: uppercase;
}

.search-sidebar-ad span {
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.search-sidebar-ad strong {
    font-size: 0.78rem;
    font-weight: 400;
}


/* ==========================================================
   MAIS LIDAS DA BUSCA
========================================================== */

.search-most-read {
    border-top: 1px solid #173f5d;
}

.search-most-read header {
    border-bottom: 1px solid #d0d6d9;
    padding: 11px 0 9px;
}

.search-most-read header h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.28rem;
    font-weight: 400;
    margin: 0;
}

.search-most-read ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-most-read li {
    border-bottom: 1px solid #d8dcdf;
    display: grid;
    gap: 11px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 12px 0;
}

.search-most-read li > span {
    color: #173349;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1;
}

.search-most-read li small {
    color: #315b78;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.47rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.search-most-read li h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
}

.search-most-read li h3 a {
    color: #17232c;
    text-decoration: none;
}

.search-most-read li h3 a:hover {
    color: #315b78;
}


/* ==========================================================
   PAGINAÇÃO DA BUSCA
========================================================== */

.search-pagination {
    margin-left: 0;
    margin-right: 0;
}


/* ==========================================================
   NENHUM RESULTADO
========================================================== */

.search-no-results,
.search-awaiting {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    padding: 50px 20px;
    text-align: center;
}

.search-no-results > i,
.search-awaiting > i {
    color: #173f5d;
    font-size: 2.65rem;
    margin-bottom: 17px;
}

.search-no-results h2,
.search-awaiting h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 9px;
}

.search-no-results p,
.search-awaiting p {
    color: #626d74;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
}

.search-no-results-actions {
    display: flex;
    gap: 10px;
    margin-top: 21px;
}

.search-no-results-actions a {
    border: 1px solid #173f5d;
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 150px;
    padding: 10px 16px;
    text-decoration: none;
}

.search-no-results-actions a:first-child {
    background-color: #173f5d;
    color: #fff;
}

.search-no-results-actions a:hover {
    background-color: #d9ed1c;
    border-color: #d9ed1c;
    color: #173349;
}


/* ==========================================================
   RESPONSIVIDADE DA BUSCA
========================================================== */

@media (max-width: 1050px) {
    .search-header-content {
        grid-template-columns: minmax(280px, 0.8fr) minmax(350px, 1.2fr);
    }

    .search-results-layout {
        grid-template-columns: minmax(0, 2fr) 250px;
    }

    .search-result-card {
        grid-template-columns: 185px minmax(0, 1fr);
    }
}


@media (max-width: 820px) {
    .search-header-content {
        align-items: stretch;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .search-results-layout {
        grid-template-columns: 1fr;
    }

    .search-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .search-most-read {
        grid-column: 1 / -1;
    }

    .search-most-read ol {
        display: grid;
        gap: 0 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 620px) {
    .search-header {
        padding-top: 20px;
    }

    .search-header-content h1 {
        font-size: 2rem;
    }

    .search-main-form {
        grid-template-columns: minmax(0, 1fr) 45px;
    }

    .search-main-form button {
        font-size: 0;
        padding: 0;
    }

    .search-main-form button i {
        font-size: 0.75rem;
    }

    .search-results-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .search-results-heading h2 {
        font-size: 1.5rem;
        overflow-wrap: anywhere;
    }

    .search-result-card {
        gap: 12px;
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .search-result-image {
        height: 105px;
    }

    .search-result-image .blog-image-placeholder {
        min-height: 105px;
    }

    .search-result-content h2 {
        font-size: 1rem;
    }

    .search-result-content > p {
        display: none;
    }

    .search-sidebar {
        grid-template-columns: 1fr;
    }

    .search-most-read {
        grid-column: auto;
    }

    .search-most-read ol {
        grid-template-columns: 1fr;
    }

    .search-no-results,
    .search-awaiting {
        min-height: 330px;
    }
}


@media (max-width: 430px) {
    .search-categories {
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .search-result-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .search-result-image {
        height: 90px;
    }

    .search-result-image .blog-image-placeholder {
        min-height: 90px;
    }

    .search-result-content .blog-article-category {
        font-size: 0.47rem;
    }

    .search-result-content h2 {
        font-size: 0.88rem;
    }

    .search-result-content .blog-article-meta {
        font-size: 0.5rem;
    }

    .search-no-results-actions {
        flex-direction: column;
        width: 100%;
    }

    .search-no-results-actions a {
        width: 100%;
    }
}

.blog-featured:has(.blog-featured-article:only-child) {
    grid-template-columns: 1fr;
}

.blog-featured:has(.blog-featured-article:only-child)
.blog-featured-article {
    border-right: 0;
    padding-right: 0;
}


/* ==========================================================
   TAGS DO ARTIGO
========================================================== */

.article-tags {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #d8e0e4;
}

.article-tags__label {
    flex-shrink: 0;
    padding-top: 7px;
    color: #52616a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tags__link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid #cbd7dd;
    border-radius: 999px;
    color: #174765;
    background-color: #f7f9fa;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.article-tags__link::before {
    content: "#";
    margin-right: 2px;
    color: #74868f;
}

.article-tags__link:hover,
.article-tags__link:focus-visible {
    color: #ffffff;
    border-color: #174765;
    background-color: #174765;
    transform: translateY(-1px);
}

.article-tags__link:hover::before,
.article-tags__link:focus-visible::before {
    color: #d9ed1c;
}

.article-tags__link:focus-visible {
    outline: 3px solid rgba(217, 237, 28, 0.45);
    outline-offset: 2px;
}


/* ==========================================================
   RESPONSIVIDADE DAS TAGS
========================================================== */

@media (max-width: 640px) {

    .article-tags {
        flex-direction: column;
        gap: 10px;
    }

    .article-tags__label {
        padding-top: 0;
    }

    .article-tags__list {
        gap: 7px;
    }

    .article-tags__link {
        min-height: 36px;
        padding: 8px 12px;
    }
}

/* ==========================================================
   CORREÇÃO DO RODAPÉ DO ARTIGO
========================================================== */

.article-content-footer {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    grid-template-areas:
        "category share"
        "tags tags";
    align-items: center;
    gap: 18px 24px;
}

.article-category-footer {
    grid-area: category;
    min-width: 0;
}

.article-footer-share {
    grid-area: share;
    justify-self: end;
    flex-shrink: 0;
}

.article-tags {
    grid-area: tags;
    width: 100%;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid #d8e0e4;
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 700px) {

    .article-content-footer {
        grid-template-columns: 1fr;
        grid-template-areas:
            "category"
            "tags"
            "share";
        align-items: start;
        gap: 16px;
    }

    .article-footer-share {
        justify-self: start;
    }

    .article-tags {
        padding-top: 16px;
    }
}


/* ==========================================================
   ARTIGO — ESPAÇAMENTO EDITORIAL COMPACTO
========================================================== */

.article-content {
    line-height: 1.62;
}

.article-content p {
    margin-top: 0;
    margin-bottom: 0.85em;
}

.article-content h2 {
    margin-top: 1.25em;
    margin-bottom: 0.42em;
}

.article-content h3 {
    margin-top: 1.15em;
    margin-bottom: 0.4em;
}

.article-content h4 {
    margin-top: 1.05em;
    margin-bottom: 0.38em;
}

.article-content ul,
.article-content ol {
    margin-top: 0.35em;
    margin-bottom: 0.9em;
    padding-left: 1.45em;
}

.article-content li {
    margin-bottom: 0.22em;
    padding-left: 0.18em;
}

.article-content li > p {
    margin-bottom: 0.35em;
}

.article-content blockquote {
    margin-top: 1.3em;
    margin-bottom: 1.3em;
}

.article-content img,
.article-content figure {
    margin-top: 1.4em;
    margin-bottom: 1.4em;
}


/* ==========================================================
   ARTIGO — CELULAR
========================================================== */

@media (max-width: 767px) {

    .article-content {
        line-height: 1.58;
    }

    .article-content p {
        margin-bottom: 0.78em;
    }

    .article-content h2 {
        margin-top: 1.15em;
        margin-bottom: 0.4em;
    }

    .article-content h3 {
        margin-top: 1.05em;
        margin-bottom: 0.38em;
    }

    .article-content ul,
    .article-content ol {
        margin-bottom: 0.8em;
    }

    .article-content li {
        margin-bottom: 0.18em;
    }
}