:root {
  --rd-primary: #0f766e;
  --rd-accent: #06b6d4;
  --rd-background: #fbfefe;
  --rd-surface: #ffffff;
  --rd-text: #0f172a;
  --rd-muted: #64748b;
  --rd-border: #d9e5e8;
  --rd-soft: #eef7f7;
  --rd-max-width: 1120px;
  --rd-radius: 8px;
  --rd-radius-lg: 16px;
  --rd-ring: rgba(6, 182, 212, 0.32);
  --rd-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  --rd-shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.12);
  --rd-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(238, 247, 247, 0.7), rgba(251, 254, 254, 0) 360px),
    var(--rd-background);
  color: var(--rd-text);
  font-family: var(--rd-font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p,
li,
blockquote {
  overflow-wrap: break-word;
}

::selection {
  background: rgba(6, 182, 212, 0.22);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rd-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--rd-accent);
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  color: var(--rd-text);
  padding: 0.72rem 0.85rem;
}

input[type="submit"] {
  width: auto;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid var(--rd-ring);
  outline-offset: 2px;
}

.rd-shell {
  width: min(calc(100% - 2rem), var(--rd-max-width));
  margin-inline: auto;
}

.rd-skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--rd-text);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.rd-skip-link:focus {
  transform: translateY(0);
}

.rd-site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--rd-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-bar .rd-site-header {
  top: 32px;
}

.rd-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.rd-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--rd-text);
  text-decoration: none;
  min-width: 0;
}

.rd-logo-frame {
  width: 46px;
  height: 46px;
  border-radius: var(--rd-radius);
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--rd-border);
  background: var(--rd-soft);
}

.rd-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rd-site-title {
  color: var(--rd-text);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rd-site-tagline {
  color: var(--rd-muted);
  font-size: 0.83rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 28rem;
}

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

.rd-menu,
.rd-menu ul,
.rd-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rd-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.rd-menu li {
  position: relative;
}

.rd-menu a {
  display: block;
  color: var(--rd-text);
  text-decoration: none;
  border-radius: var(--rd-radius);
  padding: 0.55rem 0.85rem;
  font-weight: 650;
  font-size: 0.95rem;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.rd-menu a:hover,
.rd-menu a:focus,
.rd-menu .current-menu-item > a,
.rd-menu .current_page_item > a {
  color: var(--rd-primary);
  background: rgba(15, 118, 110, 0.08);
}

.rd-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  box-shadow: var(--rd-shadow);
  padding: 0.4rem;
  z-index: 70;
}

.rd-menu li:hover > .sub-menu,
.rd-menu li:focus-within > .sub-menu {
  display: block;
}

.rd-menu .sub-menu a {
  border-radius: calc(var(--rd-radius) - 2px);
  white-space: nowrap;
}

.rd-menu-toggle {
  display: none;
  border: 1px solid var(--rd-border);
  background: var(--rd-surface);
  color: var(--rd-text);
  border-radius: var(--rd-radius);
  padding: 0.52rem 0.8rem;
  cursor: pointer;
  align-items: center;
  gap: 0.45rem;
}

.rd-menu-toggle-line,
.rd-menu-toggle-line::before,
.rd-menu-toggle-line::after {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.rd-menu-toggle-line {
  position: relative;
}

.rd-menu-toggle-line::before,
.rd-menu-toggle-line::after {
  position: absolute;
  left: 0;
}

.rd-menu-toggle-line::before {
  top: -5px;
}

.rd-menu-toggle-line::after {
  top: 5px;
}

.rd-menu-toggle[aria-expanded="true"] .rd-menu-toggle-line {
  background: transparent;
}

.rd-menu-toggle[aria-expanded="true"] .rd-menu-toggle-line::before {
  top: 0;
  transform: rotate(45deg);
}

.rd-menu-toggle[aria-expanded="true"] .rd-menu-toggle-line::after {
  top: 0;
  transform: rotate(-45deg);
}

.rd-main {
  padding-block: 3rem 3.6rem;
}

.rd-hero {
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}

.rd-hero-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 247, 0.64)),
    var(--rd-surface);
  box-shadow: var(--rd-shadow);
  padding: clamp(2rem, 6vw, 4rem);
}

