body.page-records {
  --records-bg: #f6f3ee;
  --records-ink: #151515;
  --records-muted: #6d665f;
  --records-line: rgba(21, 21, 21, 0.14);
  --records-line-strong: rgba(21, 21, 21, 0.28);
  --records-paper: rgba(255, 252, 246, 0.86);
  --records-green: #245b49;
  --records-red: #8f4b39;
  --records-blue: #2f556f;
  --records-violet: #5d4e76;
  background: var(--records-bg);
  overflow-x: hidden;
}

body.page-records > .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  color: #fffaf0;
  backdrop-filter: none;
}

body.page-records .site-header__inner {
  max-width: 1280px;
  padding-top: 22px;
}

body.page-records .site-brand,
body.page-records .site-nav a {
  color: rgba(255, 250, 240, 0.9);
}

body.page-records .site-nav a:hover,
body.page-records .site-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.page-records .cof-page {
  width: 100%;
  padding: 0 0 68px;
}

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

.records-page img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.records-page a {
  color: inherit;
}

.records-hero {
  --records-accent: var(--records-green);
  --records-hero-position: center;
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(690px, 86svh);
  margin: 0 0 clamp(32px, 5vw, 60px);
  overflow: hidden;
  isolation: isolate;
  color: #fffaf0;
  background: #16130f;
}

.records-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 30%, rgba(143, 75, 57, 0.32), transparent 34%),
    linear-gradient(135deg, #17130f, #2c2923);
}

.records-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: var(--records-hero-position);
  filter: saturate(0.88) contrast(1.05);
  opacity: 0.92;
}

.records-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 15, 13, 0.88) 0%, rgba(17, 15, 13, 0.64) 45%, rgba(17, 15, 13, 0.2) 82%),
    linear-gradient(180deg, rgba(17, 15, 13, 0.62) 0%, rgba(17, 15, 13, 0.1) 42%, rgba(17, 15, 13, 0.84) 100%);
}

.records-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--records-accent), rgba(255, 250, 240, 0.1));
}

.records-hero__content {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 128px 0 44px;
}

.records-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(52px, 9vh, 94px);
}

.records-hero__quick a,
.records-type-chip,
.records-section-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.records-hero__quick a {
  padding: 7px 13px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(10px);
}

.records-hero__quick a:hover,
.records-hero__quick a:focus-visible {
  border-color: rgba(255, 250, 240, 0.5);
  background: rgba(255, 250, 240, 0.16);
}

.records-hero .cof-page__eyebrow {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.records-hero .cof-page__title {
  max-width: 980px;
  margin: 14px 0 0;
  color: #fffaf0;
  font-family: "Cormorant Garamond", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.records-hero__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.records-hero__summary span + span::before {
  content: "/";
  margin-right: 18px;
  color: rgba(255, 250, 240, 0.34);
}

.records-page--entry .records-hero {
  min-height: clamp(340px, 46svh, 470px);
  margin-bottom: clamp(30px, 4vw, 48px);
}

.records-page--entry .records-hero__content {
  padding: clamp(86px, 12vw, 126px) 0 clamp(32px, 5vw, 44px);
}

.records-page--entry .records-hero__quick {
  margin-bottom: clamp(36px, 6vh, 64px);
}

.records-page--entry .records-hero .cof-page__title {
  max-width: 820px;
  font-family: inherit;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.16;
}

.records-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 7px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.14);
  backdrop-filter: blur(18px);
}

.records-search input[type="search"] {
  min-width: 0;
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 250, 240, 0.94);
  color: var(--records-ink);
  font-size: 15px;
}

.records-search input::placeholder {
  color: #79716a;
}

body.page-records .records-search .btn {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--records-ink);
}

body.page-records .records-search .btn-primary {
  min-width: 84px;
  justify-content: center;
  background: var(--records-accent);
  color: #ffffff;
}

body.page-records .records-search .btn:hover,
body.page-records .records-search .btn-primary:hover {
  background: #ffffff;
  color: var(--records-ink);
}

