/*
Theme Name:  SmartSEO Pro
Theme URI:   https://smartseopro.co.uk
Author:      Wix Services Ltd
Author URI:  https://wixservices.com
Description: Fast, minimalist SEO agency theme for SmartSEOPro.co.uk. Built for AdSense, Core Web Vitals, and mobile-first performance.
Version:     1.0.0
License:     GPL-2.0+
Text Domain: smartseopro
Tags:        minimalist, seo, adsense, mobile-first, one-column, custom-menu, featured-images
*/

/* ═══════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════ */
:root {
  --white:   #ffffff;
  --bg:      #f8fafc;
  --bg2:     #f1f5f9;
  --border:  #e2e8f0;
  --p:       #2563eb;
  --pd:      #1d4ed8;
  --ps:      #eff6ff;
  --t1:      #0f172a;
  --t2:      #1e293b;
  --t3:      #475569;
  --t4:      #94a3b8;
  --green:   #16a34a;
  --red:     #dc2626;
  --yellow:  #d97706;
  --radius:  10px;
  --shadow:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow2: 0 4px 16px rgba(0,0,0,.08);
  --fh: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --fb: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 1160px;
  --content: 740px;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  color: var(--t2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--p); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fh);
  font-weight: 700;
  line-height: 1.25;
  color: var(--t1);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); margin-bottom: .6rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); margin-bottom: .5rem; }
h4 { font-size: 1.1rem; margin-bottom: .4rem; }
p  { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════
   LAYOUT WRAPPERS
═══════════════════════════════════════════════════ */
.site-wrap   { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.content-wrap{ max-width: var(--content); margin: 0 auto; padding: 0 20px; }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.site-branding { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -.025em;
  text-decoration: none;
}
.site-name:hover { text-decoration: none; color: var(--p); }
.site-name span { color: var(--p); }

/* Nav */
#site-nav { display: flex; align-items: center; gap: 4px; }
#site-nav a {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  color: var(--t3);
  padding: 6px 12px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
#site-nav a:hover, #site-nav a.active { background: var(--ps); color: var(--p); }
.nav-cta {
  background: var(--p) !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--pd) !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t2);
  border-radius: 2px;
  transition: all .25s;
}
@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  #site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: var(--shadow2);
  }
  #site-nav.open { display: flex; }
  #site-nav a { padding: 10px 14px; font-size: 15px; }
  .nav-cta { text-align: center; margin-left: 0; margin-top: 6px; }
}

/* ═══════════════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════════════ */
.site-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  padding: 72px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,.25);
  border: 1px solid rgba(37,99,235,.4);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.hero-title em { font-style: normal; color: #60a5fa; }
.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}
.trust-icon { font-size: 16px; }

/* ═══════════════════════════════════════════════════
   ADSENSE SLOTS
═══════════════════════════════════════════════════ */
.ad-slot {
  margin: 32px auto;
  text-align: center;
  clear: both;
}
.ad-slot-label {
  font-size: 10px;
  color: var(--t4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.ad-slot-leaderboard { max-width: 728px; min-height: 90px; }
.ad-slot-rectangle   { max-width: 336px; min-height: 280px; margin: 0 auto; }
.ad-slot-banner      { max-width: 468px; min-height: 60px; }
@media (max-width: 768px) {
  .ad-slot-leaderboard { max-width: 320px; min-height: 50px; }
}

/* ═══════════════════════════════════════════════════
   MAIN CONTENT AREA
═══════════════════════════════════════════════════ */
.site-main { padding: 48px 0 64px; }

/* With sidebar layout */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ═══════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════ */
.sidebar { position: sticky; top: 76px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* ═══════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 20px; }
.card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--p);
  background: var(--ps);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
  line-height: 1.4;
}
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--p); }
.card-excerpt { font-size: 14px; color: var(--t3); line-height: 1.6; margin-bottom: 12px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--t4);
  font-weight: 500;
}

