/*
Theme Name: TuGuardiaFinanciero
Theme URI: https://tuguardiafinanciero.com
Author: TuGuardiaFinanciero
Author URI: https://tuguardiafinanciero.com
Description: Tema moderno y minimalista para blog de finanzas personales en español. Incluye secciones de ahorro, inversión, deudas, impuestos, activos y más.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuguardiafinanciero
Tags: blog, finance, minimal, clean, responsive
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #111111;
  --ink-muted: #6b6b6b;
  --ink-light: #a0a0a0;
  --accent: #1a6b4a;
  --accent-hover: #135537;
  --accent-light: #e8f4ef;
  --accent2: #c8a84b;
  --border: #e2e0d8;
  --radius: 4px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1100px;
  --content-width: 780px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}

p { margin-bottom: 1.25rem; color: var(--ink-muted); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--ink-muted); }
li { margin-bottom: 0.4rem; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-muted);
}

strong { color: var(--ink); font-weight: 500; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
th {
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
  font-family: var(--font-body);
}
td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-muted);
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 4rem 0; }
.section-sm { padding: 2rem 0; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,242,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }

#primary-menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  padding: 0;
  margin: 0;
}

#primary-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s;
}
#primary-menu a:hover,
#primary-menu .current-menu-item > a { color: var(--accent); }

.header-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent) !important; color: #fff !important; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
}

/* ============================================================
   HERO (front page)
   ============================================================ */
.hero {
  padding: 5rem 0 4rem;
  background: var(--bg);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--accent); font-style: italic; }

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--ink-muted);
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--ink-muted); color: var(--ink); }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.stat-card:nth-child(2) { margin-top: 24px; }
.stat-card:nth-child(4) {
  background: var(--accent);
  margin-top: -24px;
}
.stat-card:nth-child(4) .stat-label,
.stat-card:nth-child(4) .stat-sub { color: rgba(255,255,255,0.7); }
.stat-card:nth-child(4) .stat-value { color: #fff; }

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.stat-sub {
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-top: 4px;
  font-family: var(--font-body);
}

/* ============================================================
   TOPIC STRIP
   ============================================================ */
.topic-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0;
  overflow-x: auto;
}

.topic-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
}

.topic-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 400;
  transition: color 0.2s;
}
.topic-strip-item:hover { color: var(--accent); }
.topic-strip-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   AD PLACEHOLDER
   ============================================================ */
.ad-zone {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.ad-zone-leaderboard { height: 90px; }
.ad-zone-rectangle { height: 250px; }
.ad-zone-inline { height: 90px; margin: 2rem 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}

/* ============================================================
   FEATURED ARTICLE
   ============================================================ */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-visual {
  background: linear-gradient(135deg, #1a6b4a 0%, #0d3d2a 100%);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.featured-visual::before {
  content: '€';
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.featured-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.featured-visual h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.2;
}

.featured-content {
  background: var(--surface);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content p { font-size: 0.95rem; line-height: 1.7; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  flex-wrap: wrap;
}
.meta-dot { color: var(--border); }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 1rem;
  transition: gap 0.2s;
  font-family: var(--font-body);
}
.read-more::after { content: '→'; }
.read-more:hover { gap: 10px; color: var(--accent); }

/* ============================================================
   ARTICLE GRID
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-card {
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s;
}
.article-card:hover { background: #fafaf8; }

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--font-body);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}
.card-excerpt {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-time {
  font-size: 0.72rem;
  color: var(--ink-light);
  font-family: var(--font-body);
}
.card-arrow {
  font-size: 0.875rem;
  color: var(--ink-light);
  transition: color 0.2s, transform 0.2s;
}
.article-card:hover .card-arrow { color: var(--accent); transform: translateX(4px); }

/* ============================================================
   TOPICS GRID
   ============================================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.topic-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.topic-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.topic-icon { font-size: 1.5rem; margin-bottom: 0.6rem; display: block; }
.topic-name { font-weight: 500; font-size: 0.9rem; color: var(--ink); margin-bottom: 3px; font-family: var(--font-body); }
.topic-count { font-size: 0.72rem; color: var(--ink-light); font-family: var(--font-body); }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 0 2rem;
  max-width: calc(var(--max-width) - 4rem);
  margin-left: auto;
  margin-right: auto;
}

.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.newsletter-section p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 300; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 16px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--accent2); }

.newsletter-form button,
.newsletter-form input[type="submit"] {
  background: var(--accent2);
  color: var(--ink);
  border: none;
  padding: 12px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.newsletter-form button:hover,
.newsletter-form input[type="submit"]:hover { background: #d4b55a; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.sidebar { display: flex; flex-direction: column; gap: 2rem; }

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.widget-list { list-style: none; padding: 0; }
.widget-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.widget-list li:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list a { color: var(--ink-muted); transition: color 0.2s; }
.widget-list a:hover { color: var(--accent); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 2px;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.tag-cloud a:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }

/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */
.post-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.post-header .card-tag { margin-bottom: 0.75rem; display: block; }
.post-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.post-header .article-meta { margin-bottom: 0; }

.post-content { font-size: 1rem; line-height: 1.8; }
.post-content h2 { font-size: 1.6rem; margin: 2rem 0 0.75rem; }
.post-content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.6rem; }
.post-content p { color: var(--ink-muted); }
.post-content a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-light); }
.post-content a:hover { text-decoration-color: var(--accent); }

.post-content .highlight-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content .highlight-box p { color: var(--ink); margin-bottom: 0; }

.post-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.post-tags span { font-size: 0.8rem; color: var(--ink-light); font-family: var(--font-body); }

/* ============================================================
   ARCHIVE / CATEGORY
   ============================================================ */
.archive-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.archive-header h1 { font-size: 2.5rem; }
.archive-header p { font-size: 1rem; margin-top: 0.5rem; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2rem 0;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--ink-muted);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--surface);
  outline: none;
  color: var(--ink);
}
.search-form input[type="search"]:focus { border-color: var(--accent); }
.search-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.search-form button:hover { background: var(--accent-hover); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.footer-brand span { color: var(--accent); }

.footer-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-menu a {
  font-size: 0.875rem;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.footer-menu a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--ink-light);
  font-family: var(--font-body);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--ink-light);
  font-family: var(--font-body);
  padding: 1rem 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--ink-light); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--border); }
.breadcrumbs .current { color: var(--ink-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { display: none; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-visual { min-height: 200px; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-section { grid-template-columns: 1fr; padding: 2rem; margin: 0 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .archive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 1rem; }
  #primary-menu { display: none; }
  #primary-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 1rem;
    z-index: 99;
  }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .container, .container-narrow { padding: 0 1rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2rem; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image { margin: 1.5rem 0; }
.wp-caption { font-size: 0.8rem; color: var(--ink-light); text-align: center; margin-top: 6px; }
.aligncenter { margin: 0 auto; display: block; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }

.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.sticky { /* WP sticky post */ }
.bypostauthor { /* WP author highlight */ }
