/*
Theme Name: Kadence Child - Clara Makes
Theme URI: https://claramakes.com/
Description: Editorial Craft Theme for Clara Makes. Inspired by Sarah Maker architecture & Daisy Cottage Designs color palette.
Author: Clara Makes
Author URI: https://claramakes.com/
Template: kadence
Version: 2.0.0
*/

/* ==========================================================================
   1. COLOR SYSTEM & GLOBAL TYPOGRAPHY
   ========================================================================== */
:root {
  --cm-coral: #FE6767;
  --cm-coral-hover: #E85353;
  --cm-mint: #9DC9CB;
  --cm-mint-hover: #8ABEC0;
  --cm-mint-dark: #2F6063;
  --cm-mint-tint: #F2F8F8;
  --cm-cream: #FFF5EF;
  --cm-cream-border: #F5DEC7;
  --cm-charcoal: #242424;
  --cm-body: #4A5568;
  --cm-muted: #718096;
  --cm-border: #EEEEEE;
  --cm-bg-soft: #FAFAFA;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--cm-charcoal);
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.site-title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  color: var(--cm-charcoal);
  letter-spacing: -0.01em;
}

/* Container */
.cm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   2. KADENCE SPACING RESETS & HEADER
   ========================================================================== */
.home #primary.content-area,
.home .entry-content,
.home .site-main,
.home .content-wrap,
.home .content-container,
.home .single-entry,
.home .entry-content-wrap {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Suppress Kadence default colophon/attribution */
#colophon.site-footer,
.site-bottom-footer-wrap {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Suppress redundant Kadence entry-hero on custom styled pages */
.page:has(.cm-legal-wrap) .entry-hero,
.page:has(.cm-page-wrap) .entry-hero,
.page:has(.cm-about-page-wrap) .entry-hero,
.page-id-3 .entry-hero,
.page-id-63 .entry-hero,
.page-id-64 .entry-hero,
.page-id-65 .entry-hero,
.page-id-66 .entry-hero {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.page:has(.cm-legal-wrap) .content-area,
.page:has(.cm-page-wrap) .content-area,
.page:has(.cm-about-page-wrap) .content-area,
.page-id-3 .content-area,
.page-id-63 .content-area,
.page-id-64 .content-area,
.page-id-65 .content-area,
.page-id-66 .content-area {
  padding-top: 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 2.5rem !important;
}

/* Logo & Header */
.site-branding .brand.has-logo-image .site-title-wrap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-branding .custom-logo {
  height: auto;
  max-height: 46px;
  width: auto;
  display: block;
}

.header-navigation[data-menu-style="standard"] .menu > li > a {
  font-weight: 600;
  font-size: 15px;
  color: var(--cm-charcoal);
  transition: color 0.2s ease;
}

.header-navigation[data-menu-style="standard"] .menu > li > a:hover {
  color: var(--cm-coral);
}

.header-navigation .sub-menu {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid var(--cm-border);
  padding: 8px 0;
  background: #FFFFFF;
}

.header-navigation .sub-menu li a {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  color: var(--cm-charcoal);
}

.header-navigation .sub-menu li a:hover {
  color: var(--cm-coral);
  background-color: var(--cm-cream);
}

/* ==========================================================================
   3. HOMEPAGE COMPONENTS (SARAH MAKER ARCHITECTURE)
   ========================================================================== */

/* Hero Section */
.cm-hero {
  padding: 35px 0 30px 0;
  text-align: center;
}
.cm-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--cm-charcoal);
  line-height: 1.25;
  margin: 0 0 12px 0;
}
.cm-hero-subtitle {
  font-size: 16px;
  color: var(--cm-body);
  max-width: 640px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* 4-Column Card Grid (Sarah Maker Replica) */
.cm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cm-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.cm-card-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  background: #F8F9FA;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cm-card:hover .cm-card-thumb {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cm-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cm-card:hover .cm-card-thumb img {
  transform: scale(1.04);
}

.cm-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cm-charcoal);
  margin: 12px 0 0 0;
  transition: color 0.2s ease;
}