.records-filterbar {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 24px;
}

.records-type-nav,
.records-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.records-type-chip,
.records-section-chip {
  padding: 7px 11px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.82);
  backdrop-filter: blur(10px);
}

.records-type-chip:hover,
.records-type-chip.is-active,
.records-section-chip:hover,
.records-section-chip.is-active {
  border-color: rgba(255, 250, 240, 0.58);
  background: rgba(255, 250, 240, 0.18);
  color: #ffffff;
}

.records-visual--blog {
  --records-accent: #b16b42;
  --records-hero-position: 52% 34%;
}

.records-visual--note {
  --records-accent: #6f8d64;
  --records-hero-position: 45% 24%;
}

.records-visual--ndc {
  --records-accent: #597d7c;
}

.records-visual--language {
  --records-accent: #5d4e76;
}

.records-visual--greek-book {
  --records-accent: #5d4e76;
}

.records-visual--latin-book {
  --records-accent: #2f556f;
}

.records-visual--komiya {
  --records-accent: #c72c2c;
}

.records-visual--worlds {
  --records-accent: #8f4b62;
  --records-hero-position: center;
}

.records-visual--diary {
  --records-accent: #4f6f8f;
  --records-hero-position: center;
}

.records-visual--other {
  --records-accent: #56663f;
}

.records-visual--custom {
  --records-accent: #245b49;
  --records-hero-position: center;
}

.records-hero.records-visual--ndc .records-hero__media img,
.records-hero.records-visual--language .records-hero__media img,
.records-hero.records-visual--komiya .records-hero__media img,
.records-hero.records-visual--other .records-hero__media img {
  width: 70%;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
  padding: clamp(72px, 10vw, 130px) clamp(28px, 8vw, 110px) clamp(44px, 8vw, 92px) 0;
  filter: invert(1) saturate(0) contrast(1.5);
  opacity: 0.26;
}

.records-hero.records-visual--komiya .records-hero__media img {
  filter: saturate(1.1) contrast(1.05);
  opacity: 0.34;
}

.records-hero.records-visual--greek-book .records-hero__media,
.records-hero.records-visual--latin-book .records-hero__media {
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 250, 240, 0.18), transparent 28%),
    linear-gradient(135deg, #17130f, #2d2923);
}

.records-hero.records-visual--greek-book .records-hero__media img,
.records-hero.records-visual--latin-book .records-hero__media img {
  width: min(52vw, 520px);
  height: 100%;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
  padding: clamp(74px, 10vw, 126px) clamp(30px, 8vw, 96px) clamp(36px, 6vw, 76px) 0;
  filter: saturate(0.9) contrast(1.04);
  opacity: 0.68;
}

.records-layout,
.records-layout--list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.records-layout > .cof-card,
.records-layout--list > .cof-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.records-list,
.records-side__list {
  display: grid;
  gap: 0;
}

.records-list {
  border-top: 1px solid var(--records-line-strong);
}

.records-item {
  --records-accent: var(--records-green);
  position: relative;
  display: grid;
  grid-template-columns: clamp(124px, 16vw, 184px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--records-line);
}

.records-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--records-accent);
  opacity: 0;
  transition: opacity 0.16s ease;
}

.records-item:hover::before {
  opacity: 1;
}

.records-item__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  margin-left: 13px;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(232, 229, 220, 0.88)),
    var(--records-paper);
  text-decoration: none;
}

.records-item__thumb::after,
.records-side__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(21, 21, 21, 0.12);
  pointer-events: none;
}

.records-item__thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 0.22s ease;
}

.records-item:hover .records-item__thumb img {
  transform: scale(1.035);
}

.records-item__body {
  min-width: 0;
}

.records-item__meta,
.records-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--records-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.records-pill {
  display: inline-flex;
  align-items: center;
  color: var(--records-accent);
}

