/* ============================================================
   CAFÉ 420 — Inner Page Content Stylization
   Target: Sugar & Spice theme / WordPress inner pages
   Scope: .entry-content, h1.entry-title, sidebar, footer
   ============================================================ */

/* ── TYPOGRAPHY BASE ─────────────────────────────────────── */
#primary .entry-content {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;          /* ~16px */
  line-height: 1.8;
  color: #2a2a2a;
  max-width: 680px;
}

/* ── PAGE TITLE ──────────────────────────────────────────── */
h1.entry-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #f66b40;
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* ── ENTRY CONTENT PARAGRAPHS ────────────────────────────── */
#primary .entry-content p {
  margin-top: 0;
  margin-bottom: 1.4em;
  hyphens: auto;
}

/* remove the blank &nbsp; spacer paragraphs visually */
#primary .entry-content p:empty,
#primary .entry-content p:-moz-only-whitespace {
  display: none;
}

/* ── HERO IMAGE ───────────────────────────────────────────── */
#primary .entry-content img.aligncenter {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ── HEADINGS INSIDE CONTENT (h2, h3) ────────────────────── */
#primary .entry-content h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-left: 4px solid #f66b40;
  padding-left: 0.75rem;
}

#primary .entry-content h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* ── STRONG / EMPHASIS ───────────────────────────────────── */
#primary .entry-content strong {
  color: #1a1a1a;
  font-weight: 700;
}

#primary .entry-content em {
  font-style: italic;
  color: #444;
}

/* ── LINKS IN CONTENT ────────────────────────────────────── */
#primary .entry-content a {
  color: #f66b40;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

#primary .entry-content a:hover {
  color: rgba(246, 107, 64, 0.75);
}

/* ── BLOCKQUOTE ──────────────────────────────────────────── */
#primary .entry-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #f66b40;
  background: rgba(246, 107, 64, 0.06);
  font-style: italic;
  color: #444;
  border-radius: 0 4px 4px 0;
}

/* ── LISTS ───────────────────────────────────────────────── */
#primary .entry-content ul,
#primary .entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

#primary .entry-content li {
  margin-bottom: 0.4em;
  line-height: 1.7;
}

/* ── SIDEBAR WIDGETS ─────────────────────────────────────── */
#sidebar.widget-area {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #333;
}

#sidebar .widget {
  margin-bottom: 2rem;
}

h3.widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #f66b40;
}

h3.widget-title em {
  font-style: normal;
  color: #f66b40;
}

/* ── RECENT POSTS WIDGET ─────────────────────────────────── */
.widget_recent_entries ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_recent_entries ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
  line-height: 1.4;
}

.widget_recent_entries ul li:last-child {
  border-bottom: none;
}

.widget_recent_entries ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.widget_recent_entries ul li a:hover {
  color: #f66b40;
}

/* ── TEXT WIDGET ─────────────────────────────────────────── */
.widget_text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer#footer.site-footer {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  color: #777;
  padding-top: 1rem;
}

footer#footer a {
  color: #f66b40;
  text-decoration: none;
}

footer#footer a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE – narrow screens ────────────────────────── */
@media (max-width: 768px) {
  h1.entry-title {
    font-size: 1.5rem;
  }

  #primary .entry-content {
    font-size: 0.95rem;
  }

  #primary .entry-content img.aligncenter {
    border-radius: 0;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    max-width: none;
  }
}
