/* NerdLore - estilos exclusivos da página de post */

/* Layout geral do post */
.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.post-main {
    min-width: 0;
}

.post-page-card {
    padding: 24px;
}

.post-article-header {
    margin-bottom: 18px;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--cor-texto-suave);
}

.post-breadcrumb a {
    color: var(--cor-texto-suave);
    text-decoration: none;
}

.post-breadcrumb a:hover {
    color: #c4b5fd;
}

.post-category-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 11px;
    border: 1px solid rgba(124, 58, 237, 0.45);
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.14);
    color: #c4b5fd;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.post-page-title {
    font-size: 2.45rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.post-subtitulo {
    max-width: 820px;
    margin: 0 0 18px;
    color: #b6c2d4;
    font-size: 1.12rem;
    line-height: 1.65;
}

.post-author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 16px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--cor-texto-suave);
    text-align: left;
}

.post-author-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(124, 58, 237, 0.6);
    background: rgba(255,255,255,0.04);
}

.post-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    text-align: left;
}

.post-author-info > span {
    display: block;
    color: var(--cor-texto-suave);
    line-height: 1.3;
}

.post-author-info strong {
    color: #fff;
}

.post-meta-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--cor-texto-suave);
    text-align: left;
}

.post-meta-line span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.post-meta-line span:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
    color: rgba(255,255,255,0.35);
}

.post-page-thumb {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--cor-borda);
}

.post-page-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.post-sketch-thumb img {
    max-height: 360px;
    object-fit: cover;
}

.post-image-caption {
    margin: 10px 2px 0;
    color: var(--cor-texto-suave);
    font-size: 0.86rem;
    line-height: 1.5;
}

/* Conteúdo do artigo */
.post-content {
    color: #edf1f8;
    line-height: 1.85;
    font-size: 1.03rem;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-bottom: 1rem;
}

.post-content img,
.post-content iframe,
.post-content video {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.post-content blockquote,
.post-content-premium blockquote {
    border-left: 4px solid var(--cor-primaria);
    padding: 12px 16px;
    margin: 18px 0;
    border-radius: 0 14px 14px 0;
    background: rgba(255,255,255,0.03);
    color: var(--cor-texto-suave);
}

.post-content a,
.post-content-premium a {
    color: #cdb9ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content-premium {
    font-size: 1.08rem;
    line-height: 1.9;
}

.post-content-premium p {
    color: #edf1f8;
    margin-bottom: 1.15rem;
}

.post-content-premium h2,
.post-content-premium h3,
.post-content-premium h4 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.post-sketch-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--cor-borda);
    border-radius: 20px;
    padding: 22px;
}

/* Resumo, NerdLore explica, FAQ, fontes e tags */
.post-resumo-rapido,
.post-fontes-section,
.post-faq-section,
.post-tags-inside {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.10), rgba(59, 130, 246, 0.045));
}

.post-resumo-rapido h2,
.post-fontes-section h2,
.post-faq-section h2 {
    margin: 0 0 12px;
    color: #f8fafc;
    font-size: 1.15rem;
    line-height: 1.3;
}

.post-resumo-rapido ul,
.post-fontes-section ul {
    margin: 0;
    padding-left: 1.15rem;
    color: #dbe4f0;
    line-height: 1.75;
}

.post-resumo-rapido li::marker,
.post-fontes-section li::marker {
    color: #a855f7;
}

.nerdlore-explica {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(124, 58, 237, 0.34);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(14, 165, 233, 0.05));
}

.nerdlore-explica strong {
    display: block;
    margin-bottom: 8px;
    color: #c4b5fd;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nerdlore-explica p:last-child {
    margin-bottom: 0;
}

.post-faq-list {
    display: grid;
    gap: 10px;
}

.post-faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
    overflow: hidden;
}

.post-faq-item summary {
    cursor: pointer;
    padding: 13px 14px;
    color: #f8fafc;
    font-weight: 700;
    list-style: none;
}

.post-faq-item summary::-webkit-details-marker {
    display: none;
}

.post-faq-item summary::after {
    content: "+";
    float: right;
    color: #c4b5fd;
    font-size: 1.1rem;
}

.post-faq-item[open] summary::after {
    content: "−";
}

.post-faq-item p {
    margin: 0;
    padding: 0 14px 14px;
    color: #cbd5e1;
    line-height: 1.7;
}

.post-tags-inside {
    background: rgba(255,255,255,0.025);
}

.post-tags-inside strong {
    color: #f8fafc;
}

.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tag-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: #c4b5fd;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: 0.2s ease;
}

