/*
Theme Name: Red Rose Official Blog
Theme URI: https://redrose1976.com/blog/
Author: 夜ウェブ
Description: Red Roseの公式ブログ専用テーマ。
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: redrose-blog
*/

:root {
  --rr-ink: #121014;
  --rr-ink-2: #1a151d;
  --rr-ink-3: #241b26;
  --rr-rose: #c8203f;
  --rr-rose-soft: #e05070;
  --rr-gold: #c9a24b;
  --rr-gold-light: #e6c877;
  --rr-cream: #f3ead9;
  --rr-muted: rgba(243, 234, 217, .68);
  --rr-muted-soft: rgba(243, 234, 217, .52);
  --rr-line: rgba(233, 201, 120, .18);
  --rr-line-soft: rgba(243, 234, 217, .11);
  --rr-fs-xs: clamp(.75rem, .71rem + .2vw, .82rem);
  --rr-fs-sm: clamp(.82rem, .78rem + .25vw, .94rem);
  --rr-fs-base: clamp(.98rem, .92rem + .28vw, 1.08rem);
  --rr-fs-md: clamp(1.18rem, 1.06rem + .55vw, 1.5rem);
  --rr-fs-lg: clamp(1.52rem, 1.25rem + 1.2vw, 2.3rem);
  --rr-fs-xl: clamp(2.15rem, 1.65rem + 2.4vw, 3.75rem);
  --rr-fs-display: clamp(3rem, 1.9rem + 5vw, 6.5rem);
  --rr-sp-2xs: .5rem;
  --rr-sp-xs: .75rem;
  --rr-sp-s: 1rem;
  --rr-sp-m: 1.5rem;
  --rr-sp-l: 2.5rem;
  --rr-sp-xl: 4rem;
  --rr-sp-2xl: 6rem;
  --rr-section: clamp(4.5rem, 3rem + 5vw, 8.5rem);
  --rr-wrap: 1180px;
  --rr-reading: 780px;
  --rr-gutter: clamp(1.1rem, 4vw, 2rem);
  --rr-radius: 4px;
  --rr-ease: cubic-bezier(.19, 1, .22, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(90% 55% at 50% -10%, rgba(200, 32, 63, .13), transparent 68%),
    var(--rr-ink);
  color: var(--rr-cream);
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  font-size: var(--rr-fs-base);
  line-height: 1.9;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.rr-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

::selection {
  color: #fff;
  background: var(--rr-rose);
}

:focus-visible {
  outline: 2px solid var(--rr-gold-light);
  outline-offset: 4px;
  border-radius: 2px;
}

.rr-skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 9999;
  padding: .75rem 1rem;
  color: var(--rr-ink);
  background: var(--rr-gold-light);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.rr-skip-link:focus {
  transform: none;
}

.rr-container {
  width: min(100%, calc(var(--rr-wrap) + (var(--rr-gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--rr-gutter);
}

.rr-reading {
  width: min(100%, calc(var(--rr-reading) + (var(--rr-gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--rr-gutter);
}

.rr-eyebrow {
  margin: 0 0 var(--rr-sp-s);
  color: var(--rr-gold-light);
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-size: var(--rr-fs-xs);
  font-weight: 600;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
}

.rr-display,
.rr-title,
.rr-card-title,
.rr-entry h2,
.rr-entry h3 {
  font-family: "Noto Serif JP", serif;
  text-wrap: balance;
}

.rr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rr-line-soft);
  background: rgba(18, 16, 20, .86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.admin-bar .rr-header {
  top: 32px;
}

.rr-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rr-sp-m);
}

.rr-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .1em;
  white-space: nowrap;
}

.rr-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.rr-brand small {
  color: var(--rr-gold);
  font-family: "Noto Sans JP", sans-serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
}

.rr-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
}

.rr-nav a {
  position: relative;
  padding-block: .4rem;
  color: var(--rr-muted);
  font-size: var(--rr-fs-xs);
  letter-spacing: .14em;
  transition: color .3s var(--rr-ease);
}

.rr-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rr-gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--rr-ease);
}

.rr-nav a:hover,
.rr-nav a[aria-current="page"] {
  color: var(--rr-cream);
}

.rr-nav a:hover::after,
.rr-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.rr-menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  color: var(--rr-cream);
  background: transparent;
  cursor: pointer;
}

.rr-menu-button span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--rr-ease), opacity .2s ease, top .3s var(--rr-ease);
}

