/* ── TRAJAN PRO (self-hosted) ── */
/* Copy TrajanProRegular.woff2 and TrajanProBold.woff2 from the html/ folder
   into this theme's assets/fonts/ directory, then these @font-face rules apply. */
@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanProRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanProBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --red:        #e00226;
  --red-dk:     #b8001e;
  --dark:       #2b2b2b;
  --gray-bg:    #f7f8fa;
  --border:     #e4e4e4;
  --text:       #444;
  --star:       #f5a623;
  --shadow:     0 2px 16px rgba(0,0,0,.09);
  --blue-icon:  #1a5caa;
  --blue-light: #e8f1fb;
  --footer-bg:  #2a2d35;
  --font-serif: 'Trajan Pro', Georgia, serif;
  --font-sans:  'Open Sans', Arial, sans-serif;
  --max-width:  1100px;
  --pad-x:      40px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  background: #fff;
}
body.mobile-nav-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
}
h1 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
p  { font-family: var(--font-sans); }

/* ── BUTTONS ── */
.btn-solid {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 6px;
  display: inline-block;
  transition: background .15s;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
}
.btn-solid:hover { background: var(--red-dk); color: #fff; }

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 6px;
  display: inline-block;
  transition: background .15s, color .15s;
  font-family: var(--font-sans);
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ── SECTION HELPERS ── */
.section {
  padding: 72px var(--pad-x);
}
.section-alt {
  background: var(--gray-bg);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  color: var(--dark);
  margin-bottom: 10px;
}
.section-heading p {
  font-size: 18px;
  color: #777;
  max-width: 680px;
  margin: 12px auto 0;
}
.section-bar {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ── EYEBROW ── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ── PAGE BANNER (shared by interior pages) ── */
.page-banner {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1420 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--banner-bg-url, none) center / cover no-repeat;
  opacity: .08;
}
.page-banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.page-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.page-banner h1 {
  color: #fff;
  margin-bottom: 10px;
}
.page-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0;
}
.page-banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.pb-btn-call {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pb-btn-call:hover { background: var(--red-dk); color: #fff; }
.pb-btn-dir {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}
.pb-btn-dir:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-inner svg {
  width: 12px;
  height: 12px;
  color: #aaa;
  flex-shrink: 0;
}
.breadcrumb-inner a { color: var(--red); }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ── PAGE CONTENT WRAPPER ── */
.page-content {
  padding: 72px var(--pad-x);
}
.page-content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── CONTENT BODY TYPOGRAPHY ── */
.content-body h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 0;
  line-height: 1.25;
}
.content-body h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-top: 10px;
  border-radius: 2px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.content-body p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin: 14px 0 0;
  max-width: 780px;
}
.content-body a {
  overflow-wrap: anywhere;
}
.page-intro,
.contact-intro {
  margin-bottom: 36px;
}
.home-editor-content {
  padding-bottom: 0;
}
.content-body .lead {
  font-size: 19px;
  color: #444;
  line-height: 1.75;
  max-width: 760px;
}
.content-body ul, .check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  max-width: 700px;
}
.content-body ul li, .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #555;
  line-height: 1.55;
  padding: 9px 14px;
  background: var(--gray-bg);
  border-radius: 6px;
  margin-bottom: 6px;
  border-left: 3px solid var(--red);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  max-width: 700px;
}
.info-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  padding: 8px 12px;
  background: var(--gray-bg);
  border-radius: 6px;
  border-left: 3px solid var(--red);
}
.callout-box {
  background: #fff5f6;
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px 18px 20px;
  margin: 22px 0 0;
  max-width: 700px;
}
.callout-box-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0 0;
}
.faq-mini {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  max-width: 740px;
}
.faq-mini-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.faq-mini-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.faq-mini-item:last-child { border-bottom: none; }
.faq-mini-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-mini-q::before {
  content: 'Q';
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-mini-a {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  padding-left: 28px;
}

/* ── ADMIN BAR COMPENSATION ── */
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

*/
/*authorship*/

.ricemr26-wrap {
	box-sizing: border-box;
	max-width: 680px;
	margin: 0 auto;
	padding: 0 20px;
}

.ricemr26 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
    margin: -56px 0 12px;		
	padding: 8px 18px 8px 10px;
	background: #f8f9fb;
	border: 1px solid #eef0f3;
	border-radius: 999px;
	box-sizing: border-box;
}

.ricemr26 img {
	display: block;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
}

.ricemr26 p {
	margin: 0;
	padding: 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.4;
}

.ricemr26 p a,
.ricemr26 p a:visited {
	color: #191919;
	font-weight: 700;
	text-decoration: none;
	border-bottom: none;
	box-shadow: none;
}

.ricemr26 p a:hover,
.ricemr26 p a:focus {
	color: #ed1c24;
	text-decoration: none