/*
Theme Name: Cakes Corner
Theme URI: https://88cakescorner.com
Description: Warm editorial baking theme for 88cakescorner.com — built for AdSense and global food content.
Author: 88cakescorner.com
Version: 1.0.0
License: Private
Text Domain: cakes-corner
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --cream:        #FAF7F2;
  --white:        #FFFFFF;
  --espresso:     #1A0F08;
  --mocha:        #5C3D2E;
  --latte:        #9B7B6A;
  --terracotta:   #C85A36;
  --honey:        #D4943A;
  --border:       #E8DDD4;
  --surface:      #F3EDE6;
  --card-shadow:  0 1px 12px rgba(26,15,8,.07);
  --card-hover:   0 4px 24px rgba(26,15,8,.13);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'DM Sans', 'Helvetica Neue', sans-serif;

  --container:    1200px;
  --content-w:    720px;
  --sidebar-w:    310px;
  --radius:       8px;
  --radius-lg:    14px;
  --gap:          28px;
  --transition:   .2s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--honey); }
ul, ol { padding-left: 1.5rem; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--espresso);
  margin-bottom: .5em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 3px solid var(--terracotta);
  margin: 1.5em 0;
  padding: .8em 1.4em;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05em;
  color: var(--mocha);
}

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

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

.content-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 40px;
  align-items: start;
}

.section-title {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--latte);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title::before { max-width: 32px; flex: 0 0 32px; }
.section-title::after  { max-width: none; }

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

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.site-logo {
  text-align: center;
  flex: 1;
}

.site-logo a {
  display: inline-block;
  color: var(--white);
}

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1;
  display: block;
}

.site-logo .logo-sub {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block;
  margin-top: 3px;
}

.header-search-btn,
.hamburger {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  padding: 6px;
  font-size: 1.1rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.header-search-btn:hover,
.hamburger:hover { color: var(--white); }

.header-nav-bar {
  border-top: 1px solid rgba(255,255,255,.08);
}

.header-nav-bar .container {
  display: flex;
  justify-content: center;
}

.primary-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.primary-nav a {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 11px 16px;
  display: block;
  transition: color var(--transition), background var(--transition);
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #120906;
  padding: 12px 0;
}

.mobile-nav.is-open { display: block; }

.mobile-nav a {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  display: block;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  letter-spacing: .04em;
}

.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }

/* ============================================
   AD ZONE WRAPPERS
   ============================================ */
.ad-zone {
  text-align: center;
  overflow: hidden;
}

.ad-zone-top {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.ad-label {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--latte);
  display: block;
  margin-bottom: 4px;
}

.ad-zone-sidebar {
  margin-bottom: 32px;
}

.ad-zone-in-content {
  margin: 2em 0;
  padding: 1em;
  background: var(--surface);
  border-radius: var(--radius);
}

.ad-zone-footer-strip {
  background: #120906;
  padding: 14px 0;
  text-align: center;
}

/* ============================================
   POST CARDS
   ============================================ */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-2px);
}

.post-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.post-card-thumb .no-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.post-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cat-badge {
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.cat-badge.cat-culture  { background: #7B5EA7; }
.cat-badge.cat-howto    { background: #2E7D52; }
.cat-badge.cat-budget   { background: var(--honey); }
.cat-badge.cat-trends   { background: var(--terracotta); }

.post-date {
  font-family: var(--font-ui);
  font-size: .7rem;
  color: var(--latte);
}

.post-card h2, .post-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.post-card h2 a, .post-card h3 a {
  color: var(--espresso);
}

.post-card h2 a:hover, .post-card h3 a:hover {
  color: var(--terracotta);
}

.post-card .excerpt {
  font-size: .88rem;
  color: var(--mocha);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.read-more-link {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.read-more-link::after { content: '→'; }
.read-more-link:hover { color: var(--honey); }

/* ============================================
   HERO FEATURED POST
   ============================================ */
.hero-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: var(--gap);
  box-shadow: var(--card-shadow);
}

.hero-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-featured .no-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--mocha) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,8,.85) 0%, rgba(26,15,8,.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}

.hero-overlay .cat-badge { margin-bottom: 12px; }

.hero-overlay h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-overlay h2 a { color: var(--white); }
.hero-overlay h2 a:hover { color: var(--honey); }

.hero-meta {
  font-family: var(--font-ui);
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  display: flex;
  gap: 14px;
}

/* ============================================
   HOMEPAGE LAYOUT
   ============================================ */
.home-main { padding: 40px 0 60px; }

.posts-grid { margin-bottom: var(--gap); }

.featured-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: var(--gap);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { position: sticky; top: 80px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}

.widget-title {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-post-list { list-style: none; padding: 0; margin: 0; }

.sidebar-post-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.sidebar-post-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-list li:first-child { padding-top: 0; }

.sidebar-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-title {
  font-family: var(--font-display);
  font-size: .88rem;
  line-height: 1.35;
  color: var(--espresso);
}

.sidebar-post-title:hover { color: var(--terracotta); }

.sidebar-post-date {
  font-family: var(--font-ui);
  font-size: .65rem;
  color: var(--latte);
  margin-top: 4px;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-header { padding: 48px 0 0; }

.single-header .container { max-width: 860px; }

.post-category-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.single-header h1 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.post-byline {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--latte);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.post-byline strong { color: var(--mocha); }

.single-featured-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--card-shadow);
}

.single-content-wrap {
  padding-bottom: 60px;
}

/* Article body typography */
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2A1A10;
}

.article-body h2 {
  font-size: 1.55rem;
  margin-top: 2em;
  margin-bottom: .6em;
  padding-top: .8em;
  border-top: 1px solid var(--border);
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 1.6em;
  margin-bottom: .5em;
  color: var(--mocha);
}

.article-body p { margin-bottom: 1.4em; }

.article-body ul, .article-body ol {
  margin-bottom: 1.4em;
}

.article-body li { margin-bottom: .4em; }

.article-body a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body img {
  border-radius: var(--radius);
  margin: 1.5em 0;
  box-shadow: var(--card-shadow);
}

/* ============================================
   POST TAGS & SHARE
   ============================================ */
.post-footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-pill {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 500;
  background: var(--surface);
  color: var(--mocha);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.tag-pill:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--espresso);
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 4px;
}