.records-item__title {
  display: inline-block;
  max-width: 100%;
  margin: 8px 0 0;
  color: var(--records-ink);
  font-family: inherit;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.34;
  text-decoration: none;
  transition: color 0.16s ease, transform 0.16s ease;
  overflow-wrap: anywhere;
}

.records-item__title:hover,
.records-entry__back a:hover,
.records-side__item:hover strong,
.records-entry h2 a:hover {
  color: var(--records-accent);
}

.records-item:hover .records-item__title {
  transform: translateX(3px);
}

.records-item__excerpt {
  max-width: 74ch;
  margin: 8px 0 0;
  color: var(--records-muted);
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.records-visual--ndc .records-item__thumb img,
.records-visual--language .records-item__thumb img,
.records-visual--komiya .records-item__thumb img,
.records-visual--other .records-item__thumb img,
.records-visual--ndc .records-side__thumb img,
.records-visual--language .records-side__thumb img,
.records-visual--komiya .records-side__thumb img,
.records-visual--other .records-side__thumb img {
  object-fit: contain;
  padding: 12%;
  filter: saturate(0.8) contrast(1.08);
}

.records-visual--komiya .records-item__thumb img,
.records-visual--komiya .records-side__thumb img {
  padding: 4%;
}

.records-visual--greek-book .records-item__thumb,
.records-visual--latin-book .records-item__thumb,
.records-visual--greek-book .records-side__thumb,
.records-visual--latin-book .records-side__thumb {
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(229, 224, 215, 0.9)),
    rgba(255, 252, 246, 0.9);
}

.records-visual--greek-book .records-item__thumb img,
.records-visual--latin-book .records-item__thumb img,
.records-visual--greek-book .records-side__thumb img,
.records-visual--latin-book .records-side__thumb img {
  object-fit: cover;
  padding: 0;
  filter: saturate(0.92) contrast(1.03);
}

.records-visual--greek-book .records-item__thumb img,
.records-visual--greek-book .records-side__thumb img {
  object-position: 50% 1%;
}

.records-visual--latin-book .records-item__thumb img,
.records-visual--latin-book .records-side__thumb img {
  /* width: 125%; */
  max-width: none;
  object-position: 50% 98%;
}

.records-visual--diary .records-item__thumb img,
.records-visual--diary .records-side__thumb img {
  object-fit: cover;
  padding: 0;
  filter: saturate(0.9) contrast(1.04);
}

.records-entry {
  max-width: none;
}

.records-entry__back {
  margin: 0 0 18px;
}

.records-entry__back a,
.records-entry__tags a,
.records-tags a {
  color: var(--records-green);
  font-weight: 800;
  text-decoration: none;
}

.records-entry h2 {
  margin: 16px 0 0;
  color: var(--records-ink);
  font-family: inherit;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.18;
  font-weight: 800;
}

.records-entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 16px 0 0;
  color: var(--records-muted);
  font-size: 13px;
}

.records-entry__content {
  margin-top: clamp(28px, 4vw, 44px);
}

.records-entry__content.post {
  max-width: min(100%, 40em);
  color: var(--records-ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-size: clamp(1.05rem, 0.98rem + 0.25vw, 1.18rem);
  line-height: 1.9;
  letter-spacing: 0;
  text-align: start;
}

.records-entry__content h1,
.records-entry__content h2,
.records-entry__content h3 {
  color: var(--records-ink);
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.records-entry__content h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 1.38rem + 1.3vw, 2.35rem);
}

.records-entry__content h2 {
  margin: 2.2em 0 0.65em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--records-line);
  font-size: clamp(1.35rem, 1.18rem + 0.7vw, 1.72rem);
}

.records-entry__content h3 {
  margin: 1.7em 0 0.5em;
  font-size: clamp(1.12rem, 1.04rem + 0.35vw, 1.28rem);
}

.records-entry__content p,
.records-entry__content li,
.records-entry__content td,
.records-entry__content th {
  color: var(--records-ink);
  overflow-wrap: anywhere;
}