.rd-hero-copy::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--rd-primary), var(--rd-accent));
  content: "";
}

.rd-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--rd-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}

.rd-hero h1,
.rd-page-header h1,
.rd-entry-header h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
}

.rd-hero h1 {
  max-width: 980px;
  font-size: 4.35rem;
}

.rd-hero-text {
  max-width: 820px;
  margin: 1.25rem 0 1.7rem;
  color: var(--rd-muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.rd-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--rd-primary);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  padding: 0.72rem 1.05rem;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.rd-button:hover,
.rd-button:focus,
button[type="submit"]:hover,
button[type="submit"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--rd-accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.24);
  transform: translateY(-1px);
}

.rd-button-secondary {
  background: var(--rd-soft);
  color: var(--rd-primary);
  border: 1px solid var(--rd-border);
}

.rd-button-secondary:hover,
.rd-button-secondary:focus {
  color: #ffffff;
  border-color: var(--rd-accent);
}

.rd-home-stack {
  display: grid;
  gap: 3.5rem;
}

.rd-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.rd-section-header h2,
.rd-empty-state h2,
.rd-comments h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.18;
}

.rd-grid {
  display: grid;
  gap: 1rem;
}

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

.rd-card {
  overflow: hidden;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.rd-card:hover,
.rd-card:focus-within {
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: var(--rd-shadow-hover);
  transform: translateY(-2px);
}

.rd-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--rd-soft);
  text-decoration: none;
}

.rd-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.rd-card:hover .rd-card-media img {
  transform: scale(1.03);
}

.rd-card-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  width: 100%;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.96), rgba(6, 182, 212, 0.86)),
    var(--rd-primary);
  font-weight: 900;
  text-align: center;
  padding: 1rem;
}

.rd-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.rd-card-meta,
.rd-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--rd-muted);
  font-size: 0.88rem;
}

.rd-card-meta span:first-child {
  color: var(--rd-primary);
  font-weight: 800;
}

.rd-card-title {
  margin: 0.55rem 0 0.4rem;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.rd-card-title a {
  color: var(--rd-text);
  text-decoration: none;
}

.rd-card-title a:hover,
.rd-card-title a:focus {
  color: var(--rd-primary);
}

.rd-card-body p {
  margin: 0;
  color: var(--rd-muted);
  line-height: 1.6;
}

.rd-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
}

.rd-text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.rd-text-link::after {
  margin-left: 0.35rem;
  content: "→";
}

.rd-empty-message,
.rd-empty-state {
  border: 1px dashed var(--rd-border);
  border-radius: var(--rd-radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--rd-muted);
  padding: 1.2rem;
}

.rd-page-header,
.rd-entry-header {
  max-width: 860px;
  margin-bottom: 2rem;
}

.rd-page-header h1,
.rd-entry-header h1 {
  font-size: 3.35rem;
}

.rd-archive-description {
  color: var(--rd-muted);
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.rd-listing-grid {
  margin-top: 1.5rem;
}

.rd-pagination {
  margin-top: 2rem;
}

.rd-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rd-pagination a,
.rd-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--rd-border);
  border-radius: 999px;
  background: var(--rd-surface);
  color: var(--rd-text);
  text-decoration: none;
  padding: 0.35rem 0.72rem;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.rd-pagination .current,
.rd-pagination a:hover,
.rd-pagination a:focus {
  background: var(--rd-primary);
  color: #ffffff;
  border-color: var(--rd-primary);
}

.rd-readable {
  max-width: 920px;
}

