.site__block_blog-index { padding: 160px 0 80px; background: #fff; }
.site__block_blog-index .container { padding: 0 20px; }
.site__block_blog-index .block__heading { text-align: center; margin-bottom: 56px; }
.site__block_blog-index .heading__title { font-size: 42px; font-weight: 700; color: #000; margin: 0 0 12px; }
.site__block_blog-index .heading__subtitle { font-size: 18px; color: var(--gray-color, #666); margin: 0; }

.site__block_blog-index .block__cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}
@media (max-width: 1023px) { .site__block_blog-index .block__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .site__block_blog-index .block__cards { grid-template-columns: 1fr; } }

.post-card {
    background: var(--color-surface-elevated, #fff);
    border: 1px solid var(--color-border, #E5E7EB);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.2s;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
    border-color: rgba(0, 36, 248, 0.2);
}
.post-card__link { display: block; color: inherit; text-decoration: none; }
.post-card__image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card__body { padding: 20px 24px 24px; }
.post-card__tag-badge {
    display: inline-block;
    background: var(--badge-color, #0024F8);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
/* Badge de Mercado Livre tem fundo amarelo — texto escuro para contraste */
.post-card__tag-badge[style*="#FFE600"],
.post-card__tag-badge[style*="#ffe600"] { color: #0A0E1A; }
.post-card__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text-primary, #0A0E1A);
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card__excerpt {
    color: var(--color-text-secondary, #6B7280);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card__meta {
    color: var(--color-text-tertiary, #9CA3AF);
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* Paginação custom — substitui o template Tailwind padrão do Laravel */
.site__block_blog-index .block__pagination {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.pagination__info {
    font-size: 14px;
    color: var(--color-text-secondary, #6B7280);
    text-align: center;
}
.pagination__info strong {
    color: var(--color-text-primary, #0A0E1A);
    font-weight: 700;
}
.pagination__sep {
    margin: 0 6px;
    color: var(--color-text-tertiary, #9CA3AF);
}
.pagination__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination__link,
.pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--color-border, #E5E7EB);
    background: #fff;
    color: var(--color-text-primary, #0A0E1A);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
    cursor: pointer;
}
.pagination__link:hover:not(.pagination__link--disabled),
.pagination__page:hover:not(.pagination__page--current) {
    border-color: var(--first-color, #0024f8);
    color: var(--first-color, #0024f8);
    background: rgba(0, 36, 248, 0.04);
    transform: translateY(-1px);
}
.pagination__page--current {
    background: var(--first-color, #0024f8);
    border-color: var(--first-color, #0024f8);
    color: #fff;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 36, 248, 0.25);
}
.pagination__link--disabled {
    color: var(--color-text-tertiary, #9CA3AF);
    background: var(--color-surface-subtle, #F4F5F7);
    cursor: not-allowed;
    border-color: var(--color-border, #E5E7EB);
}
.pagination__link svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pagination__link { padding: 0 10px; font-size: 13px; }
    .pagination__link svg { width: 14px; height: 14px; }
    .pagination__page { min-width: 36px; height: 36px; padding: 0 10px; font-size: 13px; }
}

.site__block_blog-show {
    background: #FCFCFD;
    padding-top: 160px;
    padding-bottom: 100px;
}
.site__block_blog-show .container { max-width: 800px; padding: 0 24px; }

/* Botão "Voltar ao blog" */
.post__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-secondary, #6B7280);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    padding: 8px 14px 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--color-border, #E5E7EB);
    transition: all 0.2s ease;
}
.post__back:hover {
    color: var(--first-color, #0024f8);
    border-color: var(--first-color, #0024f8);
    background: rgba(0, 36, 248, 0.04);
    transform: translateX(-2px);
}
.post__back svg {
    transition: transform 0.2s ease;
}
.post__back:hover svg {
    transform: translateX(-2px);
}

.breadcrumbs { font-size: 13px; margin-bottom: 32px; color: var(--color-text-secondary, #6B7280); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs li::after { content: '›'; margin-left: 8px; color: var(--color-text-secondary, #6B7280); }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs li[aria-current="page"] { color: var(--color-text-primary, #0A0E1A); font-weight: 600; }
.breadcrumbs a { color: var(--color-text-secondary, #6B7280); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--first-color, #0024f8); }

.post__header { margin-bottom: 28px; }
.post__title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--color-text-primary, #0A0E1A);
    margin: 0 0 16px;
    text-wrap: balance;
}
.post-meta { font-size: 14px; color: var(--color-text-secondary, #6B7280); display: flex; flex-wrap: wrap; gap: 8px; }

.post__hero { margin: 28px 0 36px; }
.post__hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.post__content {
    font-size: 17px;
    line-height: 1.65;
    color: #1F2937;
    font-feature-settings: 'kern', 'liga', 'clig', 'calt';
    -webkit-font-smoothing: antialiased;
}

/* First paragraph drop cap effect — sutil, Medium-style */
.post__content > p:first-of-type::first-letter {
    font-size: 1.12em;
    font-weight: 600;
}

.post__content > p:first-of-type {
    font-size: 18px;
    color: var(--color-text-primary, #0A0E1A);
    line-height: 1.55;
    margin-bottom: 20px;
}

/* Permalink anchors do CommonMark — visíveis só no hover */
.post__content .heading-permalink {
    color: var(--color-text-tertiary, #9CA3AF);
    margin-left: 0.5em;
    opacity: 0;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
}
.post__content h2:hover .heading-permalink,
.post__content h3:hover .heading-permalink,
.post__content h4:hover .heading-permalink {
    opacity: 0.5;
}
.post__content h2:hover .heading-permalink:hover,
.post__content h3:hover .heading-permalink:hover {
    opacity: 1;
}

/* Section dividers entre h2s — separação clara mas compacta */
.post__content > h2:not(:first-of-type) {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border, #E5E7EB);
}

/* Hierarquia tipográfica compacta */
.post__content h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--color-text-primary, #0A0E1A);
    line-height: 1.2;
    margin-bottom: 18px;
    margin-top: 40px;
    text-wrap: balance;
}
.post__content > h2:first-of-type {
    margin-top: 36px;
}
.post__content h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--color-text-primary, #0A0E1A);
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 12px;
    text-wrap: balance;
}
.post__content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-primary, #0A0E1A);
    line-height: 1.4;
    margin-top: 22px;
    margin-bottom: 8px;
}
.post__content p {
    font-size: 17px;
    line-height: 1.65;
    color: #1F2937;
    margin-bottom: 16px;
}
.post__content strong {
    color: var(--color-text-primary, #0A0E1A);
    font-weight: 700;
}
.post__content em {
    font-style: italic;
}
.post__content ul, .post__content ol { margin: 0 0 18px; padding-left: 26px; }
.post__content li {
    margin: 6px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #1F2937;
}
.post__content li::marker {
    color: var(--first-color, #0024f8);
}
.post__content a,
.post__content a:link,
.post__content a:visited,
.post__content a:hover,
.post__content a:active {
    color: var(--first-color, #0024f8);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--first-color, #0024f8);
    transition: text-decoration-thickness 0.2s, opacity 0.2s;
}
.post__content a:hover {
    text-decoration-thickness: 2.5px;
}
.post__content blockquote {
    border-left: 4px solid var(--first-color, #0024f8);
    padding: 12px 0 12px 20px;
    color: var(--color-text-primary, #0A0E1A);
    font-style: italic;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
    margin: 24px 0;
    background: linear-gradient(to right, rgba(0,36,248,0.03), transparent);
    border-radius: 0 8px 8px 0;
}
.post__content blockquote p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-text-primary, #0A0E1A);
    margin-bottom: 10px;
}
.post__content blockquote p:last-child {
    margin-bottom: 0;
}
.post__content hr {
    border: none;
    border-top: 1px solid var(--color-border, #E5E7EB);
    margin: 32px 0;
}
/* Tabelas — bleed pra fora do container ganhando espaço pra colunas largas */
.post__content table {
    width: calc(100% + 96px);
    margin: 32px -48px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
    background: #fff;
    border: 1px solid var(--color-border, #E5E7EB);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(10, 14, 26, 0.04);
}
.post__content table th,
.post__content table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border, #E5E7EB);
    vertical-align: top;
}
.post__content table tr:last-child td {
    border-bottom: none;
}
.post__content table th {
    background: linear-gradient(180deg, #F8F9FF 0%, #F0F3FF 100%);
    font-weight: 700;
    color: var(--color-text-primary, #0A0E1A);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--color-border, #E5E7EB);
}
.post__content table td:first-child {
    font-weight: 600;
    color: var(--color-text-primary, #0A0E1A);
}
.post__content table tbody tr:hover {
    background: rgba(0, 36, 248, 0.02);
}
.post__content code { background: #f5f5f7; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.post__content pre { background: #f5f5f7; padding: 16px; border-radius: 8px; overflow-x: auto; }
.post__footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid #eee; }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post__tag { background: #f5f5f7; color: var(--fourth-color, #001592); padding: 6px 12px; border-radius: 20px; text-decoration: none; font-size: 14px; }
.post__tag:hover { background: var(--first-color, #0024f8); color: #fff; }

/* Mobile: tabelas voltam ao container, com scroll horizontal */
@media (max-width: 920px) {
    .post__content table {
        width: 100%;
        margin: 24px 0;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .post__content table thead,
    .post__content table tbody,
    .post__content table tr {
        display: table;
        width: 100%;
        table-layout: auto;
    }
    .post__content table th,
    .post__content table td {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .post__title { font-size: 28px; }
    .site__block_blog-show { padding: 120px 0 48px; }
    .post__content { font-size: 16px; line-height: 1.6; }
    .post__content p { font-size: 16px; line-height: 1.6; margin-bottom: 14px; }
    .post__content > p:first-of-type { font-size: 17px; line-height: 1.55; margin-bottom: 16px; }
    .post__content h2 { font-size: 23px; margin-top: 32px; margin-bottom: 14px; }
    .post__content > h2:not(:first-of-type) { margin-top: 36px; padding-top: 28px; }
    .post__content h3 { font-size: 18px; margin-top: 22px; margin-bottom: 10px; }
    .post__content li { font-size: 16px; line-height: 1.55; }
    .post__content table { font-size: 14px; }
    .post__content table th,
    .post__content table td { padding: 10px 12px; }
}

.post-cta {
    background: linear-gradient(135deg, #0024f8 0%, #001592 100%);
    color: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
}
.post-cta__title { font-size: 24px; margin: 0 0 10px; font-weight: 700; }
.post-cta__text { font-size: 15px; line-height: 1.5; margin: 0 0 20px; opacity: 0.9; }
.post-cta__btn {
    display: inline-block; background: #fff; color: var(--first-color, #0024f8);
    padding: 14px 28px; border-radius: 999px; font-weight: 700; text-decoration: none;
    transition: transform .2s;
}
.post-cta__btn:hover { transform: translateY(-2px); }

.related-posts { margin-top: 60px; padding-top: 40px; border-top: 1px solid #eee; }
.related-posts__title { font-size: 24px; font-weight: 700; margin: 0 0 24px; color: var(--fourth-color, #001592); }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1023px) { .related-posts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .related-posts__grid { grid-template-columns: 1fr; } }

/* Hero do blog index */
.site__block_blog-index .heading__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary, #6B7280);
    margin-bottom: 16px;
}
.site__block_blog-index .heading__meta {
    margin: 16px 0 24px;
    color: var(--gray-color, #666);
    font-size: var(--fs-small);
}
.blog__tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}
.tag-pill {
    background: #f5f5f7;
    color: var(--fourth-color, #001592);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: var(--fs-small);
    text-decoration: none;
    transition: background 0.2s;
}
.tag-pill:hover {
    background: var(--first-color, #0024f8);
    color: #fff;
}
.tag-pill__count {
    opacity: 0.85;
    margin-left: 4px;
    font-weight: 600;
}

/* Card gradient fallback — refined editorial */
.post-card__image--gradient {
    background:
        linear-gradient(135deg, var(--tag-color, #0024F8) 0%, color-mix(in srgb, var(--tag-color, #0024F8) 60%, #0A0E1A) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* Decorative pattern overlay */
.post-card__image--gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.12) 0%, transparent 40%);
    pointer-events: none;
}
.post-card__image--gradient::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 14px
        );
    pointer-events: none;
}
.post-card__gradient-tag {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
}

/* Share buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.share-buttons__label {
    font-size: var(--fs-small);
    color: var(--gray-color, #666);
    font-weight: 600;
}
.share-buttons__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f7;
    color: var(--fourth-color, #001592);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}
.share-buttons__btn:hover {
    transform: translateY(-2px);
}
.share-buttons__btn--linkedin:hover {
    background: #0a66c2;
    color: #fff;
}
.share-buttons__btn--whatsapp:hover {
    background: #25d366;
    color: #fff;
}
.share-buttons__btn--twitter:hover {
    background: #000;
    color: #fff;
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* Quick Answer (Direct Answer Block) — formato extraível por LLMs */
.post__content .post__quick-answer {
    background: linear-gradient(135deg, #FAFBFF 0%, #FFFFFF 60%, #F5F7FF 100%);
    border: 1px solid var(--color-border, #E5E7EB);
    border-radius: 16px;
    padding: 20px 24px 20px 28px;
    margin: 24px 0 28px;
    position: relative;
    box-shadow: 0 1px 2px rgba(10, 14, 26, 0.04), 0 8px 24px rgba(10, 14, 26, 0.04);
}
.post__content .post__quick-answer::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--first-color, #0024f8) 0%, rgba(0, 36, 248, 0.15) 100%);
    border-radius: 16px 0 0 16px;
}
.post__content .post__quick-answer .quick-answer__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--first-color, #0024f8);
    padding: 5px 12px 5px 9px;
    background: rgba(0, 36, 248, 0.08);
    border: 1px solid rgba(0, 36, 248, 0.12);
    border-radius: 999px;
    margin-bottom: 10px;
    line-height: 1;
}
.post__content .post__quick-answer .quick-answer__label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230024f8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.post__content .post__quick-answer p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text-primary, #0A0E1A);
    margin: 0;
    font-weight: 500;
}
.post__content .post__quick-answer p + p {
    margin-top: 8px;
}

/* FAQ section — visível e gera FAQPage schema */
.post__faq {
    margin: 40px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--color-border, #E5E7EB);
}
.post__faq-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text-primary, #0A0E1A);
    line-height: 1.2;
    margin: 0 0 18px;
}
.post__faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.post__faq-item {
    border: 1px solid var(--color-border, #E5E7EB);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.post__faq-item[open] {
    border-color: rgba(0, 36, 248, 0.25);
    box-shadow: 0 4px 16px rgba(0, 36, 248, 0.05);
}
.post__faq-question {
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary, #0A0E1A);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
    line-height: 1.4;
}
.post__faq-question::-webkit-details-marker { display: none; }
.post__faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--first-color, #0024f8);
    transition: transform 0.2s;
}
.post__faq-item[open] .post__faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}
.post__faq-question:hover {
    color: var(--first-color, #0024f8);
}
.post__faq-answer {
    padding: 0 22px 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
}
.post__faq-answer p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
}
.post__faq-answer p:last-child {
    margin: 0;
}
.post__faq-answer ul, .post__faq-answer ol {
    margin: 0 0 12px;
    padding-left: 24px;
}
.post__faq-answer li {
    margin: 6px 0;
}
.post__faq-answer a {
    color: var(--first-color, #0024f8);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.post__faq-answer strong {
    color: var(--color-text-primary, #0A0E1A);
}

/* Comparison tables (used in comparativos) */
.post__content table.compare-table {
    margin: 28px 0;
}
.post__content table.compare-table th {
    background: linear-gradient(180deg, #F5F7FF 0%, #FAFBFF 100%);
}
.post__content table.compare-table td:first-child {
    font-weight: 600;
    color: var(--color-text-primary, #0A0E1A);
}

@media (max-width: 600px) {
    .post__faq-title { font-size: 24px; }
    .post__faq-question { font-size: 16px; padding: 16px 20px; padding-right: 48px; }
    .post__faq-answer { padding: 0 20px 18px; font-size: 15px; }
    .post__content .post__quick-answer { padding: 20px 22px 20px 26px; margin: 24px 0 32px; }
    .post__content .post__quick-answer p { font-size: 16px; }
}
