@charset "UTF-8";
/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --color-bg: #f7f8f9;
  --color-surface: #ffffff;
  --color-border: #f0f0f0;
  --color-text: #262C31;
  --color-text-muted: #575760;
  --color-accent: #1e73be;
  --color-accent-dark: #1557a0;
  --color-accent-bg: #e8f1fb;
  --color-hero-start: #d9eaf7;
  --color-hero-end: #edf4fb;
  --color-footer-bg: #1a2e3b;
  --color-footer-text: #a8bbc8;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', Monaco, Consolas, 'Andale Mono', monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --header-height: 58px;
  --sidebar-width: 260px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
blockquote, body, dd, dl, dt, fieldset, figure,
h1, h2, h3, h4, h5, h6, hr, html, iframe, legend,
li, ol, p, pre, textarea, ul {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  font-size: 15px;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-transform: none;
}

main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.1s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

b, strong {
  font-weight: 700;
}

cite, dfn, em, i {
  font-style: italic;
}

small {
  font-size: 75%;
}

sub, sup {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.site-logo:hover {
  text-decoration: none;
}

.logo-text {
  color: var(--color-text);
}

.header-divider {
  color: var(--color-border);
  font-size: 1.2rem;
  font-weight: 300;
}

.header-section {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--color-text);
  background: var(--color-bg);
  text-decoration: none;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color 0.15s;
  font-family: var(--font-sans);
}

.lang-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 140px;
  overflow: hidden;
  z-index: 200;
}

.lang-dropdown.is-open {
  display: block;
}

.lang-option {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: background 0.1s;
}

.lang-option:hover {
  background: var(--color-bg);
  text-decoration: none;
}

.lang-option.active {
  color: var(--color-accent);
  font-weight: 500;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: url("/assets/images/bg_header.png") right center/contain no-repeat, linear-gradient(135deg, var(--color-hero-start) 0%, var(--color-hero-end) 100%);
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero--compact {
  padding: 32px 24px 28px;
}

.hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.2em;
}

.hero--compact .hero-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ─── Search ─────────────────────────────────────────────────── */
.search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

/* Pagefind UI overrides to match our search bar style */
.pagefind-ui__search-input {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 40px !important;
  padding: 13px 20px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  box-shadow: var(--shadow-sm) !important;
}

.pagefind-ui__form {
  background: transparent !important;
}

.pagefind-ui__search-clear {
  background: none !important;
}

.pagefind-ui__search-input:focus {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15) !important;
}

.pagefind-ui__search-clear {
  background: none !important;
  border: none !important;
  color: var(--color-text-muted) !important;
  font-size: 0.875rem !important;
  cursor: pointer !important;
}

.pagefind-ui__result {
  border-bottom: 1px solid var(--color-border) !important;
  padding: 12px 0 !important;
}

.pagefind-ui__result-title {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
}

.pagefind-ui__result-excerpt {
  font-size: 0.85rem !important;
  color: var(--color-text-muted) !important;
  margin-top: 4px !important;
}

.pagefind-ui__result-link {
  text-decoration: none !important;
}

.pagefind-ui__result-link:hover .pagefind-ui__result-title {
  color: var(--color-accent) !important;
}

mark {
  background: none;
  color: var(--color-accent);
  font-weight: 600;
}

/* Hide language filter panel */
.pagefind-ui__filter-panel {
  display: none !important;
}

/* ─── Homepage Grid ──────────────────────────────────────────── */
.homepage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  flex: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.category-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: box-shadow 0.15s;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
}

.category-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.category-card-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.category-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
  line-height: 1.3;
}

.category-card-count {
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.category-card-articles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.category-card-articles li a {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s;
}

.category-card-articles li:last-child a {
  border-bottom: none;
}

.category-card-articles li a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  padding: 4px 12px;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s;
}

.view-all-link:hover {
  background: var(--color-accent);
  color: white;
  text-decoration: none;
}

/* ─── Article Page Layout ────────────────────────────────────── */
.page-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  gap: 0;
  min-height: calc(100vh - var(--header-height) - 120px);
}

/* ─── Sidebar ────────────────────────────────────────────────── */
.page-sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  border-right: 1px solid var(--color-border);
  padding: 24px 0 40px;
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: var(--color-surface);
}

.page-sidebar::-webkit-scrollbar {
  width: 4px;
}

.page-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.page-sidebar::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 2px;
}

.sidebar-category {
  border-bottom: 1px solid var(--color-border);
}

