:root {
  --brightstone-red: #0757df;
  --brightstone-red-dark: #053b9f;
  --brightstone-cyan: #0b5cff;
  --brightstone-mobile-header: #0547c7;
  --brightstone-dark: #07183d;
  --brightstone-ink: #101827;
  --brightstone-muted: #5c6678;
  --brightstone-line: #dce5f2;
  --brightstone-line-strong: #bfcbe0;
  --brightstone-soft: #f5f8ff;
  --brightstone-bg: #fff;
  --brightstone-wrap: 1180px;
  --brightstone-reading: 720px;
  --brightstone-radius: 5px;
  --brightstone-focus: 0 0 0 3px rgba(11, 92, 255, 0.25);
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, "Times New Roman", serif;
}

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

html {
  line-height: 1.5;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--brightstone-bg);
  color: var(--brightstone-ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  text-decoration-color: currentColor;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
input,
textarea,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--brightstone-cyan);
  outline-offset: 3px;
}

::selection {
  background: rgba(11, 92, 255, 0.18);
}

.screen-reader-text,
.skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 11px 16px;
  clip: auto;
  background: #fff;
  color: var(--brightstone-ink);
  border: 2px solid var(--brightstone-cyan);
  border-radius: var(--brightstone-radius);
  z-index: 10000;
}

.brightstone-wrap {
  width: min(var(--brightstone-wrap), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--brightstone-line);
}

.brightstone-topbar {
  background: var(--brightstone-dark);
  color: #fff;
  font-size: 12px;
}

.brightstone-topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brightstone-topbar a {
  color: #fff;
}

.brightstone-masthead {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 18px;
}

.brightstone-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brightstone-brand:hover {
  text-decoration: none;
}

.brightstone-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brightstone-brand-name {
  color: var(--brightstone-ink);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brightstone-masthead-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.brightstone-account-link,
.brightstone-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--brightstone-red);
  border-radius: var(--brightstone-radius);
  background: var(--brightstone-red);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.brightstone-account-link:hover,
.brightstone-button:hover {
  background: var(--brightstone-red-dark);
  border-color: var(--brightstone-red-dark);
  color: #fff;
  text-decoration: none;
}

.brightstone-button-secondary {
  background: #fff;
  border-color: var(--brightstone-line-strong);
  color: var(--brightstone-ink);
}

.brightstone-button-secondary:hover {
  background: var(--brightstone-soft);
  border-color: var(--brightstone-ink);
  color: var(--brightstone-ink);
}