.rr-menu-button span:nth-child(1) { top: 15px; }
.rr-menu-button span:nth-child(2) { top: 21px; }
.rr-menu-button span:nth-child(3) { top: 27px; }
.rr-menu-open .rr-menu-button span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.rr-menu-open .rr-menu-button span:nth-child(2) { opacity: 0; }
.rr-menu-open .rr-menu-button span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.rr-hero {
  position: relative;
  min-height: clamp(360px, 58svh, 620px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rr-line);
  text-align: center;
}

.rr-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("/data/images/web/x-interior-1-800.webp") center 46% / cover no-repeat;
  transform: scale(1.02);
}

.rr-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 16, 20, .66), rgba(18, 16, 20, .72) 58%, var(--rr-ink)),
    radial-gradient(65% 60% at 50% 18%, rgba(224, 80, 112, .24), transparent 74%);
}

.rr-hero-inner {
  padding-block: var(--rr-sp-xl);
}

.rr-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: var(--rr-fs-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .05em;
  text-shadow: 0 4px 34px rgba(0, 0, 0, .45);
}

.rr-hero h1 em {
  color: var(--rr-rose-soft);
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.rr-hero-lead {
  max-width: 640px;
  margin: var(--rr-sp-m) auto 0;
  color: var(--rr-muted);
  line-height: 2;
  text-wrap: pretty;
}

.rr-blog-main {
  padding-block: var(--rr-section);
}

.rr-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--rr-sp-l);
  margin-bottom: var(--rr-sp-xl);
}

.rr-section-head h2 {
  margin: 0;
  font-size: var(--rr-fs-xl);
  line-height: 1.25;
}

.rr-section-head p {
  max-width: 42ch;
  margin: 0;
  color: var(--rr-muted);
  font-size: var(--rr-fs-sm);
}

.rr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.rr-card {
  min-width: 0;
}

.rr-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rr-line-soft);
  border-radius: var(--rr-radius);
  background: linear-gradient(160deg, rgba(36, 27, 38, .82), rgba(18, 16, 20, .76));
  overflow: hidden;
  transition: transform .45s var(--rr-ease), border-color .35s ease, box-shadow .45s var(--rr-ease);
}

.rr-card-link:hover {
  border-color: rgba(230, 200, 119, .44);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
  transform: translateY(-6px);
}

.rr-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(224, 80, 112, .25), transparent 38%),
    linear-gradient(145deg, var(--rr-ink-3), var(--rr-ink));
}

.rr-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(18, 16, 20, .46));
  pointer-events: none;
}

.rr-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--rr-ease), filter .5s ease;
}

.rr-card-link:hover .rr-card-media img {
  transform: scale(1.045);
}

.rr-card-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(243, 234, 217, .18);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-style: italic;
}

.rr-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.3vw, 1.75rem);
}

.rr-card-date {
  margin: 0 0 .8rem;
  color: var(--rr-gold-light);
  font-family: "Playfair Display", serif;
  font-size: var(--rr-fs-xs);
  letter-spacing: .18em;
}

.rr-card-cast {
  display: block;
  margin-bottom: .45rem;
  color: var(--rr-rose-soft);
  font-size: var(--rr-fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
}

.rr-cast-journal {
  border-top: 1px solid var(--rr-line);
  background: linear-gradient(160deg, rgba(73, 17, 40, .16), transparent 48%);
}

.rr-cast-directory {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: calc(var(--rr-sp-m) * -0.25) 0 var(--rr-sp-l);
}

.rr-cast-directory a,
.rr-cast-profile-link,
.rr-cast-byline {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--rr-line);
  color: var(--rr-cream);
  transition: border-color .3s ease, color .3s ease, transform .3s var(--rr-ease);
}

.rr-cast-directory a {
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
}

.rr-cast-directory a span {
  color: var(--rr-gold);
  font-family: "Playfair Display", serif;
  font-size: var(--rr-fs-xs);
  letter-spacing: .12em;
}

.rr-cast-directory a:hover,
.rr-cast-profile-link:hover,
.rr-cast-byline:hover {
  border-color: var(--rr-gold);
  color: var(--rr-gold-light);
  transform: translateY(-2px);
}

.rr-cast-profile-link {
  margin-top: var(--rr-sp-s);
  padding: .6rem 0;
  border-width: 0 0 1px;
  font-size: var(--rr-fs-sm);
  letter-spacing: .08em;
}

.rr-cast-byline {
  gap: .65rem;
  width: fit-content;
  margin-bottom: var(--rr-sp-s);
  padding: .55rem .85rem;
  border-radius: 999px;
  font-size: var(--rr-fs-sm);
}