.sidebar-category:last-child {
  border-bottom: none;
}

.sidebar-category-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: background 0.1s;
}

.sidebar-category-btn:hover {
  background: var(--color-bg);
}

.sidebar-icon {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.15s;
}

.sidebar-category.is-open .sidebar-icon {
  color: var(--color-accent);
}

.sidebar-category-title {
  flex: 1;
}

.sidebar-chevron {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.sidebar-category.is-open .sidebar-chevron {
  transform: rotate(180deg);
}

.sidebar-articles {
  padding: 4px 0 8px;
  background: var(--color-bg);
}

.sidebar-article-link {
  display: block;
  padding: 7px 20px 7px 48px;
  font-size: 0.825rem;
  color: var(--color-text-muted);
  transition: color 0.15s, background 0.15s;
  border-left: 3px solid transparent;
}

.sidebar-article-link:hover {
  color: var(--color-accent);
  background: var(--color-accent-bg);
  text-decoration: none;
}

.sidebar-article-link.is-active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background: var(--color-accent-bg);
  font-weight: 500;
}

/* ─── Article Content ────────────────────────────────────────── */
.page-content {
  flex: 1;
  padding: 28px 40px 60px;
  min-width: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb span {
  color: var(--color-text);
}

.breadcrumb svg {
  color: var(--color-border);
  flex-shrink: 0;
}

.article-title {
  font-size: 42px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2em;
  margin-bottom: 20px;
}

.article-body {
  max-width: 780px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-text);
}

/* ─── Article typography — taken from old WP styles ─────────── */
.article-body p {
  margin-bottom: 1.5em;
}

.article-body h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2em;
  font-weight: 400;
}

.article-body h2 {
  font-size: 35px;
  margin-bottom: 20px;
  line-height: 1.2em;
  font-weight: 400;
}

.article-body h3 {
  font-size: 29px;
  margin-bottom: 20px;
  line-height: 1.2em;
  font-weight: 400;
}

.article-body h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.article-body h5 {
  font-size: 20px;
  margin-bottom: 20px;
}

