/* Artigo */
article {
    font-family: "Inter", "Helvetica Neue", sans-serif !important;
    background-color: #ffffff; 
    border-radius: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
}
.featured-image img { 
    border-radius: 20px;
}
.article-header {
    padding: 32px; 
    text-align: center;
}
.article-header h4.article-category {
    color:#7c7c7c !important; 
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
.article-header h1.article-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 2px;
    padding-bottom: 2px;
}
.article-header h3.article-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    padding-top: 12px;
    padding-bottom: 16px;
}
.article-header .article-meta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.article-header .article-meta img.author-photo {
    width:50px; 
    height: 50px; 
    border: 1px solid #ccc;
    border-radius: 50px;
}
.article-body {
    padding: 0 32px 32px 32px;
}
.article-body h2 { 
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    padding-top: 16px;
    padding-bottom: 16px;
}
.article-body h3 { 
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    padding-top: 16px;
    padding-bottom: 16px;
}
.article-body h4 { 
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding-top: 16px;
    padding-bottom: 16px;
}
.article-body p { 
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}
.article-body ul,
.article-body ol {
    margin: 8px 0;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 56px;
    padding-right: 32px;
    border-radius: 20px;
    background-color: #f5f5f5;
}
.article-body ul li {
    font-size: 16px;
    line-height: 2;
}
.article-body ul li::marker {
    font-size: 24px;
    color: #e9b514;
}
.article-body blockquote {
    font-size: 18px;
    font-weight: 500;
    margin: 8px 0;
    padding: 24px;
    border-left: 5px solid #e9b514;
    border-radius: 20px;
    background-color: #f5f5f5;
}

/* Post Sidebar */
.post-sidebar .widget_media_image img {
    border-radius: 20px;
}

/* CTA */
section.cta-content {
    padding: 32px;
    border-radius: 20px;
    color: #fff;
    background-color: #0033ff;
}
section.cta-content > div {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 12px;
}
section.cta-content .cta-text {
    text-align: center;
}
section.cta-content .cta-text h2 {
    font-size: 26px;
    color: #fff; 
}
section.cta-content .cta-button {
    padding: 12px 24px;
    border-radius: 4px;
    background-color: #fff;
}
@media (min-width: 767px) {
    section.cta-content > div {
        flex-direction: row; 
        align-items: center; 
        justify-content: space-between;
    }
    section.cta-content .cta-text {
        text-align: left;
    }
}

/* Author */
section.author-box {
    padding: 32px;
    border-radius: 20px;
    background-color: #fff; 
}
section.author-box > div {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
}
section.author-box .author-photo {
    width:100px; 
    height: 100px; 
    border-radius: 100px;
}
section.author-box .author-text {
    text-align: center;
    padding-left: 0;
}
section.author-box .author-text h4 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}
section.author-box .author-text h2 {
    font-size: 26px;
    font-weight: 600;
}
section.author-box .author-text p {
    font-size: 15px;
    font-weight: 400;
}
@media (min-width: 767px) {
    section.author-box > div {
        flex-direction: row; 
        align-items: flex-start; 
        justify-content: space-between;
    }
    section.author-box .author-text {
        text-align: left;
        padding-left: 32px;
    }
}