.records-entry__content p {
  margin: 0 0 1.15em;
}

.records-entry__content ul,
.records-entry__content ol {
  margin: 1em 0 1.35em;
  padding-left: 1.35em;
}

.records-entry__content li + li {
  margin-top: 0.35em;
}

.records-entry__content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.35rem 0 1.6rem;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.95em;
  line-height: 1.65;
}

.records-entry__content th,
.records-entry__content td {
  padding: 0.7em 0.8em;
  border: 1px solid var(--records-line);
  vertical-align: top;
}

.records-entry__content th {
  background: rgba(255, 252, 246, 0.78);
  font-weight: 800;
}

.records-entry__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.records-entry__content a {
  color: var(--records-green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.records-entry__content blockquote {
  margin: 1.4rem 0;
  padding: 0.35rem 0 0.35rem 1.1rem;
  border-left: 3px solid var(--records-line-strong);
  color: var(--records-muted);
}

.records-entry__content pre {
  padding: 1rem 1.1rem;
  overflow: auto;
  border: 1px solid var(--records-line);
  border-radius: 2px;
  background: rgba(255, 252, 246, 0.76);
  line-height: 1.65;
}

.records-entry__content code {
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  background: rgba(21, 21, 21, 0.06);
  font-size: 0.92em;
}

.records-entry__content .study-answer {
  display: grid;
  gap: 18px;
}

.records-entry__content .study-answer__meta,
.records-entry__content .study-answer__small {
  color: var(--records-muted);
}

.records-entry__content .study-answer__panel,
.records-entry__content .study-answer__item,
.records-entry__content .study-answer details {
  border: 1px solid var(--records-line);
  border-radius: 2px;
  background: rgba(255, 252, 246, 0.78);
}

.records-entry__content .study-answer__panel,
.records-entry__content .study-answer__item {
  padding: 18px;
}

.records-entry__content .study-answer details {
  margin: 0.7rem 0 0;
  padding: 0.7rem 0.85rem;
}

.records-entry__content .study-answer summary {
  cursor: pointer;
  color: var(--records-ink);
}

.records-entry__content .study-answer__gloss {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.records-entry__content .study-answer__gloss li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--records-line);
  word-break: break-word;
}

.records-entry__content .study-answer__gloss li:last-child {
  border-bottom: none;
}

.records-entry__content .study-answer__label {
  display: inline-block;
  min-width: 6.2em;
  color: var(--records-muted);
}

.records-entry__content .study-answer__lang {
  font-family: "New Athena Unicode", "Noto Serif", "Times New Roman", serif;
}

.records-entry__pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--records-line);
}

.records-entry__nav {
  display: grid;
  gap: 7px;
  padding: 14px 0;
  border-top: 1px solid var(--records-line);
  color: var(--records-ink);
  text-decoration: none;
}

.records-entry__nav span {
  color: var(--records-muted);
  font-size: 12px;
  font-weight: 800;
}

.records-entry__nav--next {
  text-align: right;
}

.records-layout > .records-side,
.records-layout--list > .records-side,
.records-side {
  position: sticky;
  top: 92px;
  padding: 0 0 0 22px;
  border-left: 1px solid var(--records-line);
  background: transparent;
}

.records-side h3,
.records-tagbox h4 {
  margin: 0 0 14px;
  color: var(--records-ink);
  font-family: inherit;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.records-side__item {
  --records-accent: var(--records-green);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--records-line);
  color: var(--records-muted);
  text-decoration: none;
}

.records-side__item:first-child {
  border-top: 1px solid var(--records-line-strong);
}

.records-side__item.is-active {
  color: var(--records-ink);
}

.records-side__thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 252, 246, 0.82);
}

.records-side__thumb img {
  height: 100%;
  object-fit: cover;
}

.records-side__text {
  min-width: 0;
}

.records-side__item strong {
  display: block;
  color: var(--records-ink);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.records-side__type {
  display: block;
  margin-bottom: 4px;
  color: var(--records-accent);
  font-size: 11px;
  font-weight: 800;
}

.records-kpi {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--records-line-strong);
}