.article-body h6 {
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 600;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.5em 3em;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li > ul,
.article-body li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.article-body li {
  margin-bottom: 0.35rem;
}

.article-body dt {
  font-weight: 700;
}

.article-body dd {
  margin: 0 1.5em 1.5em;
}

.article-body a {
  color: var(--color-accent);
}

.article-body a:hover {
  text-decoration: underline;
}

.article-body strong, .article-body b {
  font-weight: 700;
}

.article-body em, .article-body i {
  font-style: italic;
}

.article-body img,
.article-body video {
  border-radius: var(--radius-md);
  margin: 1.25rem 0;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tables — from old WP styles */
.article-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  margin: 0 0 1.5em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 1px 0 0 1px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article-body th {
  background: var(--color-bg);
  font-weight: 700;
  text-align: left;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 1px 1px 0;
  color: var(--color-text);
}

.article-body td {
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 1px 1px 0;
  vertical-align: top;
}

/* Code */
.article-body code,
.article-body kbd,
.article-body tt,
.article-body var {
  font: 15px var(--font-mono);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  color: #c0392b;
}

.article-body pre {
  background: #1e2a35;
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  margin: 0 0 1.5em;
  line-height: normal;
  max-width: 100%;
}

.article-body pre code,
.article-body pre kbd,
.article-body pre tt,
.article-body pre var {
  background: none;
  border: none;
  padding: 0;
  color: #e2eaf3;
  font-size: 15px;
}

/* Blockquote — base style */
.article-body blockquote {
  border-left: 5px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  font-size: 1.2em;
  font-style: italic;
  margin: 0 0 1.5em;
  position: relative;
}

.article-body blockquote p:last-child {
  margin: 0;
}

/* HR */
.article-body hr {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  height: 1px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.article-body del {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.article-body abbr,
.article-body acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

.article-updated {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ─── Callout boxes ──────────────────────────────────────────── */
.article-body blockquote.callout--warning {
  background: #fff8ec !important;
  border-left: 4px solid #f5a623 !important;
  color: var(--color-text) !important;
  font-style: normal !important;
  font-size: 1rem !important;
  padding: 14px 18px !important;
}

.article-body blockquote.callout--info {
  background: #f8f9fa !important;
  border-left: 4px solid #6c757d !important;
  color: var(--color-text) !important;
  font-style: normal !important;
  font-size: 1rem !important;
  padding: 12px 16px !important;
}

.article-body blockquote.callout--info p {
  margin: 0;
}

.article-body blockquote.callout--info img {
  width: 20px;
  height: 20px;
  display: inline;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 2px;
  box-shadow: none;
  border-radius: 0;
}

.article-body table img {
  display: inline;
  vertical-align: middle;
  width: 40px;
  height: auto;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
}

.page-content-full {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 40px 60px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-footer-bg);
  padding: 40px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-footer-text);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  body, button, input, select, textarea {
    transition: all 0s ease-in-out;
  }
  .page-layout {
    flex-direction: column;
    padding: 0;
  }
  .page-sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .page-content {
    padding: 20px 16px 40px;
  }
  .hero {
    padding: 36px 16px 32px;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .header-section {
    display: none;
  }
  .article-title {
    font-size: 28px;
  }
  .article-body h1 {
    font-size: 28px;
  }
  .article-body h2 {
    font-size: 24px;
  }
  .article-body h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }
  .nav-link {
    display: none;
  }
  .nav-link:last-child {
    display: flex;
  }
}
/* ─── Focus styles ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.using-mouse :focus {
  outline: 0;
}

/* ─── Screen reader ──────────────────────────────────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
/* ─── Article body extras from WP block CSS ──────────────────── */
/* Drop cap */
.article-body .has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 8.4em;
  font-style: normal;
  font-weight: 100;
  line-height: 0.68;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
}

/* Columns */
.article-body .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em;
  margin-bottom: 1.75em;
}

@media (min-width: 782px) {
  .article-body .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.article-body .wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

/* Pullquote */
.article-body .wp-block-pullquote {
  border-top: 4px solid var(--color-text);
  border-bottom: 4px solid var(--color-text);
  padding: 2em 0;
  text-align: center;
  margin: 0 0 1.5em;
}

.article-body .wp-block-pullquote p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6;
  margin-top: 0;
}

.article-body .wp-block-pullquote cite {
  display: block;
  font-size: 0.875em;
  color: var(--color-text-muted);
}

/* Separator variants */
.article-body .wp-block-separator {
  border: none;
  border-top: 2px solid var(--color-border);
  margin: 2rem 0;
}

.article-body .wp-block-separator.is-style-dots {
  height: auto;
  line-height: 1;
  text-align: center;
  background: none !important;
  border: none !important;
}

.article-body .wp-block-separator.is-style-dots:before {
  content: "···";
  font-family: serif;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em;
  color: var(--color-text-muted);
}

/* Figure captions */
.article-body figure {
  margin: 0 0 1em;
}

.article-body figcaption {
  font-size: 0.8em;
  color: var(--color-text-muted);
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}

/* Preformatted text */
.article-body .wp-block-preformatted {
  white-space: pre-wrap;
}

/* Verse */
.article-body pre.wp-block-verse {
  overflow: auto;
  white-space: pre-wrap;
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

/* Details/summary */
.article-body details summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0.5em;
}

/* Sub/sup */
.article-body sub,
.article-body sup {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.article-body sup {
  bottom: 1ex;
}

.article-body sub {
  top: 0.5ex;
}

/* Small */
.article-body small {
  font-size: 75%;
}

/* Abbr */
.article-body abbr,
.article-body acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

/* Address */
.article-body address {
  margin: 0 0 1.5em;
  font-style: italic;
}

/* Definition lists */
.article-body dl {
  margin: 0 0 1.5em;
}

.article-body dt {
  font-weight: 700;
}

.article-body dd {
  margin: 0 1.5em 1.5em;
}

/* Ins/mark */
.article-body ins,
.article-body mark {
  background: #fff9c0;
  text-decoration: none;
}

/* Responsive video embeds */
.article-body .wp-block-embed {
  overflow-wrap: break-word;
  margin: 0 0 1.5em;
}

.article-body .wp-block-embed iframe {
  max-width: 100%;
}

/* Text alignment helpers */
.article-body .has-text-align-center {
  text-align: center;
}

.article-body .has-text-align-left {
  text-align: left;
}

.article-body .has-text-align-right {
  text-align: right;
}

/* Font size helpers */
.article-body .is-small-text {
  font-size: 0.875em;
}

.article-body .is-regular-text {
  font-size: 1em;
}

.article-body .is-large-text {
  font-size: 2.25em;
}

.article-body .is-larger-text {
  font-size: 3em;
}

/*# sourceMappingURL=main.css.map */