/* ================= BLOCO META + SOCIAL ================= */
.text-subheading-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
    background: #111;
    padding: 10px 18px;
    border-radius: 6px;
    margin-top: 15px;
}

/* Meta-dados à esquerda */
.meta-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.text-authors-inline { list-style: none; margin: 0; padding: 0; }
.author-link { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; font-weight: 500; }
.author-link img { border-radius: 50%; width: 34px; height: 34px; }
.author-name { font-size: 12px; color: #fff; }

.text-dates-inline { display: flex; align-items: center; gap: 8px; color: #ccc; flex-wrap: wrap; }
.text-dates-inline small, .text-dates-inline a { font-size: 10px !important; }

.social-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label { color: #fff; font-size: 12px; margin-right: 6px; text-decoration: none; display: inline-block; }

.social-networks-inline {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.social-networks-inline li { display: inline-flex; }

.social-networks-inline li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    overflow: hidden;
    text-decoration: none;
}

.social-networks-inline li a svg { width: 16px; height: 16px; display: block; }

.social-networks-inline li a.whatsapp { background: #25D366; }
.social-networks-inline li a.telegram { background: #0088cc; }
.social-networks-inline li a.facebook { background: #1877f2; }
.social-networks-inline li a.x-social { background: #000; }
.social-networks-inline li a.pinterest { background: #E60023; }

.social-networks-inline li a:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
    filter: brightness(1.06);
}

.post-comments { color: #ccc; transition: color 0.25s; text-decoration: none; }
.post-comments:hover { color: #ff7b7b !important; }

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
    .text-subheading-block {
        display: none !important; /* Esconde bloco meta + social no mobile */
    }
}