.rr-cast-byline span {
  color: var(--rr-gold);
  font-family: "Playfair Display", serif;
  letter-spacing: .12em;
}

.rr-card-title {
  margin: 0;
  color: var(--rr-cream);
  font-size: var(--rr-fs-md);
  line-height: 1.55;
}

.rr-card-excerpt {
  margin: var(--rr-sp-s) 0 0;
  color: var(--rr-muted);
  font-size: var(--rr-fs-sm);
  line-height: 1.85;
  text-wrap: pretty;
}

.rr-card-more {
  margin-top: auto;
  padding-top: var(--rr-sp-m);
  color: var(--rr-gold-light);
  font-size: var(--rr-fs-xs);
  letter-spacing: .13em;
}

.rr-empty {
  grid-column: 1 / -1;
  padding: clamp(2.5rem, 8vw, 5rem);
  border: 1px solid var(--rr-line-soft);
  text-align: center;
  background: rgba(26, 21, 29, .6);
}

.rr-empty h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: var(--rr-fs-lg);
}

.rr-empty p {
  margin: var(--rr-sp-s) auto 0;
  color: var(--rr-muted);
}

.rr-pagination {
  margin-top: var(--rr-sp-xl);
}

.rr-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.rr-pagination .page-numbers {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rr-line);
  color: var(--rr-muted);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.rr-pagination .page-numbers:hover,
.rr-pagination .current {
  border-color: var(--rr-gold);
  color: var(--rr-ink);
  background: var(--rr-gold-light);
}

.rr-breadcrumbs {
  padding-block: 1rem;
  border-bottom: 1px solid var(--rr-line-soft);
  color: var(--rr-muted-soft);
  font-size: var(--rr-fs-xs);
}

.rr-breadcrumbs a {
  color: var(--rr-gold-light);
}

.rr-article-header {
  padding: clamp(4rem, 8vw, 7rem) 0 var(--rr-sp-xl);
  text-align: center;
}

.rr-article-header h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: var(--rr-fs-xl);
  line-height: 1.45;
  letter-spacing: .04em;
  text-wrap: balance;
}

.rr-article-meta {
  margin-top: var(--rr-sp-m);
  color: var(--rr-muted);
  font-family: "Playfair Display", serif;
  font-size: var(--rr-fs-sm);
  letter-spacing: .14em;
}

.rr-article-hero {
  width: min(100%, calc(1100px + (var(--rr-gutter) * 2)));
  margin: 0 auto var(--rr-sp-xl);
  padding-inline: var(--rr-gutter);
}

.rr-article-hero img {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  object-fit: cover;
}

.rr-entry {
  color: rgba(243, 234, 217, .86);
  overflow-wrap: anywhere;
}

.rr-entry > * {
  margin-block: 0 1.65em;
}

.rr-entry p,
.rr-entry li {
  line-height: 2;
  text-wrap: pretty;
}

.rr-entry h2 {
  margin-top: 2.4em;
  padding-bottom: .65em;
  border-bottom: 1px solid var(--rr-line);
  color: var(--rr-cream);
  font-size: var(--rr-fs-lg);
  line-height: 1.55;
}

.rr-entry h3 {
  margin-top: 2em;
  color: var(--rr-gold-light);
  font-size: var(--rr-fs-md);
  line-height: 1.6;
}

.rr-entry a {
  color: var(--rr-gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(230, 200, 119, .45);
  text-underline-offset: .24em;
}

.rr-entry ul,
.rr-entry ol {
  padding-left: 1.5em;
}

.rr-entry blockquote {
  margin-inline: 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--rr-rose-soft);
  color: var(--rr-muted);
  background: rgba(36, 27, 38, .68);
}

.rr-entry img {
  border-radius: var(--rr-radius);
}

.rr-entry figcaption {
  margin-top: .65rem;
  color: var(--rr-muted-soft);
  font-size: var(--rr-fs-xs);
  text-align: center;
}

.rr-entry table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--rr-fs-sm);
}

.rr-entry th,
.rr-entry td {
  padding: .85rem;
  border: 1px solid var(--rr-line);
  text-align: left;
}

.rr-entry th {
  color: var(--rr-gold-light);
  background: var(--rr-ink-3);
}

.rr-share {
  margin-top: var(--rr-sp-xl);
  padding-top: var(--rr-sp-l);
  border-top: 1px solid var(--rr-line);
}