.rd-entry {
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
  padding: clamp(1.2rem, 4vw, 3rem);
}

.rd-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.rd-featured-image {
  overflow: hidden;
  border-radius: var(--rd-radius);
  margin: 1.4rem 0;
  background: var(--rd-soft);
}

.rd-featured-image img {
  display: block;
  width: 100%;
}

.rd-entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.rd-entry-content > *:first-child {
  margin-top: 0;
}

.rd-entry-content h2,
.rd-entry-content h3,
.rd-entry-content h4 {
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 1.7em;
  margin-bottom: 0.55em;
}

.rd-entry-content h2 {
  font-size: 1.85rem;
}

.rd-entry-content h3 {
  font-size: 1.45rem;
}

.rd-entry-content h4 {
  font-size: 1.2rem;
}

.rd-entry-content p,
.rd-entry-content ul,
.rd-entry-content ol,
.rd-entry-content blockquote,
.rd-entry-content pre,
.rd-entry-content table {
  margin-bottom: 1.2em;
}

.rd-entry-content blockquote {
  border-left: 4px solid var(--rd-accent);
  margin-left: 0;
  padding: 0.15rem 0 0.15rem 1rem;
  color: var(--rd-muted);
  font-size: 1.08rem;
}

.rd-entry-content code {
  background: var(--rd-soft);
  border-radius: 6px;
  padding: 0.12rem 0.3rem;
}

.rd-entry-content pre {
  overflow-x: auto;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--rd-radius);
  padding: 1rem;
}

.rd-entry-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.rd-entry-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}

.rd-entry-content th,
.rd-entry-content td {
  border: 1px solid var(--rd-border);
  padding: 0.65rem;
  text-align: left;
}

.rd-entry-footer {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rd-border);
  color: var(--rd-muted);
  font-size: 0.95rem;
}

.rd-post-navigation {
  margin-top: 1.3rem;
}