.cm-card:hover .cm-card-title {
  color: var(--cm-coral);
}

/* Category Circles Section */
.cm-categories-section {
  padding: 30px 0;
  border-top: 1px solid var(--cm-border);
  border-bottom: 1px solid var(--cm-border);
  background: #FAFAFA;
}
.cm-categories-header {
  text-align: center;
  margin-bottom: 22px;
}
.cm-categories-header h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 0 0 4px 0;
}
.cm-categories-header p {
  font-size: 13.5px;
  color: var(--cm-muted);
  margin: 0;
}
.cm-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}
.cm-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.cm-cat-thumb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.cm-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cm-cat-item:hover .cm-cat-thumb {
  transform: translateY(-3px);
  border-color: var(--cm-coral);
}
.cm-cat-label {
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cm-charcoal);
  transition: color 0.2s ease;
}
.cm-cat-item:hover .cm-cat-label {
  color: var(--cm-coral);
}

/* General Post Grid Section */
.cm-section {
  padding: 40px 0 20px 0;
}
.cm-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}
.cm-section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 0 0 4px 0;
}
.cm-section-sub {
  font-size: 14px;
  color: var(--cm-muted);
  margin: 0;
}
.cm-section-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cm-coral);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cm-section-link:hover {
  color: var(--cm-coral-hover);
  text-decoration: underline;
}

/* Meet Clara Bio Box */
.cm-bio-wrap {
  padding: 35px 0;
}
.cm-bio-box {
  background: var(--cm-cream);
  border: 1px solid var(--cm-cream-border);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
}
.cm-bio-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.cm-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cm-bio-content h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 0 0 10px 0;
}
.cm-bio-content p {
  font-size: 15px;
  color: var(--cm-body);
  line-height: 1.65;
  margin: 0 0 16px 0;
}
.cm-bio-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: var(--cm-coral);
  color: #FFFFFF !important;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.cm-bio-btn:hover {
  background-color: var(--cm-coral-hover);
}

/* Newsletter Box */
.cm-newsletter-wrap {
  padding: 10px 0 45px 0;
}
.cm-newsletter-box {
  background: #FFFFFF;
  border: 1.5px solid var(--cm-border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.cm-newsletter-box h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 0 0 8px 0;
}
.cm-newsletter-box p {
  font-size: 15px;
  color: var(--cm-body);
  max-width: 520px;
  margin: 0 auto 22px auto;
  line-height: 1.6;
}
.cm-newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 10px;
}
.cm-newsletter-input {
  flex-grow: 1;
  padding: 12px 18px;
  border: 1.5px solid #E2E8F0;
  border-radius: 9999px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.cm-newsletter-input:focus {
  border-color: var(--cm-coral);
}
.cm-newsletter-submit {
  padding: 12px 24px;
  background-color: var(--cm-coral);
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.cm-newsletter-submit:hover {
  background-color: var(--cm-coral-hover);
}

/* ==========================================================================
   4. LEGAL & UTILITY PAGES
   ========================================================================== */
.cm-legal-wrap,
.cm-page-wrap,
.cm-about-page-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 20px 60px 20px;
  line-height: 1.7;
}

.cm-legal-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cm-border);
}
.cm-legal-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 0 0 8px 0;
}
.cm-legal-updated {
  font-size: 13.5px;
  color: var(--cm-muted);
}
.cm-legal-box {
  background: var(--cm-cream);
  border: 1px solid var(--cm-cream-border);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 25px 0;
}
.cm-legal-box-mint {
  background: var(--cm-mint-tint);
  border: 1px solid #D4EAEB;
}
.cm-legal-box h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.cm-legal-box ul {
  margin: 0;
  padding-left: 20px;
}
.cm-legal-box li {
  font-size: 14px;
  color: var(--cm-body);
  margin-bottom: 6px;
}
.cm-legal-content h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  margin: 32px 0 12px 0;
}
.cm-legal-content h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  margin: 20px 0 8px 0;
}
.cm-legal-content p, .cm-legal-content li {
  font-size: 15px;
  color: var(--cm-body);
}
.cm-legal-content ul, .cm-legal-content ol {
  margin-bottom: 18px;
  padding-left: 22px;
}
.cm-legal-content a {
  color: var(--cm-coral);
  text-decoration: underline;
}