.author-desc {
  font-size: .88rem;
  color: var(--mocha);
  line-height: 1.6;
}

/* ============================================
   RELATED POSTS
   ============================================ */
.related-posts {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.3rem;
}

/* ============================================
   ARCHIVE / CATEGORY
   ============================================ */
.archive-header {
  background: var(--espresso);
  color: var(--white);
  padding: 48px 0 36px;
  margin-bottom: 40px;
}

.archive-label {
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.archive-header h1 { color: var(--white); }

.archive-desc {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  margin-top: 10px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--espresso);
  background: var(--white);
  transition: all var(--transition);
}

.pagination a:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.pagination .current { background: var(--espresso); color: var(--white); border-color: var(--espresso); }

/* ============================================
   SEARCH
   ============================================ */
.search-form-wrap {
  background: var(--espresso);
  padding: 40px 0;
}

.search-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.search-form input[type=search] {
  flex: 1;
  padding: 14px 18px;
  font-size: 1rem;
  border: none;
  background: var(--white);
  color: var(--espresso);
  font-family: var(--font-body);
}

.search-form button {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 14px 22px;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.search-form button:hover { background: var(--honey); }

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  text-align: center;
  padding: 80px 20px;
}

.page-404 .error-num {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0;
}

.page-404 h2 { margin-bottom: 12px; }

.page-404 p { color: var(--mocha); margin-bottom: 28px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--espresso);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.65;
  margin-top: 10px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

.footer-col ul a:hover { color: var(--honey); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: #B34D2D; color: var(--white); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--latte);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--latte); }
.breadcrumbs a:hover { color: var(--terracotta); }
.breadcrumbs .sep { color: var(--border); }

/* ============================================
   TRENDING BAR
   ============================================ */
.trending-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}

.trending-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.trending-label {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
}

.trending-links {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.trending-links::-webkit-scrollbar { display: none; }

.trending-links a {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 500;
  color: var(--mocha);
  background: var(--surface);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.trending-links a:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --gap: 18px; }

  .grid-3 { grid-template-columns: 1fr 1fr; }
  .featured-strip { grid-template-columns: 1fr; }
  .hero-featured { aspect-ratio: 4/3; }
  .hero-overlay { padding: 24px 20px; }

  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-nav-bar { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .post-footer-meta { flex-direction: column; }
}

/* ============================================
   SKIP LINK (ACCESSIBILITY)
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  font-family: var(--font-ui);
}

.skip-link:focus { top: 0; }

/* ============================================
   WP CORE ALIGNMENTS
   ============================================ */
.alignwide  { margin-left: -60px; margin-right: -60px; }
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.alignleft  { float: left; margin-right: 1.5em; margin-bottom: .5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: .5em; }
.aligncenter{ text-align: center; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--latte); text-align: center; margin-top: 6px; }

/* Gutenberg block styles */
.wp-block-image { margin: 1.5em 0; }
.wp-block-quote { border-left: 3px solid var(--terracotta); }
.wp-block-separator { border: none; border-top: 1px solid var(--border); margin: 2em 0; }