.records-kpi div {
  padding: 14px 0;
  border-bottom: 1px solid var(--records-line);
}

.records-kpi strong {
  display: block;
  color: var(--records-ink);
  font-size: 19px;
  line-height: 1.35;
}

.records-kpi span {
  display: block;
  margin-top: 4px;
  color: var(--records-muted);
  font-size: 12px;
}

.records-tagbox {
  margin-top: 28px;
}

.records-sections,
.records-tags {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--records-line-strong);
}

.records-sections a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--records-line);
  color: var(--records-ink);
  text-decoration: none;
}

.records-sections a.is-active,
.records-sections a:hover {
  color: var(--records-green);
}

.records-sections a span {
  color: var(--records-muted);
  font-size: 12px;
}

.records-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.records-tags a {
  font-size: 13px;
}

.records-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--records-line);
}

.records-pagination__count,
.records-empty {
  color: var(--records-muted);
}

.records-pagination__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1080px) {
  .records-layout,
  .records-layout--list {
    grid-template-columns: 1fr;
  }

  .records-side {
    position: static;
    padding-left: 0;
    border-left: 0;
  }

  .records-side__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}

@media (max-width: 980px) {
  body.page-records > .site-header {
    position: relative;
    border-bottom: 0;
    background: #151515;
    color: #fffaf0;
  }

  body.page-records .site-header__inner {
    padding-top: 12px;
  }

  .records-hero {
    min-height: 650px;
  }

  .records-hero__content {
    padding-top: 34px;
  }

  .records-hero__quick {
    margin-bottom: 120px;
  }
}

@media (max-width: 720px) {
  .records-hero {
    min-height: 680px;
    margin-bottom: 34px;
  }

  .records-hero::before {
    background:
      linear-gradient(180deg, rgba(17, 15, 13, 0.86) 0%, rgba(17, 15, 13, 0.46) 34%, rgba(17, 15, 13, 0.9) 100%),
      linear-gradient(90deg, rgba(17, 15, 13, 0.72), rgba(17, 15, 13, 0.2));
  }

  .records-hero__content,
  .records-layout,
  .records-layout--list {
    width: min(100% - 32px, 1180px);
  }

  .records-hero__content {
    padding-bottom: 32px;
  }

  .records-hero .cof-page__title {
    font-size: clamp(40px, 12vw, 62px);
  }

  .records-hero__summary {
    display: grid;
    gap: 5px;
  }

  .records-hero__summary span + span::before {
    content: none;
  }

  .records-search {
    grid-template-columns: 1fr;
    max-width: none;
    border-radius: 24px;
  }

  .records-search input[type="search"],
  .records-search .btn {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
  }

  .records-type-nav,
  .records-section-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .records-type-chip,
  .records-section-chip {
    flex: 0 0 auto;
  }

  .records-hero.records-visual--ndc .records-hero__media img,
  .records-hero.records-visual--language .records-hero__media img,
  .records-hero.records-visual--komiya .records-hero__media img,
  .records-hero.records-visual--other .records-hero__media img {
    width: 92%;
    padding: 80px 20px 120px;
    opacity: 0.22;
  }

  .records-hero.records-visual--greek-book .records-hero__media img,
  .records-hero.records-visual--latin-book .records-hero__media img {
    width: 86%;
    padding: 70px 20px 118px;
    opacity: 0.34;
  }

  .records-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
  }

  .records-item__thumb {
    aspect-ratio: 1;
    margin-left: 9px;
  }

  .records-item__title {
    font-size: clamp(17px, 5vw, 22px);
  }

  .records-item__excerpt {
    display: none;
  }

  .records-side__list {
    grid-template-columns: 1fr;
  }

  .records-entry__pager {
    grid-template-columns: 1fr;
  }

  .records-entry__nav--next {
    text-align: left;
  }
}