/* Contact Page Specific */
.cm-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 40px 0;
}
.cm-contact-card {
  background: var(--cm-cream);
  border: 1px solid var(--cm-cream-border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.cm-contact-card-mint {
  background: var(--cm-mint-tint);
  border: 1px solid #D4EAEB;
}
.cm-contact-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.cm-contact-card p {
  font-size: 13.5px;
  color: var(--cm-muted);
  margin: 0 0 10px 0;
}
.cm-contact-card a {
  color: var(--cm-coral);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

/* About Page Hero */
.cm-about-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--cm-border);
}
.cm-about-img-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.cm-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   5. EDITORIAL FOOTER
   ========================================================================== */
.cm-editorial-footer {
  background-color: #FFFFFF;
  border-top: 1px solid var(--cm-border);
  padding: 35px 0 25px 0;
  margin-top: 30px;
}
.cm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cm-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 22px;
}
.cm-footer-logo-img {
  max-width: 175px;
  width: 175px;
  height: auto;
  display: block;
}
.cm-footer-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap;
}
.cm-footer-nav-list a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cm-body);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cm-footer-nav-list a:hover {
  color: var(--cm-coral);
}
.cm-footer-social-minimal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cm-footer-social-minimal a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cm-cream);
  border: 1px solid var(--cm-cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cm-charcoal);
  text-decoration: none;
  transition: all 0.2s ease;
}
.cm-footer-social-minimal a:hover {
  background: var(--cm-coral);
  color: #FFFFFF;
  border-color: var(--cm-coral);
}
.cm-footer-sep {
  height: 1px;
  background-color: var(--cm-border);
  width: 100%;
  margin: 0 0 16px 0;
}
.cm-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}
.cm-footer-copy {
  font-size: 12.5px;
  color: var(--cm-muted);
  white-space: nowrap;
}
.cm-footer-disclaimer-text {
  font-size: 12px;
  color: var(--cm-muted);
  text-align: right;
  white-space: nowrap;
}

/* ==========================================================================
   6. MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 900px) {
  .cm-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cm-container {
    padding: 0 16px;
  }
  .cm-hero {
    padding: 24px 0 20px 0;
  }
  .cm-hero-title {
    font-size: 26px;
  }
  .cm-hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cm-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cm-card-title {
    font-size: 14px;
    margin-top: 8px;
  }
  .cm-categories-section {
    padding: 22px 0;
  }
  .cm-cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
  }
  .cm-cat-thumb {
    width: 72px;
    height: 72px;
  }
  .cm-cat-label {
    font-size: 12px;
  }
  .cm-section {
    padding: 26px 0 15px 0;
  }
  .cm-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
  }
  .cm-section-title {
    font-size: 20px;
  }
  .cm-bio-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 18px;
    gap: 16px;
  }
  .cm-bio-avatar {
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }
  .cm-newsletter-box {
    padding: 26px 18px;
  }
  .cm-newsletter-box h2 {
    font-size: 22px;
  }
  .cm-newsletter-form {
    flex-direction: column;
    gap: 8px;
  }
  .cm-newsletter-input, .cm-newsletter-submit {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .cm-footer-main {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cm-footer-nav-list {
    justify-content: center;
    gap: 14px;
  }
  .cm-footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .cm-footer-disclaimer-text, .cm-footer-copy {
    white-space: normal;
    text-align: center;
  }
  .cm-about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .cm-about-img-wrap {
    max-width: 200px;
    margin: 0 auto;
  }
  .cm-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   7. EDITORIAL ARCHIVE / CATEGORY PAGES
   ========================================================================== */
