/*
Theme Name: Review Cinco Estrelas
Theme URI: https://reviewcincoestrelas.com.br
Author: Maciel Medrado
Author URI: https://reviewcincoestrelas.com.br
Description: Tema mobile-first especializado em reviews de produtos. Inclui Schema Markup, layout de prós e contras, avaliações em estrelas e design otimizado para conversão em afiliados.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
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: review-cinco-estrelas
Tags: blog, reviews, affiliate, mobile-first, responsive
*/

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

:root {
  --primary:    #0f172a;
  --accent:     #f59e0b;
  --accent-dark:#d97706;
  --text:       #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --surface:    #ffffff;
  --bg:         #f8fafc;
  --border:     #e2e8f0;
  --success:    #16a34a;
  --danger:     #dc2626;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --max-w:      720px;
  --max-w-wide: 1140px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5,h6 {
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: .5em;
}
h1 { font-size: clamp(1.5rem, 5vw, 2.25rem); }
h2 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.35rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
.entry-content p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 16px;
}
.container--narrow { max-width: var(--max-w); }

.site-main { padding: 24px 0 48px; }

/* =============================================
   HEADER & NAV
   ============================================= */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo img { height: 36px; width: auto; }
.site-logo span {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  display: none;
}
@media (min-width: 480px) { .site-logo span { display: block; } }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile nav */
.site-nav {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--primary);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-nav.is-open { max-height: 600px; }

.site-nav ul { padding: 8px 0; }
.site-nav ul li a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .2s, border-color .2s;
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item a {
  background: rgba(255,255,255,.08);
  border-left-color: var(--accent);
  color: #fff;
}

/* Desktop nav */
@media (min-width: 900px) {
  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    flex-wrap: wrap;
  }
  .site-nav ul li a {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border-left: none;
    font-size: .875rem;
    white-space: nowrap;
  }
  .site-nav ul li a:hover,
  .site-nav ul li.current-menu-item a {
    background: rgba(255,255,255,.12);
    border-left: none;
  }
}

/* Search bar header */
.header-search { display: none; }
@media (min-width: 900px) {
  .header-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border-radius: 30px;
    padding: 6px 14px;
    gap: 8px;
  }
  .header-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: .875rem;
    width: 160px;
  }
  .header-search input::placeholder { color: rgba(255,255,255,.5); }
  .header-search button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.7);
    padding: 0;
    line-height: 1;
  }
}

