/*
Theme Name: Epitáfios a Parte
Theme URI: https://epitafiosaparte.com
Author: Pedro H.C. de Sousa
Author URI: https://epitafiosaparte.com
Description: Tema personalizado para o Epitáfios a Parte — blog literário com identidade editorial, tipografia serifada e toggle claro/escuro.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: epitafios
Tags: blog, dark, light, serif, editorial, toggle
*/

/* ══════════════════════════════════════════
   TOKENS — DARK (padrão)
══════════════════════════════════════════ */
:root,
[data-theme="dark"] {
  --bg:          #0e0d0b;
  --bg-card:     #141310;
  --bg-hover:    #1a1916;
  --ink:         #e8e0d0;
  --ink-muted:   #8a8070;
  --ink-faint:   #3a3830;
  --gold:        #b89a5a;
  --gold-pale:   #d4b87a;
  --border:      #2a2820;
  --shadow:      rgba(0,0,0,0.4);
  --toggle-bg:   #2a2820;
  --toggle-knob: #b89a5a;
}

/* ══════════════════════════════════════════
   TOKENS — LIGHT
══════════════════════════════════════════ */
[data-theme="light"] {
  --bg:          #f5f0e8;
  --bg-card:     #ede8de;
  --bg-hover:    #e8e2d6;
  --ink:         #1e1c18;
  --ink-muted:   #6a6055;
  --ink-faint:   #c8c0b0;
  --gold:        #8a6a2a;
  --gold-pale:   #a07c3a;
  --border:      #d8d0c0;
  --shadow:      rgba(0,0,0,0.08);
  --toggle-bg:   #d8d0c0;
  --toggle-knob: #8a6a2a;
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

[data-theme="dark"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.3;
}

[data-theme="light"] body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 52px;
  border-bottom: 1px solid var(--border);
  font-family: 'Inconsolata', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
  transition: border-color 0.35s, color 0.35s;
  position: relative;
  z-index: 100;
  background: var(--bg);
}

.topbar-date { opacity: 0.6; }
.topbar-nav { display: flex; align-items: center; gap: 2rem; }
.topbar-nav a { color: var(--ink-muted); transition: color 0.2s; }
.topbar-nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   TOGGLE
══════════════════════════════════════════ */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.theme-toggle:hover { color: var(--gold); }

.toggle-track {
  width: 36px;
  height: 18px;
  background: var(--toggle-bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--toggle-knob);
  transition: left 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
[data-theme="light"] .toggle-knob { left: 20px; }

/* ══════════════════════════════════════════
   MASTHEAD
══════════════════════════════════════════ */
.masthead {
  position: relative;
  text-align: center;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.35s;
}

.masthead-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28vw;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,154,90,0.07);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
[data-theme="light"] .masthead-bg {
  -webkit-text-stroke: 1px rgba(138,106,42,0.06);
}

.site-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
  position: relative;
  transition: color 0.35s;
}
.site-title a { color: inherit; }
.site-title em { font-style: italic; color: var(--gold); transition: color 0.35s; }

.site-tagline {
  margin-top: 1.2rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  transition: color 0.35s;
}

.masthead-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}
.masthead-rule::before { content: ''; flex: 1; max-width: 100px; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.masthead-rule::after  { content: ''; flex: 1; max-width: 100px; height: 1px; background: linear-gradient(to left,  transparent, var(--gold)); }
.masthead-ornament { color: var(--gold); font-size: 0.9rem; opacity: 0.7; }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.site-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
}

.main-col {
  border-right: 1px solid var(--border);
  padding-right: 3rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  transition: border-color 0.35s;
}

.sidebar {
  padding-left: 2.5rem;
  padding-top: 3rem;
}

/* ══════════════════════════════════════════
   SECTION LABEL
══════════════════════════════════════════ */
.section-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.35s;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  transition: background 0.35s;
}

/* ══════════════════════════════════════════
   POST DESTACADO
══════════════════════════════════════════ */
.post-featured {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.55s ease both 0.1s;
  transition: border-color 0.35s;
}

.post-featured .post-thumbnail {
  width: 100%;
  aspect-ratio: 16/7;
  border: 1px solid var(--border);
  margin-bottom: 1.8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s;
}
.post-featured .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-featured .post-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%);
  transition: background 0.35s;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
  transition: color 0.35s;
}