.brightstone-user-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--brightstone-line-strong);
  border-radius: var(--brightstone-radius);
  color: var(--brightstone-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.brightstone-user-chip-icon,
.brightstone-user-chip-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.brightstone-signout-link {
  color: var(--brightstone-muted);
  font-size: 13px;
  font-weight: 650;
}

.brightstone-google-header {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.brightstone-search-form {
  height: 42px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--brightstone-line-strong);
  border-radius: var(--brightstone-radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.brightstone-search-form:focus-within {
  border-color: var(--brightstone-cyan);
  box-shadow: var(--brightstone-focus);
}

.brightstone-search-form input {
  width: 185px;
  min-width: 0;
  padding: 9px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brightstone-ink);
}

.brightstone-search-form button {
  padding: 0 14px;
  border: 0;
  border-left: 1px solid var(--brightstone-line);
  background: #fff;
  color: var(--brightstone-ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

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

.brightstone-primary-nav {
  border-top: 1px solid var(--brightstone-line);
  background: #fff;
}

.brightstone-nav-inner {
  display: flex;
  align-items: center;
}

.brightstone-menu {
  min-height: 48px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brightstone-menu li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.brightstone-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--brightstone-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.brightstone-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--brightstone-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.brightstone-menu a:hover::after,
.brightstone-menu .current-menu-item > a::after,
.brightstone-menu .current-post-ancestor > a::after {
  transform: scaleX(1);
}

.brightstone-menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--brightstone-radius);
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

/* Homepage */
.brightstone-breaking {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 10px;
  border-bottom: 1px solid var(--brightstone-line);
  font-size: 14px;
}

.brightstone-breaking strong {
  flex: 0 0 auto;
  color: var(--brightstone-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brightstone-breaking-list {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  white-space: nowrap;
}

.brightstone-breaking-list::-webkit-scrollbar {
  display: none;
}

.brightstone-breaking-list a {
  font-weight: 650;
}

.brightstone-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding-block: 28px 12px;
}

.brightstone-hero-main {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
  background: #fff;
}

.brightstone-card-image {
  display: block;
  overflow: hidden;
  background: var(--brightstone-soft);
  border-radius: var(--brightstone-radius);
}

.brightstone-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.brightstone-card-image:hover img {
  transform: scale(1.018);
}

.brightstone-hero-main .brightstone-card-image {
  min-height: 405px;
  border-radius: var(--brightstone-radius) 0 0 var(--brightstone-radius);
}

.brightstone-hero-main .brightstone-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--brightstone-line);
  border-left: 0;
  border-radius: 0 var(--brightstone-radius) var(--brightstone-radius) 0;
}

.brightstone-kicker,
.brightstone-kicker-static {
  display: inline-block;
  width: fit-content;
  margin-bottom: 9px;
  color: var(--brightstone-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
}

.brightstone-kicker:hover {
  color: var(--brightstone-red);
  text-decoration: none;
}

.brightstone-hero-main h1 {
  margin: 0 0 15px;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 2.75vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.brightstone-hero-main h1 a,
.brightstone-hero-small h2 a,
.brightstone-card h2 a {
  text-decoration: none;
}

.brightstone-hero-main h1 a:hover,
.brightstone-hero-small h2 a:hover,
.brightstone-card h2 a:hover {
  color: var(--brightstone-cyan);
}

.brightstone-hero-main p {
  margin: 0 0 18px;
  color: #343c43;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.52;
}

.brightstone-card-meta,
.brightstone-article-meta {
  color: var(--brightstone-muted);
  font-size: 12px;
}

.brightstone-hero-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brightstone-hero-small {
  min-width: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--brightstone-line);
}

.brightstone-hero-small .brightstone-card-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 11px;
}

.brightstone-hero-small h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.brightstone-home-columns,
.brightstone-archive-layout,
.brightstone-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.brightstone-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 18px;
  padding-top: 12px;
  border-top: 1px solid var(--brightstone-line-strong);
}

.brightstone-section-title h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brightstone-section-title a {
  color: var(--brightstone-cyan);
  font-size: 13px;
  font-weight: 750;
}

.brightstone-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.brightstone-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brightstone-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brightstone-card {
  min-width: 0;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--brightstone-line);
  background: #fff;
}

.brightstone-card .brightstone-card-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 13px;
}

.brightstone-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.brightstone-card p {
  margin: 0 0 10px;
  color: #465059;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.48;
}

.brightstone-home-rail,
.brightstone-sidebar {
  position: sticky;
  top: 18px;
}

.brightstone-widget,
.widget {
  margin: 0 0 28px;
  padding-top: 14px;
  border-top: 1px solid var(--brightstone-line-strong);
  background: #fff;
}

.widget-title,
.brightstone-widget h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.brightstone-number-list {
  counter-reset: item;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brightstone-number-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--brightstone-line);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
}

.brightstone-number-list li::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  color: var(--brightstone-cyan);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
}

.brightstone-category-row {
  padding-bottom: 16px;
}

.brightstone-empty {
  grid-column: 1 / -1;
  padding: 56px 0;
  text-align: center;
}

/* Articles, pages and archives */
.brightstone-breadcrumbs {
  margin: 22px 0 16px;
  color: var(--brightstone-muted);
  font-size: 12px;
}

.brightstone-breadcrumbs a {
  color: var(--brightstone-ink);
  font-weight: 650;
}

.brightstone-breadcrumbs span {
  margin-inline: 7px;
}

.brightstone-article-layout {
  padding-top: 8px;
}

.brightstone-article {
  min-width: 0;
}

.brightstone-article-header {
  max-width: 850px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brightstone-line);
}

.brightstone-article-header.has-preferred-source {
  padding-bottom: 0;
  border-bottom: 0;
}

.brightstone-article-header h1 {
  max-width: 850px;
  margin: 0 0 17px;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 5.3vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.brightstone-dek {
  max-width: 760px;
  margin: 0 0 18px;
  color: #465059;
  font-family: var(--font-ui);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.42;
}

.brightstone-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  font-size: 13px;
  line-height: 1.4;
}

.brightstone-article-meta a {
  color: var(--brightstone-ink);
  font-weight: 750;
}

.brightstone-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0;
}

.brightstone-share-heading {
  margin-right: 2px;
  color: var(--brightstone-muted);
  font-size: 12px;
  font-weight: 750;
}

.brightstone-share-btn {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--brightstone-line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--brightstone-ink);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.brightstone-share-btn:hover {
  border-color: currentColor;
  background: var(--brightstone-soft);
  text-decoration: none;
}

.brightstone-share-icon,
.brightstone-share-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.brightstone-share-facebook { color: #315fb4; }
.brightstone-share-whatsapp { color: #087f3f; }
.brightstone-share-snapchat { color: #5f5b00; }
.brightstone-share-telegram { color: #087ba7; }
.brightstone-share-copy,
.brightstone-share-email { color: #465059; }

.brightstone-preferred-source {
  max-width: 100%;
  margin: 10px 0 0;
  padding: 7px 0;
  border-block: 1px solid var(--brightstone-line);
  font-size: 14px;
  line-height: 1.4;
}

.brightstone-preferred-source-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: #303940;
  font-weight: 750;
  text-decoration: none;
}

.brightstone-preferred-source-link:hover,
.brightstone-preferred-source-link:focus-visible {
  color: var(--brightstone-cyan-dark);
  text-decoration: none;
}

.brightstone-preferred-source-arrow {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--brightstone-cyan);
  font-size: 17px;
  line-height: 1;
}

.brightstone-preferred-dot {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brightstone-cyan);
}

.brightstone-featured-image {
  max-width: 100%;
  margin: 24px 0;
}

.brightstone-featured-image img {
  width: 100%;
  border-radius: var(--brightstone-radius);
}

.brightstone-featured-image figcaption,
.brightstone-video-caption {
  margin-top: 8px;
  color: var(--brightstone-muted);
  font-size: 12px;
  line-height: 1.45;
}

.brightstone-article-content {
  max-width: var(--brightstone-reading);
  color: #20262b;
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.6vw, 1.23rem);
  line-height: 1.72;
}

.brightstone-article-content > * {
  max-width: 100%;
}

.brightstone-article-content p {
  margin: 0 0 1.2em;
}

.brightstone-article-content h2,
.brightstone-article-content h3,
.brightstone-page-content h2,
.brightstone-page-content h3 {
  margin: 1.55em 0 0.55em;
  color: var(--brightstone-ink);
  font-family: var(--font-ui);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.brightstone-article-content h2,
.brightstone-page-content h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.brightstone-article-content h3,
.brightstone-page-content h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }

.brightstone-article-content a,
.brightstone-page-content a {
  color: var(--brightstone-cyan);
  text-decoration: underline;
}

.brightstone-article-content blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--brightstone-cyan);
  color: #303940;
  font-size: 1.12em;
  font-style: italic;
}

.brightstone-article-content :where(ul, ol),
.brightstone-page-content :where(ul, ol) {
  padding-left: 1.35em;
}

.brightstone-article-content :where(img, video, iframe) {
  border-radius: var(--brightstone-radius);
}

.brightstone-video-hero {
  margin: 24px 0;
  overflow: hidden;
  border-radius: var(--brightstone-radius);
  background: #050505;
  color: #fff;
}

.brightstone-video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brightstone-video-inner :where(iframe, video, embed, object, .wp-video) {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.brightstone-native-video {
  object-fit: contain;
  background: #000;
}

.brightstone-video-caption {
  margin: 0;
  padding: 10px 13px 12px;
  color: #dfe4e7;
}

.brightstone-related {
  margin-top: 42px;
}

.brightstone-page-layout {
  max-width: 920px;
  padding-block: 34px 54px;
}

.brightstone-page-header h1,
.brightstone-archive-header h1 {
  margin: 0 0 13px;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brightstone-page-content {
  color: #273038;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
}

.brightstone-page-box {
  padding: 26px;
  border: 1px solid var(--brightstone-line);
  border-radius: var(--brightstone-radius);
  background: #fff;
}

.brightstone-faq details {
  padding: 16px 0;
  border-bottom: 1px solid var(--brightstone-line);
}

.brightstone-faq summary {
  font-family: var(--font-ui);
  font-weight: 750;
  cursor: pointer;
}

.brightstone-archive-layout {
  padding-block: 34px 52px;
}

.brightstone-archive-header {
  margin-bottom: 24px;
}

.brightstone-archive-header p,
.brightstone-archive-description {
  max-width: 760px;
  color: var(--brightstone-muted);
}

.navigation.pagination {
  margin: 34px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--brightstone-line-strong);
  border-radius: var(--brightstone-radius);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.page-numbers.current {
  background: var(--brightstone-ink);
  border-color: var(--brightstone-ink);
  color: #fff;
}

/* Forms, account and auth */
.bright-stone-newsletter {
  padding: 20px;
  border: 1px solid var(--brightstone-line);
  border-radius: var(--brightstone-radius);
  background: var(--brightstone-soft);
}

.bright-stone-newsletter h3,
.brightstone-auth-box h3 {
  margin: 0 0 7px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.bright-stone-newsletter p,
.brightstone-auth-box p {
  margin: 0 0 14px;
  color: var(--brightstone-muted);
  font-size: 14px;
}

.bright-stone-newsletter input[type="text"],
.bright-stone-newsletter input[type="email"],
.brightstone-contact-form input,
.brightstone-contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--brightstone-line-strong);
  border-radius: var(--brightstone-radius);
  outline: 0;
  background: #fff;
  color: var(--brightstone-ink);
}

.bright-stone-newsletter input:focus,
.brightstone-contact-form input:focus,
.brightstone-contact-form textarea:focus {
  border-color: var(--brightstone-cyan);
  box-shadow: var(--brightstone-focus);
}

.bright-stone-newsletter-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.bright-stone-newsletter-row {
  display: flex;
  gap: 8px;
}

.bright-stone-newsletter-row input[type="email"] {
  min-width: 0;
}

.bright-stone-newsletter button,
.brightstone-contact-form button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--brightstone-cyan);
  border-radius: var(--brightstone-radius);
  background: var(--brightstone-cyan);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.bright-stone-newsletter button:hover,
.brightstone-contact-form button:hover {
  background: #006b80;
  border-color: #006b80;
}

.bright-stone-newsletter button:disabled,
.brightstone-contact-form button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.bright-stone-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--brightstone-muted);
  font-size: 12px;
  line-height: 1.42;
}

.bright-stone-newsletter-consent input {
  width: auto;
  margin-top: 2px;
}

.bright-stone-newsletter-msg,
.brightstone-contact-msg,
.brightstone-auth-msg,
.brightstone-consent-msg,
.brightstone-delete-account-msg {
  min-height: 20px;
  margin-top: 10px;
  font-size: 13px;
}

.is-success { color: #08713a; font-weight: 750; }
.is-error { color: #a40e19; font-weight: 750; }

.brightstone-account-card,
.brightstone-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--brightstone-line);
  border-radius: var(--brightstone-radius);
  background: #fff;
}

.brightstone-account-card h2,
.brightstone-contact-intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brightstone-account-intro {
  padding-right: 28px;
  border-right: 1px solid var(--brightstone-line);
}