.post-tag-item:hover {
    background: rgba(124, 58, 237, 0.24);
    border-color: rgba(196, 181, 253, 0.65);
    color: #ffffff;
}

/* Barra de ações: curtir, comentar e compartilhar */
.post-actions-bar {
    margin-top: 26px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    border-radius: 0;
}

.post-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
}

.post-action-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    position: relative;
}

.post-action-slot:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,0.12);
    transform: translateY(-50%);
}

.post-action-slot-center,
.post-action-slot-right {
    justify-content: center;
}

.post-action-form {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.post-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 6px 12px;
    border: none;
    outline: none;
    background: transparent;
    color: #dbe4f0;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: 0.2s ease;
}

.post-action-btn:hover {
    color: #ffffff;
    background: transparent;
    transform: none;
}

.post-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

.post-action-text {
    display: inline-flex;
    align-items: center;
}

.post-action-btn strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: #aeb6c8;
    font-size: 0.86rem;
    font-weight: 700;
}

.post-like-action.is-liked {
    color: #ffffff;
}

.post-like-action.is-liked .post-action-icon {
    color: #fb7185;
}

/* Comentários */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-header small {
    color: var(--cor-texto-suave);
}

.comment-item {
    padding: 18px;
}

.comment-item p,
.comment-form-box p,
.comment-login-box p {
    line-height: 1.7;
}

.comment-input-row {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 12px;
    align-items: stretch;
}

.comment-send-btn {
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    min-height: 100%;
}

.comment-form-box .form-control,
.comment-form-box .form-control:focus {
    background: #11151d;
    border: 1px solid var(--cor-borda);
    color: #fff;
    box-shadow: none;
}

.comment-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--cor-borda);
    background: #0f131b;
}

.comment-user-meta {
    min-width: 0;
}

/* Continue explorando */
.post-continue-section {
    overflow: hidden;
}

.post-continue-header {
    margin-bottom: 18px;
}

.post-section-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.28);
    color: #c4b5fd;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.post-continue-header h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 1.35rem;
    line-height: 1.25;
}

.post-continue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.post-continue-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.post-continue-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.45);
    background: rgba(124, 58, 237, 0.075);
}

.post-continue-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.post-continue-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.post-continue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.post-continue-card:hover .post-continue-thumb img {
    transform: scale(1.04);
}

.post-continue-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px;
}

.post-continue-category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.post-continue-body h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
}

.post-continue-body p {
    margin: 0;
    color: #aeb6c8;
    font-size: 0.88rem;
    line-height: 1.55;
}

.post-continue-more {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.post-continue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(59, 130, 246, 0.12));
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.post-continue-button:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.38), rgba(59, 130, 246, 0.22));
    border-color: rgba(196, 181, 253, 0.75);
    transform: translateY(-1px);
}

/* Sidebar nova do post */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-sidebar-card {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(124, 58, 237, 0.05));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.post-sidebar-card-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.post-sidebar-card-header h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
}

.sidebar-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    line-height: 1;
}

.sidebar-empty-text {
    margin: 0;
    color: #aeb6c8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.sidebar-featured-list,
.sidebar-most-read-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-featured-item,
.sidebar-most-read-item {
    text-decoration: none;
    color: inherit;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-featured-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
}

.sidebar-featured-item:last-child,
.sidebar-most-read-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-featured-thumb {
    width: 100%;
    height: 72px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}

.sidebar-featured-thumb img,
.sidebar-most-read-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sidebar-featured-category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 6px;
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sidebar-featured-title,
.sidebar-most-read-title {
    color: #f8fafc;
    line-height: 1.35;
    transition: 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-featured-title {
    font-size: 0.9rem;
}

.sidebar-featured-item:hover .sidebar-featured-title,
.sidebar-most-read-item:hover .sidebar-most-read-title {
    color: #c4b5fd;
}

.post-sidebar-newsletter {
    border-color: rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.11), rgba(59, 130, 246, 0.06));
}

.sidebar-newsletter-desc {
    margin: 0 0 14px;
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.65;
}

.sidebar-newsletter-form .form-control {
    border-radius: 12px;
}

.sidebar-most-read-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    align-items: center;
}

.sidebar-most-read-thumb {
    position: relative;
    width: 76px;
    height: 58px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}

.sidebar-rank-number {
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.92);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: 0 6px 14px rgba(0,0,0,0.28);
}

.sidebar-most-read-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sidebar-most-read-title {
    font-size: 0.88rem;
}

