/*
Theme Name: EcoSystemLite
Theme URI: https://example.com/ecosystemlite
Author: Diogo
Author URI: https://example.com
Description: EcoSystemLite é um tema WordPress minimalista criado do zero para priorizar leitura, SEO e performance. Ele utiliza o framework CSS Bootstrap&nbsp;5 via CDN para a grade e componentes e apresenta uma estrutura de coluna única com largura máxima de 720&nbsp;px. O tema inclui tipografia clara com Google Fonts (Inter e Lora) e implementa boas práticas de SEO como meta‑tags dinâmicas, links canônicos e dados estruturados em JSON‑LD para artigos e breadcrumbs.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecosystemlite
*/

/* Base styles for EcoSystemLite.  
 * As Bootstrap 5 is loaded via CDN in functions.php, this stylesheet only
 * contains theme‑specific adjustments.  
 * The primary container is constrained to 720&nbsp;px and centered.  */

body {
  font-family: 'Inter', 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
}

/* Constrain content to a single column */
.ecosystemlite-container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header styles */
header.site-header {
  margin-bottom: 2rem;
}

header.site-header .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Featured image on single posts */
.post-featured-image {
  margin-bottom: 1.5rem;
}

/* Footer styles */
footer.site-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.875rem;
  text-align: center;
  color: #6c757d;
}

/* Pagination */
.pagination {
  margin-top: 2rem;
}

.pagination .page-link {
  color: #212529;
}

.pagination .page-item.active .page-link {
  background-color: #212529;
  border-color: #212529;
}