@charset "UTF-8";
/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font-weight: 400;
  font-family: "EB Garamond";
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01rem;
  color: rgb(66.25, 66.25, 66.25);
  background-color: #fafafa;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 13.5px;
  color: #828282;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #6d88a5;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 20.25px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 16.875px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(800px - (30px * 2));
  max-width: calc(800px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(800px - (30px));
    max-width: calc(800px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.footer-col-wrapper:after, .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #828282;
  padding-right: 5px;
  vertical-align: text-top;
}

.social-media-list li + li {
  padding-top: 5px;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: rgb(112.15, 112.15, 112.15);
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
}
table tr:nth-child(even) {
  background-color: rgb(247.3, 247.3, 247.3);
}
table th, table td {
  padding: 10px 15px;
}
table th {
  background-color: rgb(239.65, 239.65, 239.65);
  border: 1px solid rgb(221.8, 221.8, 221.8);
  border-bottom-color: rgb(201.4, 201.4, 201.4);
}
table td {
  border: 1px solid #e8e8e8;
}

.footnote {
  text-decoration: none;
}

#footnotediv {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 5px;
  z-index: 1000;
  color: var(--text-primary);
}

#footnotediv p {
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/**
 * Site header
 */
.site-header {
  border-bottom: 1px solid #e8e8e8;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 29.25px;
  font-weight: 300;
  line-height: 60.75px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
  color: var(--text-primary) !important;
  text-decoration: none;
}
.site-title:hover, .site-title:visited {
  color: var(--text-primary) !important;
  text-decoration: none;
}

.site-nav {
  float: right;
  line-height: 60.75px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: var(--text-primary) !important;
  text-decoration: none;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
.site-nav .page-link:hover {
  color: var(--text-primary) !important;
  text-decoration: underline;
}
.site-nav .page-link:visited {
  color: var(--text-primary) !important;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    text-align: left;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: var(--text-primary);
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 12px;
    padding-top: 8px;
  }
  .site-nav .page-link {
    display: block;
    padding: 10px 16px;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
  }
  .site-nav .page-link:hover {
    background-color: var(--bg-primary);
  }
  .site-nav .page-link:last-child {
    border-bottom: none;
  }
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 15px 0;
}

.footer-heading {
  font-size: 20.25px;
  margin-bottom: 15px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 14.4px;
  color: #828282;
  margin-left: -15px;
}