.brightstone-account-points {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.brightstone-account-points span {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid var(--brightstone-cyan);
  background: var(--brightstone-soft);
  font-size: 14px;
  font-weight: 700;
}

.brightstone-auth-box {
  padding: 20px;
  border: 1px solid var(--brightstone-line);
  border-radius: var(--brightstone-radius);
  background: #fff;
}

.brightstone-auth-buttons {
  display: grid;
  gap: 9px;
}

.brightstone-auth-btn {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 15px;
  border: 1px solid var(--brightstone-line-strong);
  border-radius: var(--brightstone-radius);
  background: #fff;
  color: var(--brightstone-ink);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.brightstone-auth-btn span,
.brightstone-auth-btn svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.brightstone-auth-facebook { background: #1877f2; border-color: #1877f2; color: #fff; }
.brightstone-auth-apple { background: #111; border-color: #111; color: #fff; }
.brightstone-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: var(--brightstone-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brightstone-auth-divider::before,
.brightstone-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--brightstone-line);
}

.brightstone-auth-note { font-size: 12px; }
.is-auth-disabled .brightstone-auth-buttons { opacity: 0.55; pointer-events: none; }

.brightstone-contact-form {
  padding: 22px;
  border: 1px solid var(--brightstone-line);
  border-radius: var(--brightstone-radius);
  background: var(--brightstone-soft);
}

.brightstone-contact-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 750;
}

.brightstone-contact-form input,
.brightstone-contact-form textarea {
  margin-top: 6px;
  font-weight: 400;
}

.brightstone-delete-account-box,
.brightstone-signed-in-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--brightstone-line);
  border-radius: var(--brightstone-radius);
  background: var(--brightstone-soft);
}

.brightstone-delete-account-box {
  border-color: #efc9cc;
  background: #fff8f8;
}

.brightstone-delete-account-btn {
  background: var(--brightstone-red);
  border-color: var(--brightstone-red);
}

.brightstone-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 20, 24, 0.66);
  backdrop-filter: blur(3px);
}