/* Post grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ═══════════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════════ */
.post-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.post-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.post-title { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.2; margin-bottom: 16px; }
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--t4);
  font-weight: 500;
}
.post-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.post-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/9;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Article content */
.entry-content { font-size: 1.0625rem; line-height: 1.8; color: var(--t2); }
.entry-content h2 { margin-top: 2rem; margin-bottom: .75rem; }
.entry-content h3 { margin-top: 1.5rem; margin-bottom: .6rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content blockquote {
  border-left: 3px solid var(--p);
  background: var(--ps);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--t2);
}
.entry-content pre {
  background: var(--t1);
  color: #e2e8f0;
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.entry-content code {
  background: var(--bg2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .875em;
  color: var(--p);
}
.entry-content pre code { background: none; color: inherit; padding: 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; font-size: 14px; }
.entry-content th, .entry-content td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.entry-content th { background: var(--bg2); font-weight: 600; }
.entry-content img { border-radius: var(--radius); margin: 1rem 0; }
.entry-content a { color: var(--p); text-decoration: underline; text-underline-offset: 3px; }
.entry-content .wp-block-image figcaption { font-size: 13px; color: var(--t4); text-align: center; margin-top: 6px; }

/* In-content ad */
.in-content-ad { margin: 36px auto; }

/* TOC */
.toc-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--p);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 2rem 0;
}
.toc-title { font-weight: 700; color: var(--t1); margin-bottom: 12px; font-family: var(--fh); }
.toc-box ol { margin: 0; padding-left: 1.4em; }
.toc-box li { margin-bottom: 6px; font-size: 14px; }
.toc-box a { color: var(--p); text-decoration: none; }
.toc-box a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════════ */
.features-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ps);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}
.feature-title { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.feature-desc  { font-size: 13px; color: var(--t3); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--p);
  padding: 28px 20px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.stat-num { font-family: var(--fh); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl { font-size: 13px; color: #bfdbfe; font-weight: 500; margin-top: 4px; }

/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 64px 20px;
  text-align: center;
}
.cta-title { font-family: var(--fh); font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-sub    { font-size: 1.05rem; color: #94a3b8; margin-bottom: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
  border: none;
}
.btn-primary { background: var(--p); color: #fff !important; }
.btn-primary:hover { background: var(--pd); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.3); text-decoration: none; }
.btn-white { background: #fff; color: var(--t1) !important; }
.btn-white:hover { background: var(--bg2); text-decoration: none; }
.btn-outline { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; text-decoration: none; }

/* ═══════════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════════ */
.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--t4);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.breadcrumbs a { color: var(--t3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--p); }
.breadcrumbs span { margin: 0 6px; }

/* ═══════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 32px 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--t2);
  text-decoration: none;
  transition: all .15s;
}
.pagination a:hover { border-color: var(--p); color: var(--p); background: var(--ps); }
.pagination .current { background: var(--p); border-color: var(--p); color: #fff; }

/* ═══════════════════════════════════════════════════
   COMMENTS
═══════════════════════════════════════════════════ */
.comments-section { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.comment { display: flex; gap: 16px; margin-bottom: 28px; }
.comment-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.comment-body { flex: 1; }
.comment-author { font-weight: 700; font-size: 14px; color: var(--t1); margin-bottom: 4px; }
.comment-date   { font-size: 12px; color: var(--t4); margin-bottom: 8px; }
.comment-text   { font-size: 14px; color: var(--t2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#site-footer {
  background: var(--t1);
  color: #94a3b8;
  padding: 56px 20px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto 48px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .site-name { color: #fff; font-size: 1.2rem; }
.footer-brand .site-name span { color: #60a5fa; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-col-title {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 14px; color: #94a3b8; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a { color: #64748b; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--p);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.section-sub { font-size: 1.05rem; color: var(--t3); line-height: 1.65; margin-bottom: 40px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ═══════════════════════════════════════════════════
   SKIP LINK (accessibility)
═══════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--p);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════
   SEARCH FORM
═══════════════════════════════════════════════════ */
.search-form {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--fb);
  color: var(--t1);
  background: transparent;
}
.search-form button {
  background: var(--p);
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background .15s;
}
.search-form button:hover { background: var(--pd); }

/* ═══════════════════════════════════════════════════
   TAGS
═══════════════════════════════════════════════════ */
.tag-cloud { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-cloud a {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--t3);
  text-decoration: none;
  transition: all .15s;
  background: var(--white);
}
.tag-cloud a:hover { border-color: var(--p); color: var(--p); background: var(--ps); }

/* ═══════════════════════════════════════════════════
   SCHEMA / STRUCTURED DATA helpers
═══════════════════════════════════════════════════ */
.review-stars { color: #f59e0b; letter-spacing: 2px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-q { font-family: var(--fh); font-weight: 700; color: var(--t1); margin-bottom: 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { font-size: 15px; color: var(--t3); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .site-hero { padding: 52px 20px 60px; }
  .site-main { padding: 32px 0 48px; }
  .posts-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WP CORE ALIGNMENT CLASSES
═══════════════════════════════════════════════════ */
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.alignwide  { margin-left: -60px; margin-right: -60px; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter{ margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 640px) {
  .alignwide  { margin-left: 0; margin-right: 0; }
  .alignleft, .alignright { float: none; margin: 0 0 16px 0; }
}