.footer-col {
  float: left;
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1 {
  width: -webkit-calc(35% - (30px / 2));
  width: calc(35% - 30px / 2);
}

.footer-col-2 {
  width: -webkit-calc(20% - (30px / 2));
  width: calc(20% - 30px / 2);
}

.footer-col-3 {
  width: -webkit-calc(45% - (30px / 2));
  width: calc(45% - 30px / 2);
}

@media screen and (max-width: 800px) {
  .footer-col-1,
  .footer-col-2 {
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - 30px / 2);
  }
  .footer-col-3 {
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
@media screen and (max-width: 600px) {
  .footer-col {
    float: none;
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1;
}

.page-heading {
  font-size: 31.5px;
}

.post-list-heading {
  font-size: 31.5px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 15.75px;
  color: #828282;
}

.post-link {
  font-size: 27px;
}

.note-link {
  font-size: 18px;
}

.note-list {
  margin-left: 0;
  list-style: none;
}
.note-list > li {
  margin-bottom: 0.6em;
}
.note-list h3 {
  display: inline;
  line-height: 1;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 3em;
  text-align: center;
}
.post-header:after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--text-primary, #e8e8e8);
  margin: 2rem auto 0;
}

.post-title {
  font-size: 43.2px;
  letter-spacing: 0.03rem;
  line-height: 1.2;
  font-weight: 500;
}

.post-meta {
  font-size: 15.75px;
  color: #828282;
}

.post-content {
  margin-bottom: 30px;
  text-align: justify;
  line-height: 1.7;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  text-align: left;
}
.post-content h2 {
  font-size: 32.4px;
  margin-top: 2rem;
  padding-bottom: 0.2rem;
  font-weight: 450;
}
.post-content h3 {
  font-size: 27px;
  margin-top: 2rem;
  padding-bottom: 0.2rem;
  font-weight: 500;
}
.post-content h4 {
  font-size: 21.6px;
  margin-top: 2rem;
  padding-bottom: 0.2rem;
  font-weight: 500;
}

.contact-list a {
  display: flex;
  align-items: center;
}

.contact-list svg {
  margin-right: 5px;
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

.toc-sidebar {
  position: fixed;
  left: 0;
  top: 60px;
  width: 220px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 40px;
  font-size: 14px;
}
@media screen and (max-width: 1320px) {
  .toc-sidebar {
    display: none;
  }
}
.toc-sidebar .toc-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.toc-sidebar .toc-title .toc-title-link {
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.65 !important;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.toc-sidebar .toc-title .toc-title-link:hover {
  color: var(--accent);
  opacity: 1 !important;
}
.toc-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-sidebar ul li {
  margin: 5px 0;
}
.toc-sidebar ul li a {
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease, border-left 0.2s ease;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 8px;
  margin-left: -10px;
  line-height: 1.1; /* Controls spacing between wrapped lines */
  margin-bottom: 0.75em; /* Creates additional space between paragraphs */
}
.toc-sidebar ul li a:hover, .toc-sidebar ul li a:target {
  color: var(--accent);
  opacity: 1;
}
.toc-sidebar ul li a.active-toc-link {
  opacity: 1 !important;
  color: var(--accent) !important;
  border-left: 2px solid var(--accent);
  padding-left: 8px;
}
.toc-sidebar ul li ul {
  margin-left: 10px;
}
.toc-sidebar ul li ul li {
  margin: 3px 0;
}
.toc-sidebar ul li ul li a {
  font-size: 0.95em;
  opacity: 0.65;
  line-height: 1.1; /* Controls spacing between wrapped lines */
}
.toc-sidebar ul li ul li a.active-toc-link {
  opacity: 0.95 !important;
}
.toc-sidebar ul li ul li ul {
  margin-left: 8px;
}
.toc-sidebar ul li ul li ul li {
  margin: 2px 0;
}
.toc-sidebar ul li ul li ul li a {
  font-size: 0.9em;
  opacity: 0.65;
  line-height: 1.1; /* Controls spacing between wrapped lines */
}
.toc-sidebar ul li ul li ul li a.active-toc-link {
  opacity: 0.9 !important;
}

.toc {
  margin-bottom: 2em;
}
.toc ul {
  list-style: none;
  padding-left: 1em;
}
.toc .toc-item {
  margin: 0.5em 0;
}
.toc .toc-link {
  color: var(--text-primary);
  text-decoration: none;
}
.toc .toc-link:hover {
  color: var(--accent);
}

.page-toc {
  margin: 2em 0;
  padding: 1em;
}
.page-toc ul {
  margin: 0;
  padding-left: 1.5em;
}
.page-toc ul li {
  margin: 0.5em 0;
}
.page-toc ul li a {
  text-decoration: none;
  color: var(--text-primary);
}
.page-toc ul li a:hover {
  color: var(--accent);
}

:target + .toc-sidebar a[href*=""] {
  opacity: 1 !important;
  color: var(--accent) !important;
}

.albums-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.album {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 33px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background-color: rgb(244.9, 244.9, 244.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.album-cover {
  flex: 0 0 180px;
  display: block;
  position: relative;
}
.album-cover img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.album-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.album-header {
  margin-bottom: 15px;
}

.album-title {
  font-weight: 600;
  font-size: 23.4px;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.album-subtitle {
  font-size: 16.2px;
  line-height: 1.3;
  opacity: 0.9;
  font-weight: normal;
  margin: 0;
  display: flex;
  align-items: center;
  color: rgb(66.25, 66.25, 66.25);
}

.album-artist {
  font-size: 16.2px;
  position: relative;
}

.album-year {
  margin-left: 12px;
  font-size: 16.2px;
  position: relative;
}
.album-year::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: rgb(66.25, 66.25, 66.25);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}

.section-title {
  font-size: 16.2px;
  margin-bottom: 5px;
  color: rgb(66.25, 66.25, 66.25);
  opacity: 0.9;
}

.personnel-section {
  margin: 4.5px 0;
}

.personnel-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.personnel-item {
  font-size: 13.5px;
  color: #828282;
  display: inline;
  line-height: 1.8;
  position: relative;
  padding: 0 16px 0 0;
}
.personnel-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 9px;
  height: 12px;
  width: 1px;
  background-color: #828282;
}
.personnel-item:last-child {
  padding-right: 0;
}

.favorite-track {
  display: flex;
  flex-direction: column;
  margin-top: 4.5px;
  color: rgb(104.5, 104.5, 104.5);
}

.track-container {
  display: flex;
  align-items: center;
  color: #828282;
}

.track-title {
  font-size: 15.3px;
  color: #828282 !important;
  margin-right: 12px;
  opacity: 1 !important;
}

.track-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.track-link {
  width: 18px;
  height: 18px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  filter: invert(0);
}
.track-link:hover {
  opacity: 0.7;
}

[data-theme=dark] .track-link {
  filter: invert(1);
  opacity: 0.5;
}
[data-theme=dark] .track-link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 600px) {
  .album {
    padding: 22.5px 24px;
  }
  .album-cover {
    flex: 0 0 140px;
  }
  .album-title {
    font-size: 22.5px;
  }
}
@media screen and (max-width: 600px) {
  .album {
    flex-direction: column;
    gap: 22.5px;
    padding: 19.5px;
  }
  .album-cover {
    flex: 0 0 auto;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  .album-details {
    width: 100%;
  }
  .personnel-list {
    flex-direction: column;
    gap: 6px;
  }
  .personnel-item {
    display: block;
    padding: 0;
    line-height: 1.5;
  }
  .personnel-item:not(:last-child)::after {
    display: none;
  }
  .personnel-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 6px;
  }
}
:root {
  --body-font-size: 19px;
  --body-line-height: 1.65;
  --body-letter-spacing: 0.01rem;
  --spacing-unit: 35px;
  --content-width: 780px;
  --heading-margin-top: 2em;
  --heading-margin-bottom: 1em;
}

[data-theme=warm-light],
:root {
  --bg-primary: #f5f0e3;
  --bg-card: #e8e3d5;
  --text-primary: #4a5459;
  --text-secondary: #586e75;
  --border-color: #d3cdb8;
  --border-light: #ded8c9;
  --accent: #b5632d;
  --shadow: rgba(0, 0, 0, 0.04);
}

[data-theme=dark] {
  --bg-primary: #002b36;
  --bg-card: #073642;
  --text-primary: #839496;
  --text-secondary: #657b83;
  --border-color: #0d4552;
  --border-light: #073642;
  --accent: #5c9db8;
  --shadow: rgba(0, 0, 0, 0.2);
}

body {
  font-size: var(--body-font-size) !important;
  line-height: var(--body-line-height) !important;
  letter-spacing: var(--body-letter-spacing) !important;
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

a {
  color: var(--accent) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary) !important;
  margin-top: var(--heading-margin-top) !important;
  margin-bottom: var(--heading-margin-bottom) !important;
}
h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type {
  margin-top: 1em !important;
}

.wrapper {
  max-width: calc(var(--content-width) - var(--spacing-unit) * 2) !important;
  padding-right: var(--spacing-unit) !important;
  padding-left: var(--spacing-unit) !important;
}

p, blockquote, pre, ul, ol, dl, figure {
  margin-bottom: calc(var(--spacing-unit) / 2) !important;
}

.paper-entry, .quote-card, .album {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 1px 2px var(--shadow) !important;
  border-radius: 2px !important;
  padding: 0.9em 1.2em !important;
  margin-bottom: 0.8em !important;
}

.quote-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.quote-card figcaption {
  align-self: flex-end;
  margin-top: 0.8em;
  font-style: italic;
  color: var(--text-secondary) !important;
}

.paper-title {
  font-size: 17px !important;
  margin-bottom: 0.3em !important;
}
.paper-title a {
  color: var(--accent) !important;
}

.paper-authors,
.paper-venue {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
}

.album-artist,
.album-year,
.section-title,
.personnel-item,
.track-title {
  color: var(--text-secondary) !important;
}

.album-title {
  color: var(--text-primary) !important;
}

blockquote {
  border-left-color: var(--accent) !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  padding: 12px 16px !important;
}

.site-header {
  border-bottom: 2px solid var(--border-light) !important;
}

.site-footer {
  border-top: 1px solid var(--border-light) !important;
}

.hidden-link {
  color: inherit !important;
  text-decoration: none !important;
}
.hidden-link:hover, .hidden-link:visited {
  color: inherit !important;
  text-decoration: none !important;
}

.image-caption {
  font-size: 11px !important;
  color: var(--text-secondary) !important;
  text-align: center;
  padding-top: 5px;
}

.theme-toggle-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  color: var(--text-primary);
  opacity: 0.5;
  transition: opacity 0.2s ease;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1.5;
  font-size: 18px;
}
.theme-toggle-icon:hover {
  text-decoration: none;
  opacity: 1;
}
.theme-toggle-icon .icon-container {
  display: inline-block;
  width: 1em;
  text-align: center;
  font-family: inherit;
}
.theme-toggle-icon .icon-sun,
.theme-toggle-icon .icon-moon {
  display: inline-block;
  width: 1em;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .theme-toggle-icon {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    margin: 0;
    opacity: 1;
    border-bottom: 1px solid var(--border-light);
  }
  .theme-toggle-icon:hover {
    background-color: var(--bg-primary);
  }
  .theme-toggle-icon:last-child {
    border-bottom: none;
  }
  .theme-toggle-icon .icon-container {
    display: inline;
  }
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

.theorem {
  display: block;
  margin: 12px 0;
  font-style: italic;
}
.theorem:before {
  content: "Theorem" attr(text) " ";
  font-weight: bold;
  font-style: normal;
}
.theorem[text]:before {
  content: "Theorem (" attr(text) "). ";
}

.proof {
  display: block;
  margin: 12px 0;
  font-style: normal;
  position: relative;
}
.proof:before {
  content: "Proof.";
  font-style: italic;
}
.proof:after {
  content: "□";
  position: absolute;
  right: 0;
  bottom: 0.2em;
}

.definition {
  display: block;
  margin: 12px 0;
  font-style: normal;
}
.definition[text]:before {
  content: "Definition (" attr(text) "). ";
  font-weight: bold;
  font-style: normal;
}

.collapsible {
  margin: 1em 0;
  padding: 0.5em 1em;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  box-shadow: 0 1px 2px var(--shadow);
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.collapsible summary {
  cursor: pointer;
  user-select: none;
  color: var(--text-secondary);
  width: 100%;
  box-sizing: border-box;
}
.collapsible summary:hover {
  opacity: 0.8;
}
.collapsible[open] summary {
  margin-bottom: 1em;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5em;
}
.collapsible .content {
  padding: 0 0.5em;
  max-width: 100%;
  overflow-x: auto;
  color: var(--text-primary);
}
@media screen and (max-width: 600px) {
  .collapsible {
    padding: 0.5em;
    width: 100%;
  }
  .collapsible summary {
    line-height: 1.4;
  }
  .collapsible .content {
    padding: 0;
  }
}

.external-site-logo {
  width: 30px;
  height: 30px;
  vertical-align: text-top;
}

.note-list > li {
  margin-bottom: 1.2em;
}
.note-list > li h3 {
  margin-bottom: 0.2em;
}
.note-list > li h3 .note-link {
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.note-list > li h3 .note-link:hover {
  opacity: 1;
  color: var(--accent);
}

.note-sections {
  font-size: 0.72em;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-top: 0.15em;
  margin-bottom: 0;
  margin-left: 1em;
  padding-left: 0.75em;
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-left: 1px solid var(--border-light);
}
.note-sections .note-section-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
  opacity: 0.85;
}
.note-sections .note-section-link:hover {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
}
[data-theme=dark] .note-sections {
  opacity: 0.85;
}
[data-theme=dark] .note-sections .note-section-link {
  opacity: 0.9;
  color: var(--text-primary);
}
[data-theme=dark] .note-sections .note-section-link:hover {
  color: var(--accent);
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */