/*

[Custom Stylesheet]

Project     : BloggyPress - Responsive Personal Blog HTML5 Template
Version     : 1.0
Author      : ThemeLooks
Author URI  : https://themeforest.net/user/themelooks

You can write your custom css styles in this file...

*/

/* === FIX: manter a FAIXA do topo como no tema (azul) === */
.header--topbar,
.header--topbar.bg-dark { 
  background-color: #97ccc4 !important; /* mesma cor do .bg-dark no style.css */
}
.header--topbar, 
.header--topbar * {
  color: #fff !important;              /* texto/ícones brancos na faixa azul */
}

/* === Texto e títulos em cinza-escuro (resto do site) === */
:root{
  --gray-text:  #2f2f2f;  /* parágrafos */
  --gray-title: #262626;  /* h1..h6 e títulos */
}
body { color: var(--gray-text) !important; }
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 { color: var(--gray-title) !important; }

.post--title a,
.widget--title,
.header--nav-links > li > a,
.banner--content .title a,
.related--posts .post--title a { color: var(--gray-title) !important; }

.text-default { color: var(--gray-text) !important; }

/* metas/legendas levemente mais claras */
.post--meta,
.newsletter--widget p,
.posts--widget .date { color: #6b6b6b !important; }


/* Aumentar e centralizar apenas a imagem principal do artigo */
.post--single > img {
    max-width: 80%;
    width: 80%;
    display: block;
    margin: 0 auto 30px;
    border-radius: 10px;
}


/* Aumentar fonte do conteúdo dos artigos */
.post--single p,
.post--single li {
    font-size: 20px !important;
    line-height: 32px !important;
}

/* Aumentar o título dentro do artigo */
.post--single h2,
.post--single h3 {
    font-size: 32px !important;
    line-height: 42px !important;
}