.sidebar-most-read-meta {
    color: #94a3b8;
    font-size: 0.76rem;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .post-sidebar {
        position: sticky;
        top: 110px;
        align-self: start;
    }
}

@media (max-width: 991px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
        top: auto;
    }

    .post-continue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .post-page-card,
    .comment-form-box,
    .comment-login-box,
    .comment-item,
    .post-tags-box {
        padding: 16px;
    }

    .post-page-title {
        font-size: 1.8rem;
    }

    .post-subtitulo {
        font-size: 1rem;
        line-height: 1.6;
    }

    .post-author-meta {
        display: grid !important;
        grid-template-columns: 52px 1fr !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        text-align: left !important;
    }

    .post-author-avatar {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }

    .post-author-info {
        width: 100% !important;
        min-width: 0 !important;
        text-align: left !important;
    }

    .post-author-info > span {
        width: 100% !important;
        margin: 0 0 8px !important;
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }

    .post-meta-line {
        gap: 6px !important;
        width: 100% !important;
        line-height: 1.4 !important;
    }

    .post-meta-line span {
        padding: 4px 9px !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.06) !important;
        color: #aeb6c8 !important;
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
    }

    .post-meta-line span::before,
    .post-meta-line span::after {
        display: none !important;
        content: none !important;
    }

    .post-sketch-content {
        padding: 16px;
    }

    .post-content-premium {
        font-size: 1rem;
        line-height: 1.8;
    }

    .post-resumo-rapido,
    .post-fontes-section,
    .post-faq-section,
    .post-tags-inside,
    .nerdlore-explica {
        padding: 16px;
        border-radius: 14px;
    }

    .post-actions-bar {
        padding: 8px 0;
    }

    .post-actions-grid {
        grid-template-columns: 1fr;
    }

    .post-action-slot {
        min-height: 50px;
    }

    .post-action-slot:not(:last-child)::after {
        content: "";
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        width: calc(100% - 24px);
        height: 1px;
        transform: translateX(-50%);
        background: rgba(255,255,255,0.08);
    }

    .post-action-form,
    .post-action-btn {
        width: 100%;
    }

    .post-action-btn {
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .comment-item {
        padding: 16px;
    }

    .comment-input-row {
        grid-template-columns: 1fr;
    }

    .comment-send-btn {
        min-height: 48px;
    }

    .post-continue-header h3 {
        font-size: 1.15rem;
    }

    .post-continue-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .post-continue-card {
        border-radius: 16px;
    }

    .post-continue-link {
        display: grid;
        grid-template-columns: 112px 1fr;
        min-height: 112px;
    }

    .post-continue-thumb {
        aspect-ratio: auto;
        height: 100%;
        min-height: 112px;
    }

    .post-continue-body {
        padding: 12px;
    }

    .post-continue-category {
        font-size: 0.68rem;
        margin-bottom: 6px;
    }

    .post-continue-body h4 {
        font-size: 0.93rem;
        line-height: 1.3;
    }

    .post-continue-body p {
        display: none;
    }

    .post-continue-button {
        width: 100%;
    }

    .post-sidebar-card {
        padding: 16px;
        border-radius: 16px;
    }

    .sidebar-featured-item {
        grid-template-columns: 84px 1fr;
        gap: 10px;
    }

    .sidebar-featured-thumb {
        height: 68px;
        border-radius: 10px;
    }

    .sidebar-most-read-item {
        grid-template-columns: 72px 1fr;
        gap: 10px;
    }

    .sidebar-most-read-thumb {
        width: 72px;
        height: 56px;
        border-radius: 10px;
    }

    .sidebar-featured-title,
    .sidebar-most-read-title {
        font-size: 0.86rem;
    }
}

@media (max-width: 420px) {
    .post-continue-link {
        grid-template-columns: 96px 1fr;
    }

    .post-continue-thumb {
        min-height: 104px;
    }
}

/* Correção definitiva mobile - data, tempo de leitura e leituras */

@media (max-width: 767px) {
    .post-author-meta {
        display: grid !important;
        grid-template-columns: 52px 1fr !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        text-align: left !important;
    }

    .post-author-avatar {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }

    .post-author-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        text-align: left !important;
    }

    .post-author-info > span {
        display: block !important;
        width: 100% !important;
        margin: 0 0 8px !important;
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }

    .post-meta-line {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }

    .post-meta-line span {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        max-width: max-content !important;
        margin: 0 !important;
        padding: 4px 9px !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.06) !important;
        color: #aeb6c8 !important;
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .post-meta-line span::before,
    .post-meta-line span::after {
        display: none !important;
        content: none !important;
    }
}