.rd-post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rd-post-navigation a {
  display: block;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  color: var(--rd-text);
  text-decoration: none;
  padding: 1rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.rd-post-navigation a:hover,
.rd-post-navigation a:focus {
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: var(--rd-shadow);
  transform: translateY(-1px);
}

.rd-post-navigation span {
  display: block;
  color: var(--rd-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.rd-post-navigation strong {
  display: block;
  margin-top: 0.25rem;
}

.search-form {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
}

.search-form label {
  flex: 1;
  min-width: 0;
}

.search-form .search-field {
  min-height: 44px;
}

.search-form .search-submit {
  width: auto;
}

.rd-site-footer {
  border-top: 1px solid var(--rd-border);
  background:
    linear-gradient(180deg, var(--rd-surface), rgba(238, 247, 247, 0.48)),
    var(--rd-surface);
  margin-top: 3rem;
}

.rd-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(160px, 1fr));
  gap: 2rem;
  padding-block: 2.2rem;
}

.rd-footer-brand strong {
  display: block;
  font-size: 1.05rem;
}

.rd-footer-brand p {
  max-width: 480px;
  color: var(--rd-muted);
  margin: 0.35rem 0 0;
}

.rd-footer-links,
.rd-footer-menu {
  display: grid;
  gap: 0.45rem;
}

.rd-footer-links a,
.rd-footer-menu a {
  width: fit-content;
  color: var(--rd-text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
}

.rd-footer-links a:hover,
.rd-footer-links a:focus,
.rd-footer-menu a:hover,
.rd-footer-menu a:focus {
  color: var(--rd-primary);
}

.rd-copyright {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--rd-border);
  color: var(--rd-muted);
  font-size: 0.9rem;
  padding-block: 1rem;
}

.rd-comments {
  margin-top: 2rem;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  padding: 1.2rem;
}

.rd-comment-list {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.rd-comment-list .children {
  display: grid;
  gap: 0.9rem;
  margin: 0.9rem 0 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rd-border);
  list-style: none;
}

.rd-comment-list .comment-body {
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  background: rgba(238, 247, 247, 0.42);
  padding: 1rem;
}

.comment-author {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-weight: 800;
}

.comment-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.comment-meta {
  margin-top: 0.35rem;
  color: var(--rd-muted);
  font-size: 0.88rem;
}

.comment-meta a,
.reply a,
.comment-edit-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.comment-meta a:hover,
.comment-meta a:focus,
.reply a:hover,
.reply a:focus,
.comment-edit-link:hover,
.comment-edit-link:focus {
  color: var(--rd-primary);
}

.comment-body p {
  margin-bottom: 0;
}

.comment-respond {
  margin-top: 1.4rem;
}

.comment-reply-title {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.comment-notes,
.logged-in-as {
  color: var(--rd-muted);
}

.comment-form {
  display: grid;
  gap: 0.8rem;
}

.comment-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.comment-form input[type="checkbox"] {
  width: auto;
}

.form-submit {
  margin: 0;
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
  color: var(--rd-muted);
  font-size: 0.9rem;
}

.alignleft {
  float: left;
  margin: 0.35rem 1rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0.35rem 0 1rem 1rem;
}

.aligncenter {
  display: block;
  margin-inline: auto;
}

.alignwide {
  width: min(100%, var(--rd-max-width));
}

.alignfull {
  width: 100%;
}

.bypostauthor {
  outline: 2px solid rgba(6, 182, 212, 0.3);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .rd-hero h1 {
    font-size: 3.25rem;
  }

  .rd-page-header h1,
  .rd-entry-header h1 {
    font-size: 2.75rem;
  }

  .rd-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-hero,
  .rd-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-bar .rd-site-header {
    top: 46px;
  }

  .rd-header-inner {
    min-height: 68px;
  }

  .rd-menu-toggle {
    display: inline-flex;
  }

  .rd-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    background: var(--rd-surface);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 0.7rem;
    z-index: 80;
  }

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

  .rd-menu {
    display: grid;
    gap: 0.2rem;
  }

  .rd-menu a {
    border-radius: var(--rd-radius);
    padding: 0.72rem 0.8rem;
  }

  .rd-menu .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 0.8rem;
    background: transparent;
  }

  .rd-site-tagline {
    max-width: 12rem;
  }

  .rd-section-header,
  .rd-copyright {
    align-items: start;
    flex-direction: column;
  }

  .rd-grid-3,
  .rd-post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .rd-footer-inner {
    gap: 1.4rem;
  }

  .search-form {
    display: grid;
  }

  .search-form .search-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .rd-shell {
    width: min(calc(100% - 1rem), var(--rd-max-width));
  }

  .rd-brand-copy {
    max-width: 12rem;
  }

  .rd-main {
    padding-block: 1.6rem 2.4rem;
  }

  .rd-hero {
    margin-top: 1rem;
    margin-bottom: 2.4rem;
  }

  .rd-hero-copy,
  .rd-entry {
    padding: 1.2rem;
  }

  .rd-hero h1 {
    font-size: 2.35rem;
  }

  .rd-hero-text,
  .rd-entry-content {
    font-size: 1rem;
  }

  .rd-page-header h1,
  .rd-entry-header h1 {
    font-size: 2.15rem;
  }

  .rd-section-header h2,
  .rd-empty-state h2,
  .rd-comments h2 {
    font-size: 1.55rem;
  }

  .rd-comment-list .children {
    margin-left: 0;
    padding-left: 0.75rem;
  }
}

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

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

body.rd-blank-template {
  background: var(--rd-surface);
}

.rd-blank-main,
.rd-blank-content {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.rd-blank-content > * {
  max-width: none;
}

.rd-blank-content > :first-child {
  margin-top: 0;
}

.rd-blank-content > :last-child {
  margin-bottom: 0;
}

.rd-blank-content .alignwide,
.rd-blank-content .alignfull {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
