/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 12 2025 | 18:41:14 */
/* ==============================
   FYC Typography
   ============================== */

/* ------------------------------
   :root / Global font settings
------------------------------ */
:root {
  font-size: 18px;  /* sets 1rem = 18px */

  /* WordPress presets */
  --wp--preset--font-size--small: 0.9rem;
  --wp--preset--font-size--medium: 1.05rem;
  --wp--preset--font-size--large: 1.25rem;
  --wp--preset--font-size--x-large: 1.5rem;

  /* Site-wide gap for spacing (typography) */
  --post-template-gap: 1rem;

  /* Font families */
  --fyc-font-serif: 'Lora', serif;
  --fyc-font-sans: 'Source Sans Pro', sans-serif; /* approximate */
}

/* ------------------------------
   Headings
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fyc-font-serif);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h2.has-medium-font-size {
  font-size: 1.55rem !important; /* overrides WP medium */
}

h6.substack-title,
h6.mailpoet-title {
  font-size: 1.25rem;
  line-height: 1.2;
}

/* ------------------------------
   Body / Paragraphs
------------------------------ */
body,
p,
span,
li {
  font-family: var(--fyc-font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

/* ------------------------------
   Captions / Small Text
------------------------------ */
.wp-element-caption {
  font-size: 0.8125rem; /* ~13px */
}

/* ------------------------------
   Podcast Page Typography (.blog)
------------------------------ */
.blog .entry-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.blog .entry-content {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ------------------------------
   Front Page Testimonials (.front-page)
------------------------------ */
.front-page .wp-block-testimonial {
  font-family: var(--fyc-font-sans);
  font-size: 1rem;
  line-height: 1.5;
}

.front-page .wp-block-testimonial .testimonial-author {
  font-weight: bold;
  font-size: 1.1rem;
}

/* ------------------------------
   Lists / Tables
------------------------------ */
ul,
ol {
  font-family: var(--fyc-font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

table,
th,
td {
  font-family: var(--fyc-font-sans);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ------------------------------
   Forms / Buttons
------------------------------ */
button,
input,
select,
textarea {
  font-family: var(--fyc-font-sans);
  font-size: 1rem;
  line-height: 1.4;
}

/* ------------------------------
   Block Editor / Gutenberg
------------------------------ */
.wp-block {
  font-family: var(--fyc-font-sans);
  font-size: inherit;
  line-height: inherit;
}

/* ==============================
   End of FYC Typography
   ============================== */