/* =============================================
   HERO (home)
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  padding: 40px 0 48px;
  text-align: center;
}
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto 1.5rem; }
.hero-search {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 1rem;
  color: var(--text);
}
.hero-search button {
  padding: 12px 24px;
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .2s;
}
.hero-search button:hover { background: var(--accent-dark); }

/* =============================================
   CATEGORY PILLS (home)
   ============================================= */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 20px 0;
}
.cat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
  white-space: nowrap;
}
.cat-pill:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}
.cat-pill .cat-icon { font-size: 1rem; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.section-head h2 { margin-bottom: 0; font-size: 1.2rem; }
.section-head a {
  font-size: .875rem;
  color: var(--accent-dark);
  font-weight: 600;
  white-space: nowrap;
}

/* =============================================
   POST CARDS GRID
   ============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-card__cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent-dark);
}
.post-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin: 0;
}
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--accent-dark); }
.post-card__meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 8px;
}

/* Featured card (full width) */
.post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.post-card--featured .post-card__thumb {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.post-card--featured .post-card__title { font-size: 1.2rem; }
@media (max-width: 599px) {
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__thumb { width: 100%; aspect-ratio: 16/9; }
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-header {
  background: var(--primary);
  padding: 32px 0 24px;
  color: #fff;
}
.single-header .breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.single-header .breadcrumb a { color: rgba(255,255,255,.7); }
.single-header .breadcrumb a:hover { color: #fff; }
.single-header h1 { color: #fff; margin-bottom: .75rem; }
.single-header .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  align-items: center;
}
.single-header .post-meta .author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--primary);
  flex-shrink: 0;
}
.single-header .post-meta .meta-divider { opacity: .3; }

/* Affiliate disclosure */
.affiliate-disclosure {
  background: #fff8e1;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 16px;
  font-size: .875rem;
  color: #78350f;
  margin: 20px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.affiliate-disclosure::before {
  content: "⚠";
  flex-shrink: 0;
  font-size: 1rem;
}

/* Entry content */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.entry-content h2 {
  margin-top: 2rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.entry-content h3 { margin-top: 1.5rem; }
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .4rem; }
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
  overflow-x: auto;
  display: block;
}
.entry-content table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.entry-content table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
}
.entry-content table tr:nth-child(even) td { background: var(--bg); }

/* =============================================
   REVIEW BOX
   ============================================= */
.review-box {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.review-box__header {
  background: var(--primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.review-box__header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
}
.review-score {
  background: var(--accent);
  color: var(--primary);
  font-weight: 900;
  font-size: 1.3rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.review-box__body { padding: 20px; }

.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.stars { color: var(--accent); font-size: 1.4rem; letter-spacing: 2px; }
.stars-label { font-size: .9rem; color: var(--text-muted); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 1rem 0;
}
@media (min-width: 600px) { .pros-cons { grid-template-columns: 1fr 1fr; } }

.pros, .cons {
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff5f5; border: 1px solid #fecaca; }

.pros h4 { color: var(--success); font-size: .95rem; margin-bottom: .6rem; }
.cons h4 { color: var(--danger); font-size: .95rem; margin-bottom: .6rem; }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros ul li, .cons ul li {
  font-size: .9rem;
  padding: 4px 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}
.pros ul li::before { content: "✓"; color: var(--success); position: absolute; left: 0; font-weight: 700; }
.cons ul li::before { content: "✗"; color: var(--danger); position: absolute; left: 0; font-weight: 700; }

.buy-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}
.buy-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  color: #fff;
}
.buy-btn-sm {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background .2s;
}
.buy-btn-sm:hover { background: var(--accent-dark); color: #fff; }

/* Specs table inside review */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 1rem 0;
}
.specs-table tr:nth-child(odd) td:first-child { background: var(--bg); }
.specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  width: 40%;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare-wrap { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 480px;
}
.compare-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 600;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-table tr.highlight td {
  background: #fff8e1;
  font-weight: 700;
}
.compare-table .best-badge {
  background: var(--accent);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
}

/* =============================================
   AUTHOR BIO
   ============================================= */
.author-bio {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 2.5rem 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.author-bio__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
}
.author-bio__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-bio__info { flex: 1; }
.author-bio__name { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.author-bio__role { font-size: .8rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 8px; }
.author-bio__text { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =============================================
   RELATED POSTS
   ============================================= */
.related-posts { margin: 2rem 0; }
.related-posts h3 { margin-bottom: 1rem; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================
   SIDEBAR
   ============================================= */
.content-sidebar-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.content-area { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }
@media (max-width: 960px) {
  .content-sidebar-wrap { flex-direction: column; }
  .sidebar { width: 100%; }
}

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 20px;
}
.widget h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-right: 12px;
}
.widget ul { display: flex; flex-direction: column; gap: 8px; }
.widget ul li a {
  font-size: .9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.widget ul li a:hover { color: var(--accent-dark); }
.widget ul li a::before { content: "›"; color: var(--accent); font-weight: 700; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination span.current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 40px 0 0;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col h4 {
  color: #fff;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col p {
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 32px; width: auto; }
.footer-logo span { color: #fff; font-weight: 700; font-size: .95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); font-size: .8rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================
   SEARCH PAGE
   ============================================= */
.search-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.search-form-wrap form {
  display: flex;
  gap: 10px;
}
.search-form-wrap input[type="search"] {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.search-form-wrap input[type="search"]:focus { border-color: var(--accent); }
.search-form-wrap button {
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.section-spacer { margin-bottom: 40px; }

/* =============================================
   MOBILE TWEAKS
   ============================================= */
@media (max-width: 480px) {
  .hero { padding: 28px 0 36px; }
  .site-main { padding: 16px 0 32px; }
  .review-box__body { padding: 14px; }
  .author-bio { flex-direction: column; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .site-nav, .site-footer, .sidebar { display: none; }
  .entry-content { font-size: 12pt; }
}