.cm-archive-main {
  padding: 35px 0 60px 0;
  min-height: 60vh;
}
.cm-archive-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px auto;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cm-border);
}
.cm-archive-breadcrumbs {
  font-size: 13px;
  color: var(--cm-muted);
  margin-bottom: 12px;
}
.cm-archive-breadcrumbs a {
  color: var(--cm-muted);
  text-decoration: none;
}
.cm-archive-breadcrumbs a:hover {
  color: var(--cm-coral);
}
.cm-crumb-sep {
  margin: 0 6px;
  color: #CBD5E0;
}
.cm-crumb-current {
  color: var(--cm-charcoal);
  font-weight: 600;
}
.cm-archive-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--cm-charcoal);
  line-height: 1.25;
  margin: 0 0 10px 0;
}
.cm-archive-desc {
  font-size: 15px;
  color: var(--cm-body);
  line-height: 1.65;
  margin: 0;
}
.cm-archive-desc p {
  margin: 0;
}
.cm-archive-grid {
  margin-bottom: 40px;
}
.cm-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.cm-pagination-wrap .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cm-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cm-charcoal);
  text-decoration: none;
  border: 1px solid var(--cm-border);
  background: #FFFFFF;
  transition: all 0.2s ease;
}
.cm-pagination-wrap .page-numbers.current {
  background: var(--cm-coral);
  color: #FFFFFF;
  border-color: var(--cm-coral);
}
.cm-pagination-wrap .page-numbers:hover:not(.current) {
  background: var(--cm-cream);
  color: var(--cm-coral);
  border-color: var(--cm-coral);
}
.cm-no-posts {
  text-align: center;
  padding: 60px 20px;
}
.cm-no-posts h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  color: var(--cm-charcoal);
  margin-bottom: 12px;
}
.cm-no-posts p {
  font-size: 15px;
  color: var(--cm-muted);
  margin-bottom: 24px;
}

/* ==========================================================================
   8. EDITORIAL SINGLE POST TEMPLATE
   ========================================================================== */
.cm-single-main {
  padding: 30px 0 60px 0;
}
.cm-single-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.cm-single-breadcrumbs {
  font-size: 13px;
  color: var(--cm-muted);
  margin-bottom: 16px;
}
.cm-single-breadcrumbs a {
  color: var(--cm-muted);
  text-decoration: none;
}
.cm-single-breadcrumbs a:hover {
  color: var(--cm-coral);
}
.cm-single-header {
  margin-bottom: 24px;
}
.cm-single-cat-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #FFF0F3;
  color: var(--cm-coral);
  border: 1px solid #FFE0E6;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 12px;
}
.cm-single-cat-badge:hover {
  background: var(--cm-coral);
  color: #FFFFFF;
}
.cm-single-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cm-charcoal);
  line-height: 1.25;
  margin: 0 0 12px 0;
}
.cm-single-meta {
  font-size: 13.5px;
  color: var(--cm-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cm-single-meta strong {
  color: var(--cm-charcoal);
}
.cm-meta-sep {
  color: #CBD5E0;
}
.cm-single-featured-img {
  margin: 0 0 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.cm-single-featured-img img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.cm-single-content {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--cm-body);
  margin-bottom: 40px;
}
.cm-single-content h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 35px 0 14px 0;
}
.cm-single-content h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cm-charcoal);
  margin: 24px 0 10px 0;
}
.cm-single-content p {
  margin: 0 0 18px 0;
}
.cm-single-content ul, .cm-single-content ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.cm-single-content li {
  margin-bottom: 8px;
}
.cm-single-content a {
  color: var(--cm-coral);
  text-decoration: underline;
}
.cm-single-content img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .cm-archive-title {
    font-size: 25px;
  }
  .cm-single-title {
    font-size: 24px;
  }
  .cm-single-container {
    padding: 0 16px;
  }
}