.brightstone-consent-modal-card {
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border-radius: var(--brightstone-radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.brightstone-consent-modal-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.08;
}

.brightstone-consent-fineprint {
  color: var(--brightstone-muted);
  font-size: 13px;
}

.brightstone-consent-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.brightstone-consent-dismiss {
  color: var(--brightstone-muted);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brightstone-consent-dismiss:hover,
.brightstone-consent-dismiss:focus-visible {
  color: var(--brightstone-dark);
  background: var(--brightstone-soft);
  border-color: var(--brightstone-line);
}

/* Footer */
.site-footer {
  margin-top: 56px;
  background: var(--brightstone-dark);
  color: #fff;
}

.brightstone-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 1fr;
  gap: 40px;
  padding-block: 46px;
}

.brightstone-brand-footer img {
  width: 46px;
  height: 46px;
}

.brightstone-brand-footer span {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brightstone-footer-brand p {
  max-width: 460px;
  color: #cbd3d9;
}

.site-footer a { color: #fff; }

.brightstone-footer-menu h3 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brightstone-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brightstone-footer-links li { margin-bottom: 9px; }
.brightstone-footer-newsletter .bright-stone-newsletter { background: #fff; color: var(--brightstone-ink); }

.brightstone-footer-bottom {
  padding-block: 16px;
  border-top: 1px solid #323a40;
  color: #aeb8bf;
  font-size: 12px;
}

.brightstone-error-page {
  padding: 70px 20px;
  text-align: center;
}

/* WordPress content */
.wp-caption { max-width: 100%; }
.aligncenter { margin-right: auto; margin-left: auto; }
.alignleft { float: left; margin: 0 24px 20px 0; }
.alignright { float: right; margin: 0 0 20px 24px; }
.gallery { display: grid; gap: 12px; }
.bypostauthor { outline: 0; }

@media (max-width: 1100px) {
  .brightstone-hero-grid,
  .brightstone-home-columns,
  .brightstone-archive-layout,
  .brightstone-article-layout {
    grid-template-columns: 1fr;
  }

  .brightstone-home-rail,
  .brightstone-sidebar {
    position: static;
  }

  .brightstone-home-rail,
  .brightstone-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .brightstone-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brightstone-footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .brightstone-wrap {
    width: min(var(--brightstone-wrap), calc(100% - 32px));
  }

  .site-header {
    position: sticky;
    top: 0;
    background: var(--brightstone-mobile-header);
    border-bottom: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
  }

  .brightstone-mobile-sticky-disabled .site-header {
    position: static;
  }

  .brightstone-topbar {
    display: none;
  }

  .brightstone-masthead {
    min-height: 64px;
    padding-block: 8px;
    color: #fff;
  }

  .brightstone-brand {
    gap: 0;
  }

  .brightstone-brand img {
    width: 42px;
    height: 42px;
  }

  .brightstone-brand-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .brightstone-masthead-actions {
    gap: 8px;
  }

  .brightstone-account-link {
    min-height: 42px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.78);
  }

  .brightstone-account-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
  }

  .brightstone-user-chip {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
  }

  .brightstone-user-chip-label,
  .brightstone-signout-link,
  .brightstone-google-header,
  .brightstone-masthead-actions .brightstone-search-form {
    display: none;
  }

  .brightstone-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    border: 0;
    background: transparent;
    pointer-events: none;
  }

  .brightstone-nav-inner {
    position: relative;
    width: min(var(--brightstone-wrap), calc(100% - 20px));
    min-height: 0;
    display: block;
    margin-inline: auto;
  }

  .brightstone-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .brightstone-menu-toggle::before {
    content: "\2630";
    margin-right: 7px;
    font-size: 19px;
    line-height: 1;
  }

  .brightstone-menu {
    display: none;
    min-height: 0;
  }

  .brightstone-mobile-menu-open .brightstone-menu {
    position: absolute;
    top: 8px;
    right: 0;
    left: 0;
    z-index: 1002;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 7px 0;
    border: 1px solid var(--brightstone-line-strong);
    border-radius: var(--brightstone-radius);
    background: #fff;
    box-shadow: 0 20px 42px rgba(16, 20, 24, 0.2);
    white-space: normal;
    pointer-events: auto;
  }

  .brightstone-mobile-menu-open .brightstone-menu li,
  .brightstone-mobile-menu-open .brightstone-menu a {
    width: 100%;
  }

  .brightstone-mobile-menu-open .brightstone-menu a {
    min-height: 44px;
    padding: 0 16px;
    color: var(--brightstone-ink);
  }

  .brightstone-mobile-menu-open .brightstone-menu a::after {
    display: none;
  }

  .brightstone-breaking {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
    background: #fff;
  }

  .brightstone-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 20px;
  }

  .brightstone-hero-main {
    grid-template-columns: 1fr;
  }

  .brightstone-hero-main .brightstone-card-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: var(--brightstone-radius);
  }

  .brightstone-hero-main .brightstone-card-content {
    padding: 18px 0 0;
    border: 0;
  }

  .brightstone-hero-main h1 {
    font-size: clamp(2.2rem, 8.5vw, 3.05rem);
    line-height: 1.02;
  }

  .brightstone-card-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brightstone-article-header h1 {
    font-size: clamp(2.35rem, 9vw, 3.3rem);
  }

  .brightstone-article-content {
    font-size: 18px;
    line-height: 1.68;
  }

  .brightstone-page-layout,
  .brightstone-archive-layout,
  .brightstone-article-layout {
    padding-top: 22px;
  }

  .single .brightstone-sidebar {
    display: none;
  }

  .brightstone-account-card,
  .brightstone-contact-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .brightstone-account-intro {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--brightstone-line);
  }

  .brightstone-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brightstone-wrap {
    width: calc(100% - 32px);
  }

  .brightstone-masthead-actions {
    max-width: 68%;
  }

  .brightstone-account-link {
    padding-inline: 13px;
    font-size: 13px;
  }

  .brightstone-nav-inner {
    width: calc(100% - 20px);
  }

  .brightstone-menu-toggle {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .brightstone-menu-toggle::before {
    margin: 0;
    font-size: 22px;
  }

  .brightstone-breaking {
    gap: 12px;
    padding-inline: 16px;
  }

  .brightstone-hero-side,
  .brightstone-card-grid,
  .brightstone-card-grid-three,
  .brightstone-card-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .brightstone-hero-small h2,
  .brightstone-card h2 {
    font-size: 1.15rem;
  }

  .brightstone-card p {
    display: none;
  }

  .brightstone-card-meta {
    font-size: 11px;
  }

  .brightstone-home-rail,
  .brightstone-sidebar {
    display: block;
  }

  .brightstone-section-title {
    margin-top: 30px;
  }

  .brightstone-article-meta {
    gap: 5px 10px;
  }

  .brightstone-share {
    gap: 7px;
  }

  .brightstone-share-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .brightstone-share-label,
  .brightstone-share-heading {
    display: none;
  }

  .brightstone-featured-image,
  .brightstone-video-hero {
    margin-inline: -16px;
  }

  .brightstone-featured-image img,
  .brightstone-video-hero {
    border-radius: 0;
  }

  .brightstone-featured-image figcaption,
  .brightstone-video-caption {
    padding-inline: 16px;
  }

  .bright-stone-newsletter-row {
    display: grid;
  }

  .bright-stone-newsletter-row button {
    width: 100%;
  }

  .brightstone-page-box,
  .brightstone-account-card,
  .brightstone-contact-card,
  .brightstone-consent-modal-card {
    padding: 20px;
  }

  .brightstone-footer-grid {
    padding-block: 36px;
  }

  .alignleft,
  .alignright {
    float: none;
    margin: 0 0 18px;
  }
}