.post-category-label {
  color: var(--gold);
  border: 1px solid rgba(184,154,90,0.35);
  padding: 0.15em 0.55em;
  transition: color 0.35s, border-color 0.35s;
}
[data-theme="light"] .post-category-label { border-color: rgba(138,106,42,0.3); }
.sep { opacity: 0.35; }

.post-featured .entry-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
  transition: color 0.35s;
}
.post-featured .entry-title a { color: inherit; }
.post-featured .entry-title a:hover { color: var(--gold-pale); }

.post-excerpt {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
  transition: color 0.35s;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s, color 0.35s;
}
.read-more:hover { gap: 1rem; }
.read-more::after { content: '→'; }

/* ══════════════════════════════════════════
   LISTA DE POSTS
══════════════════════════════════════════ */
.post-list { display: flex; flex-direction: column; }

.post-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.35s;
  animation: fadeUp 0.5s ease both;
}
.post-item:nth-child(1) { animation-delay: 0.15s; }
.post-item:nth-child(2) { animation-delay: 0.22s; }
.post-item:nth-child(3) { animation-delay: 0.29s; }
.post-item:nth-child(4) { animation-delay: 0.36s; }
.post-item:nth-child(n+5) { animation-delay: 0.43s; }

.post-item:hover .post-item-title { color: var(--gold-pale); }

.post-item-thumb {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.35s;
}
.post-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-item-no-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.25;
  width: 82px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: border-color 0.35s, opacity 0.2s;
}
[data-theme="dark"]  .post-item-no-thumb { background: linear-gradient(135deg, #1e1c18, #252320); }
[data-theme="light"] .post-item-no-thumb { background: linear-gradient(135deg, #e0d8cc, #d8cfc3); }
.post-item:hover .post-item-no-thumb { opacity: 0.45; }

.post-item-body { display: flex; flex-direction: column; justify-content: center; }

.post-item-meta {
  font-family: 'Inconsolata', monospace;
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
  transition: color 0.35s;
}
.post-item-cat { color: var(--gold); margin-right: 0.4rem; transition: color 0.35s; }

.post-item-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s;
  margin-bottom: 0.35rem;
}
.post-item-title a { color: inherit; }

.post-item-desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.35s;
}

/* ══════════════════════════════════════════
   POST SINGULAR (single.php)
══════════════════════════════════════════ */
.single-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
}

.article-col {
  border-right: 1px solid var(--border);
  padding-right: 3rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  transition: border-color 0.35s;
}

.article-header-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
}

.article-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.5rem;
  transition: color 0.35s;
}

.article-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
  transition: color 0.35s;
}

.article-rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.5;
}
.article-rule::before,
.article-rule::after {
  content: '';
  height: 1px;
  background: var(--border);
  flex: 1;
  transition: background 0.35s;
}

.entry-content {
  max-width: 680px;
}

.entry-content p {
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 1.4rem;
  transition: color 0.35s;
}

.entry-content p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.8rem;
  font-weight: 300;
  float: left;
  line-height: 0.75;
  margin-right: 0.1em;
  margin-top: 0.15em;
  color: var(--gold);
  transition: color 0.35s;
}

.entry-content h2,
.entry-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  margin: 2rem 0 1rem;
  transition: color 0.35s;
}

.entry-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1.4rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-muted);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
  transition: color 0.35s, border-color 0.35s;
}

.entry-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184,154,90,0.3);
  transition: border-color 0.2s;
}
.entry-content a:hover { border-color: var(--gold); }

.entry-content img {
  width: 100%;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

/* Post navigation */
.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: 'Inconsolata', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  gap: 2rem;
  transition: border-color 0.35s;
}
.post-nav a { color: var(--gold); transition: color 0.2s; }
.post-nav a:hover { color: var(--gold-pale); }

/* Comments */
.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.comments-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.comment-form input,
.comment-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.6rem 0.8rem;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.82rem;
  width: 100%;
  margin-bottom: 0.8rem;
  transition: border-color 0.2s, background 0.35s, color 0.35s;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.comment-form .submit {
  font-family: 'Inconsolata', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: 1px solid rgba(184,154,90,0.4);
  padding: 0.5em 1.2em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  width: auto;
}
.comment-form .submit:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.sidebar-block { margin-bottom: 2.8rem; }
.sidebar-block .section-label { margin-bottom: 1.2rem; }

