/*Single Post Legenda */

.custom-divider{
	height: 40px;width: 100%;background: transparent;display: block;
}

 /* Breadcrumb wrapper padrão */
       .breadcrumb-wrapper {
          font-size: 12px;
          margin-bottom: 20px;
          color: #555;
		  text-align: center;
		  font-weight: 600;
        }
        /* Breadcrumb links */
       .breadcrumb-wrapper a {
           color: var(--color-accent);
       }
       /* Hover nos links */
      .breadcrumb-wrapper a:hover {
		   color: #2f2f2f;
       }
		/* linha acima breadcrump */
		.titulo-linha {
            width: 100px;
            height: 1px;
            background-color: #ccc;
            margin: 0 auto 20px auto;
        }
		.resumo_post{
			text-align: center;
			margin-bottom: 30px;
		}
		.post-meta {
            text-align: center;
            font-size: 14px;
            color: #007f5e;
            font-weight: 600;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 32px;
            line-height: 1.6;
        }
        .post-meta span {
            margin: 0 10px;
        }
        /*Tempo de Leitura */
        .reading-time {
            color: #007F5F;
            font-size: 14px;
            font-weight: 600;
        } 
/* TAG BUTTONS */
/* Contêiner das tags */
.tags-buttons ul {
    list-style: none; /* remove bolinhas */
    margin: 0;
    padding: 0;
    display: flex;          /* deixa lado a lado */
    flex-wrap: wrap;        /* quebra linha quando faltar espaço */
    gap: 10px;              /* espaço entre tags */
}

/* Cada tag */
.tag-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-weight: 600;
    transition: 0.3s all ease;
}

.tag-button:hover {
    background-color: #fff;
    color: #000;
	border-color: #000;
}

/* Mobile: mantém empilhado */
@media (max-width: 768px) {
    .tags-buttons ul {
        flex-direction: column;
        gap: 8px;
    }
}
/*Caixa Compartilhar */
caixa-compartilhar {
            display: flex;
            align-items: center !important;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .titulo-compartilhar {
            font-weight: 600;
            color: #333;
            font-size: 18px;
        }
         caixa-compartilhar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .titulo-compartilhar {
            font-weight: 600;
            color: #333;
            font-size: 18px;
        }
        .icones-compartilhar {
            display: flex;
            gap: 8px;
        }
        .botao-social {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            color: #fff;
			width: 36px;
            height: 36px;
            border-radius: 4px;
            font-size: 18px;
            transition: background-color 0.3s ease;
			margin-bottom: 30px;
			border: 1.5px solid #e3e3e3;
			box-sizing: content-box;
			padding: 6px;
        }
        .botao-social:hover {
            background-color: #ffffff;
			border: none;
        }
/*CAIXA AUTOR*/
.caixa-autor {
        display: flex;
        gap: 16px;
        align-items: center;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        max-width: 800px;
        margin-top: 24px;
    }
    .caixa-autor img.avatar-custom {
        width: 64px;
        height: 64px;
        border-radius: 100%;
        object-fit: cover;
        background: #fff;
        padding: 4px;
        display: block;
        box-shadow: 0 0 0 1px #ddd;
    }
    .caixa-autor-info h4 {
        margin: 0;
        font-size: 18px;
        color: #2f2f2f;
    }
    .caixa-autor-info p {
        margin: 4px 0 0 0;
        font-size: 14px;
        color: #444;
    }
    .caixa-autor-info a {
        font-size: 13px;
        color: #2f2f2f;
    }
    .caixa-autor-info a:hover {
		color: black;
    }
/*Relacionados Simples */
 .relacionados-simples {
        margin-top: 8px;
        padding: 16px 20px;
        background: white;
        border-radius: 8px;
    }
    .relacionados-simples h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
		list-style: none;
    }
    .relacionados-simples ul {
        list-style: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .relacionados-simples li {
        margin-bottom: 8px;
    }
    .relacionados-simples a {
        color: #007f5e;
    }
    .relacionados-simples li::before {
         content: none !important;
		 display: none !important;
    }