@media (max-width: 359px) {
  .brightstone-hero-side,
  .brightstone-card-grid,
  .brightstone-card-grid-three,
  .brightstone-card-grid-four {
    grid-template-columns: 1fr;
  }

  .brightstone-card p {
    display: block;
  }

  .brightstone-consent-modal-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .brightstone-sidebar,
  .brightstone-share,
  .brightstone-preferred-source {
    display: none !important;
  }

  .brightstone-article-layout,
  .brightstone-wrap {
    display: block;
    width: 100%;
  }

  .brightstone-article-content {
    max-width: none;
    font-size: 12pt;
  }
}

/* Public author transparency components (v7.4). */
.brightstone-author-card{display:grid;grid-template-columns:96px minmax(0,1fr);gap:20px;align-items:start;margin:48px 0 32px;padding:24px 0;border-block:1px solid var(--brightstone-border);}
.brightstone-author-card h2{font-size:clamp(1.35rem,2vw,1.75rem);margin:.15rem 0 .25rem;}
.brightstone-author-card p{margin:.35rem 0;}
.brightstone-author-avatar,.brightstone-author-portrait{border-radius:50%;object-fit:cover;background:#eef3f4;}
.brightstone-author-label{font-size:.75rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--brightstone-cyan-dark);}
.brightstone-author-role{color:var(--brightstone-muted);font-weight:650;}
.brightstone-author-hero{display:grid;grid-template-columns:160px minmax(0,1fr);gap:32px;align-items:center;padding:48px 0 36px;border-bottom:1px solid var(--brightstone-border);}
.brightstone-author-hero h1{font:800 clamp(2.5rem,6vw,5rem)/.98 var(--brightstone-serif);letter-spacing:-.045em;margin:.25rem 0 .75rem;}
.brightstone-author-summary{font-size:1.2rem;line-height:1.55;max-width:60ch;}
.brightstone-author-facts{margin:.6rem 0;color:var(--brightstone-muted);font-size:.95rem;font-weight:650;}
.brightstone-author-links{display:flex;flex-wrap:wrap;gap:8px 16px;margin-top:14px;}
.brightstone-author-links a{font-size:.9rem;font-weight:750;text-decoration-thickness:1px;text-underline-offset:3px;}
.brightstone-author-details{max-width:760px;padding:32px 0;}
.brightstone-author-details p{font-size:1.05rem;line-height:1.7;}
@media(max-width:640px){.brightstone-author-hero{grid-template-columns:88px minmax(0,1fr);gap:18px;padding:28px 0}.brightstone-author-portrait{width:88px;height:88px}.brightstone-author-card{grid-template-columns:72px minmax(0,1fr)}.brightstone-author-avatar{width:72px;height:72px}}
