/*
Theme Name: ED - Empreenda com Deus
Theme URI: https://example.com
Author: ZizoLino
Author URI: https://example.com
Description: Tema WordPress personalizado do zero para o projeto "ED - Empreenda com Deus".
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ed-empreenda-com-deus
Tags: custom, blog, one-column, two-columns, accessibility-ready

A capa do tema no WordPress é o arquivo screenshot.png na raiz do tema.
*/

/* ===== Reset leve (sem agressividade) ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: #101014;
  background: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 0.15em; }
a:hover { text-decoration-thickness: 2px; }

/* ===== Layout ===== */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header {
  padding: 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__desc {
  font-size: 14px;
  opacity: 0.75;
}

.site-main {
  flex: 1;
  padding: 28px 16px;
}
.entry {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.entry:last-child { border-bottom: none; }
.entry__title {
  margin: 0 0 6px 0;
  font-size: 24px;
  line-height: 1.2;
}
.entry__meta {
  font-size: 13px;
  opacity: 0.75;
}

.site-footer {
  padding: 18px 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  opacity: 0.8;
}

/* ===== Acessibilidade básica ===== */
:focus-visible {
  outline: 3px solid #f1c40f;
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #101014;
  color: #fff;
  display: inline-block;
}