.rr-share-title {
  margin: 0 0 var(--rr-sp-s);
  color: var(--rr-muted);
  font-size: var(--rr-fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.rr-share-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.rr-share-links a,
.rr-share-links button,
.rr-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.1rem;
  border: 1px solid var(--rr-line);
  border-radius: 999px;
  color: var(--rr-muted);
  background: rgba(26, 21, 29, .74);
  cursor: pointer;
  font-size: var(--rr-fs-xs);
  letter-spacing: .08em;
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--rr-ease);
}

.rr-share-links a:hover,
.rr-share-links button:hover,
.rr-button:hover {
  border-color: var(--rr-gold);
  color: var(--rr-cream);
  transform: translateY(-2px);
}

.rr-share-links .rr-line-share {
  border-color: rgba(6, 199, 85, .44);
  color: #8cf1ad;
  background: rgba(6, 199, 85, .09);
}

.rr-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--rr-sp-xl);
  border: 1px solid var(--rr-line-soft);
  background: var(--rr-line-soft);
}

.rr-post-nav a {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--rr-sp-m);
  background: var(--rr-ink-2);
  transition: background .3s ease;
}

.rr-post-nav a:hover {
  background: var(--rr-ink-3);
}

.rr-post-nav small {
  color: var(--rr-gold-light);
  font-size: var(--rr-fs-xs);
  letter-spacing: .14em;
}

.rr-post-nav span {
  margin-top: .5rem;
  color: var(--rr-muted);
  font-family: "Noto Serif JP", serif;
}

.rr-related {
  padding-block: var(--rr-section);
  border-top: 1px solid var(--rr-line-soft);
}

.rr-footer {
  padding: var(--rr-sp-xl) 0 var(--rr-sp-l);
  border-top: 1px solid var(--rr-line);
  background: #100e11;
}

.rr-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rr-sp-l);
}

.rr-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Playfair Display", serif;
  font-size: var(--rr-fs-md);
  letter-spacing: .13em;
}

.rr-footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.rr-footer-meta {
  color: var(--rr-muted);
  font-size: var(--rr-fs-xs);
  line-height: 1.9;
  text-align: right;
}

.rr-footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: var(--rr-sp-l);
  padding-top: var(--rr-sp-m);
  border-top: 1px solid var(--rr-line-soft);
  color: var(--rr-muted);
  font-size: var(--rr-fs-xs);
  flex-wrap: wrap;
}

.rr-footer-links a:hover {
  color: var(--rr-gold-light);
}

.rr-copyright {
  margin: var(--rr-sp-l) 0 0;
  color: var(--rr-muted-soft);
  font-family: "Playfair Display", serif;
  font-size: .65rem;
  letter-spacing: .16em;
  text-align: center;
}

.rr-404 {
  min-height: 64svh;
  display: grid;
  place-items: center;
  padding-block: var(--rr-section);
  text-align: center;
}

.rr-404 strong {
  display: block;
  color: var(--rr-rose-soft);
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 20vw, 10rem);
  line-height: 1;
}

.rr-404 h1 {
  margin: 1rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: var(--rr-fs-lg);
}

.rr-404 p {
  margin: 0 0 var(--rr-sp-m);
  color: var(--rr-muted);
}

@media (max-width: 900px) {
  .rr-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-nav {
    position: fixed;
    inset: 75px 0 auto;
    max-height: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(18, 16, 20, .98);
    transition: max-height .45s var(--rr-ease), border-color .3s ease;
  }

  body.admin-bar .rr-nav {
    top: 107px;
  }

  .rr-menu-open .rr-nav {
    max-height: 460px;
    border-bottom-color: var(--rr-line);
  }

  .rr-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding-inline: var(--rr-gutter);
    border-top: 1px solid var(--rr-line-soft);
  }

  .rr-nav a::after {
    display: none;
  }

  .rr-menu-button {
    display: block;
  }
}

@media (max-width: 782px) {
  body.admin-bar .rr-header { top: 46px; }
  body.admin-bar .rr-nav { top: 121px; }
}

@media (max-width: 680px) {
  .rr-header-inner {
    min-height: 68px;
  }

  .rr-brand small {
    display: none;
  }

  .rr-nav {
    top: 69px;
  }

  body.admin-bar .rr-nav {
    top: 115px;
  }

  .rr-hero {
    min-height: 400px;
  }

  .rr-card-grid {
    grid-template-columns: 1fr;
  }

  .rr-section-head,
  .rr-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .rr-footer-meta {
    text-align: left;
  }

  .rr-post-nav {
    grid-template-columns: 1fr;
  }

  .rr-entry table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