.about-text {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 0.9rem;
  transition: color 0.35s;
}
.about-sig {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  transition: color 0.35s;
}

.sidebar-quote {
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1.1rem;
  transition: border-color 0.35s;
}
.sidebar-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.6;
  transition: color 0.35s;
}
.sidebar-quote cite {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.6rem;
  font-style: normal;
  transition: color 0.35s;
}

/* Widget padrão WordPress */
.widget { margin-bottom: 2.8rem; }
.widget-title {
  font-family: 'Inconsolata', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.widget-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.widget ul { list-style: none; }
.widget ul li {
  font-family: 'Inconsolata', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.widget ul li a { color: var(--ink-muted); transition: color 0.2s; }
.widget ul li a:hover { color: var(--gold); }

/* Tag cloud */
.tag-cloud-link {
  font-family: 'Inconsolata', monospace;
  font-size: 0.58rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted) !important;
  border: 1px solid var(--border);
  padding: 0.2em 0.55em;
  display: inline-block;
  margin: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.tag-cloud-link:hover { color: var(--gold) !important; border-color: var(--gold); }

/* Social links */
.social-links { display: flex; flex-direction: column; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.35s;
}
.social-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4rem;
  transition: border-color 0.35s, color 0.35s;
}
.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: none;
  transition: color 0.35s;
}

/* ══════════════════════════════════════════
   PAGINAÇÃO
══════════════════════════════════════════ */
.pagination {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.pagination a,
.pagination span {
  border: 1px solid var(--border);
  padding: 0.3em 0.7em;
  color: var(--ink-muted);
  transition: color 0.2s, border-color 0.2s;
}
.pagination a:hover { color: var(--gold); border-color: var(--gold); }
.pagination .current { color: var(--gold); border-color: rgba(184,154,90,0.4); }

/* ══════════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-wrap,
  .single-wrap { grid-template-columns: 1fr; }
  .main-col,
  .article-col { border-right: none; padding-right: 0; }
  .sidebar { padding-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; }
}

@media (max-width: 600px) {
  .topbar { padding: 0 1.2rem; }
  .topbar-date { display: none; }
  .topbar-nav { gap: 1rem; }
  .site-wrap,
  .single-wrap { padding: 0 1.2rem; }
  .site-footer { flex-direction: column; gap: 0.7rem; text-align: center; padding: 1.8rem 1.2rem; }
  .toggle-label { display: none; }
}
/* =============================== */
/* EPITÁFIOS ESSENCIAIS */
/* =============================== */

.epitafios-essenciais {

margin-top: 140px;

padding-top: 60px;

border-top: 1px solid rgba(0,0,0,0.08);

}


.essenciais-wrapper {

max-width: 920px;

margin: auto;

}


/* LABEL */

.essenciais-label {

font-family: 'Inconsolata', monospace;

font-size: 12px;

letter-spacing: 2px;

text-transform: uppercase;

opacity: 0.5;

}


/* TÍTULO PRINCIPAL */

.essenciais-titulo {

font-family: 'Cormorant Garamond', serif;

font-size: 42px;

font-weight: 400;

margin-top: 10px;

margin-bottom: 10px;

}


/* SUBTÍTULO */

.essenciais-subtitulo {

font-family: 'Libre Baskerville', serif;

font-size: 16px;

opacity: 0.6;

margin-bottom: 50px;

max-width: 520px;

}


/* GRID */

.essenciais-grid {

display: grid;

grid-template-columns: 1fr;

gap: 45px;

}


/* CARD */

.essencial-card {

border-left: 1px solid rgba(0,0,0,0.1);

padding-left: 25px;

transition: all 0.4s ease;

}


.essencial-card:hover {

border-left: 1px solid rgba(0,0,0,0.4);

transform: translateX(6px);

}


/* DATA */

.essencial-meta {

font-family: 'Inconsolata', monospace;

font-size: 12px;

opacity: 0.4;

}


/* TÍTULO DO POST */

.essencial-titulo {

font-family: 'Cormorant Garamond', serif;

font-size: 28px;

font-weight: 400;

margin-top: 5px;

margin-bottom: 10px;

}


/* TEXTO */

.essencial-excerto {

font-family: 'Libre Baskerville', serif;

font-size: 15px;

line-height: 1.7;

opacity: 0.75;

max-width: 500px;

}
