:root {
    --blue: #168bd0;
    --blue-dark: #061331;
    --paper: rgba(255, 255, 255, 0.94);
    --ink: #111111;
    --muted: #4d4d4d;
    --line: rgba(37, 128, 191, 0.32);
    --rule-gap: 18px;
    --content-rule-gap: 18px;
    --sidebar-width: 390px;
    --content-gap: 0px;
    --content-width: 1250px;
    --inner-width: 100%;
    --nav-item-height: 58px;
    --sidebar-block-gap: 14px;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: Garamond, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.56;
    background: #ffffff;
}

.site-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(var(--sidebar-width) + var(--content-gap));
    z-index: 0;
    background-image: var(--page-background-image, var(--page-image));
    background-position: center top;
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.home-page .site-background {
    left: calc(var(--sidebar-width) + var(--content-gap));
    opacity: 0.3;
}

a {
    color: inherit;
}

.site-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 3;
    width: var(--sidebar-width);
    padding: 34px 28px 24px 150px;
    color: #ffffff;
    background: #061331;
    display: flex;
    flex-direction: column;
    gap: var(--rule-gap);
    overflow-y: auto;
}

.brand {
    position: fixed;
    left: 24px;
    top: 64px;
    width: 92px;
    height: 480px;
    text-decoration: none;
}

.brand img {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 390px;
    max-width: none;
    transform: translate(-50%, -50%) rotate(-90deg);
    filter: brightness(0) invert(1);
    opacity: 0.38;
    mix-blend-mode: screen;
    transform-origin: center;
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid rgba(121, 215, 255, 0.28);
}

.menu-toggle {
    display: none;
}

.nav-group {
    position: relative;
}

.nav-group > a,
.submenu a {
    display: flex;
    align-items: center;
    min-height: var(--nav-item-height);
    padding: 11px 8px;
    text-decoration: none;
    border-bottom: 1px solid rgba(121, 215, 255, 0.24);
    font-size: 22px;
    line-height: 1.35;
}

.nav-group > a:hover,
.nav-group.is-active > a,
.nav-group.is-open > a,
.nav-group:hover > a,
.nav-group:focus-within > a {
    color: #168bd0;
}

.submenu a:hover,
.submenu a.is-active {
    color: #79d7ff;
}

.submenu {
    display: none;
    position: fixed;
    top: var(--submenu-top, 0);
    left: var(--sidebar-width);
    z-index: 9;
    width: 430px;
    margin: 0;
    padding: 0;
    background: #0d2b4f;
    border-left: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.submenu::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 58px;
    height: 100%;
}

.submenu::after {
    content: "›";
    position: absolute;
    top: 0;
    right: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: var(--nav-item-height);
    color: #ffffff;
    background: #0d2b4f;
    font: 200 31px/1 Arial, sans-serif;
    padding-bottom: 3px;
}

.submenu a {
    padding: 11px 22px;
    color: #ffffff;
    border-bottom: 1px solid rgba(121, 215, 255, 0.24);
    font-size: 22px;
}

.submenu a:last-child {
    border-bottom: 0;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.is-open .submenu {
    display: block;
}

.sidebar-feature {
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-image {
    display: block;
    padding-bottom: var(--rule-gap);
    border-bottom: 1px solid rgba(121, 215, 255, 0.24);
}

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

.sidebar-feature p {
    margin: var(--rule-gap) 0 0;
    color: #aee5ff;
    font-size: 21px;
    line-height: 1.32;
    font-style: italic;
}

.sidebar-context {
    border-top: 1px solid rgba(121, 215, 255, 0.28);
    border-bottom: 1px solid rgba(121, 215, 255, 0.28);
    padding: var(--rule-gap) 0;
}

.sidebar-context h2 {
    max-width: none;
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: normal;
}

.sidebar-context p {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.4;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(121, 215, 255, 0.28);
}

.sidebar-content section {
    border-top: 1px solid rgba(121, 215, 255, 0.24);
    padding: var(--sidebar-block-gap) 0;
}

.sidebar-content h2 {
    max-width: none;
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.25;
    font-weight: normal;
}

.sidebar-content p {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.32;
}

.sidebar-rights {
    padding-top: 12px;
    padding-bottom: 12px;
}

.sidebar-rights h2 {
    margin-bottom: 2px;
    line-height: 1.16;
}

.sidebar-rights p {
    line-height: 1.3;
}

.sidebar-productions ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #d1ccff;
    font-size: 17px;
    line-height: 1.38;
}

.sidebar-productions h2 {
    color: #8f86ff;
}

.sidebar-motto {
    text-align: center;
}

.motto-card {
    padding: 16px 16px 14px;
    color: #222222;
    background: #ffffff;
}

.motto-card img {
    display: block;
    margin-inline: auto;
}

.motto-signature {
    width: min(210px, 100%);
    height: auto;
    margin-bottom: 8px;
}

.motto-triangle {
    width: min(235px, 100%);
    height: auto;
    margin-bottom: 8px;
}

.motto-card h2 {
    max-width: none;
    margin: 0;
    color: #222222;
    font-size: 19px;
    font-style: italic;
    line-height: 1.2;
    font-weight: normal;
}

.sidebar-rights + .sidebar-rights {
    border-top: 1px solid rgba(121, 215, 255, 0.24);
}

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    margin-left: calc(var(--sidebar-width) + var(--content-gap));
    padding: 0;
    display: flex;
    align-items: flex-start;
}

.content-panel {
    width: min(var(--content-width), calc(100vw - var(--sidebar-width) - var(--content-gap)));
    min-height: 100vh;
    padding: 38px 42px 96px;
    background: rgba(255, 255, 255, 0.55);
    border-left: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    box-shadow: 24px 0 70px rgba(255, 255, 255, 0.26);
}

.page-branding {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(180px, 280px);
    align-items: stretch;
    gap: 28px;
    margin: 0;
    width: var(--inner-width);
    max-width: none;
}

.page-branding a {
    display: flex;
    min-height: 205px;
}

.page-branding img {
    display: block;
}

.page-branding-logo {
    align-items: flex-end;
    justify-content: flex-start;
}

.page-branding-logo img {
    width: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: left bottom;
}

.page-branding-icon {
    align-items: flex-end;
    justify-content: flex-end;
}

.page-branding-icon img {
    width: 100%;
    min-height: 200px;
    max-height: 205px;
    object-fit: contain;
    object-position: right bottom;
}

.top-branding-rule {
    width: var(--inner-width);
    height: 1px;
    margin: 0 0 var(--rule-gap);
    background: var(--line);
}

.branding-rule {
    width: var(--inner-width);
    height: 1px;
    margin: var(--content-rule-gap) 0;
    background: var(--line);
}

.page-header-rule,
.page-end-rule {
    width: var(--inner-width);
    height: 1px;
    margin: var(--content-rule-gap) 0;
    background: var(--line);
}

.page-end-rule {
    margin: var(--content-rule-gap) 0;
}

.final-page-rule {
    clear: both;
}

.kicker {
    margin: 0 0 10px;
    color: #1d6fa8;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0;
}

.heading-theme {
    margin: -12px 0 24px;
    color: #2580bf;
    font-size: 40px;
    font-style: normal;
    line-height: 1.2;
}

h1,
h2,
h3,
p,
blockquote {
    max-width: var(--inner-width);
}

.content-panel p {
    white-space: pre-line;
    font-size: 20px;
}

.legal-line {
    margin-bottom: 10px;
}

.legal-line-separated {
    padding-bottom: var(--rule-gap);
    border-bottom: 1px solid var(--line);
}

.page-intro {
    margin: 0 0 var(--content-rule-gap);
    color: #222222;
    font-size: 21px;
    line-height: 1.35;
}

.body-paragraph {
    margin: 0 0 var(--content-rule-gap);
    line-height: 1.35;
}

.literature-quote {
    color: #12365d;
    font-size: 22px;
    font-style: italic;
}

.content-list p {
    margin: 0 0 4px;
    line-height: 1.35;
}

.content-list-intro {
    color: #12365d;
    font-weight: 700;
}

.content-list ul {
    margin: 0 0 0 20px;
    padding: 0;
}

.content-list li {
    margin: 2px 0;
    font-size: 20px;
    line-height: 1.35;
}

.home-date {
    margin-bottom: var(--rule-gap);
    padding-bottom: var(--rule-gap);
    font-weight: 700;
    border-bottom: 1px solid var(--line);
}

.home-production-list {
    width: var(--inner-width);
    margin-bottom: var(--rule-gap);
    padding-bottom: var(--rule-gap);
    border-bottom: 1px solid var(--line);
}

.home-production-list .content-list-intro {
    margin-bottom: 8px;
}

.home-slogan {
    margin-top: var(--rule-gap);
    color: #12365d;
    font-size: 22px;
    font-style: italic;
    line-height: 1.32;
}

.page-rights {
    margin-top: var(--content-rule-gap);
    padding-top: var(--content-rule-gap);
    padding-bottom: var(--content-rule-gap);
    border-top: 1px solid var(--line);
    border-bottom: 0;
    color: #222222;
}

.page-rights h2 {
    margin: 0 0 4px;
    color: #12365d;
    font-size: 20px;
    font-weight: 700;
}

.page-rights p {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.literary-list {
    display: grid;
    gap: 0;
    margin-top: var(--content-rule-gap);
    width: var(--inner-width);
}

.literary-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: var(--content-rule-gap) 0;
    border-top: 1px solid var(--line);
}

.literary-number {
    color: #2580bf;
    font-size: 13px;
    line-height: 1.5;
}

.literary-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.38;
}

.book-list {
    display: grid;
    gap: 0;
    margin-top: var(--content-rule-gap);
    width: var(--inner-width);
}

.book-item {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding: var(--content-rule-gap) 0;
    border-bottom: 1px solid var(--line);
}

.book-item:last-child {
    border-bottom: 0;
}

.book-covers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.book-covers a,
.book-covers img {
    display: block;
}

.book-covers img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid var(--line);
    background: #ffffff;
}

.book-copy h2 {
    margin-top: 0;
    margin-bottom: 6px;
}

.book-copy p {
    margin: 0 0 8px;
}

.book-copy p:last-child {
    margin-bottom: 0;
}

.book-status {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 8px;
    color: #ffffff;
    background: #2580bf;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.book-status.is-soldout {
    background: #d5792c;
}

.book-subtitle {
    color: var(--muted);
    font-style: italic;
}

h1 {
    margin: 0 0 var(--rule-gap);
    color: #12365d;
    font-size: 40px;
    line-height: 1.12;
    font-weight: normal;
}

.inner-page h1 {
    margin-bottom: 8px;
}

.album-heading-strip {
    display: grid;
    grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    width: var(--inner-width);
}

.album-heading-cover {
    display: block;
    width: 100%;
    text-decoration: none;
}

.album-heading-cover img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    background: transparent;
}

.album-heading-copy h1 {
    margin-bottom: 8px;
}

.album-heading-copy .kicker {
    margin-bottom: 0;
}

h2 {
    margin: 36px 0 14px;
    color: #12365d;
    font-size: 28px;
    font-weight: normal;
}

h3 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: normal;
}

blockquote {
    margin: 0 0 28px;
    padding-left: 18px;
    border-left: 3px solid var(--blue);
    color: var(--muted);
    font-style: italic;
}

.page-visual {
    display: block;
    width: var(--inner-width);
    margin: 0;
    padding-top: var(--content-rule-gap);
    border-top: 1px solid var(--line);
}

.page-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    opacity: 1;
}

.legal-inline-visual {
    margin: 0 0 var(--content-rule-gap);
    padding: var(--content-rule-gap) 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
}

.bottom-visual {
    width: var(--inner-width);
    margin-top: 0;
    padding: var(--content-rule-gap) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.bottom-visual .page-visual {
    margin: 0;
    padding-top: 0;
    border-top: 0;
}

.bottom-visual .page-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.deferred-page-intro .page-visual img {
    height: auto;
    max-height: none;
    object-fit: contain;
}

.bottom-copy {
    width: var(--inner-width);
    margin-top: 0;
    padding: var(--content-rule-gap) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.bottom-copy .body-paragraph,
.bottom-copy .page-intro {
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
}

.bottom-copy .literature-quote {
    color: #12365d;
    font-size: 22px;
    font-style: italic;
    line-height: 1.32;
}

body[style*="symbole-bandeau-etoile-9-noir"] .page-visual {
    background: transparent;
}

body[style*="symbole-bandeau-etoile-9-noir"] .page-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
}

body[style*="dessin-bandeau-1992-1"] .page-visual,
body[style*="graphisme-etre-vaut-plus-avoir"] .page-visual,
body[style*="graphisme-etre-vaut-plus-qu-avoir"] .page-visual {
    display: grid;
    place-items: center;
}

body[style*="dessin-bandeau-1992-1"] .page-visual img,
body[style*="graphisme-etre-vaut-plus-avoir"] .page-visual img,
body[style*="graphisme-etre-vaut-plus-qu-avoir"] .page-visual img {
    width: auto;
    max-width: 100%;
    height: min(760px, 76vh);
    max-height: none;
    object-fit: contain;
}

.listing,
.gallery,
.album-list {
    width: var(--inner-width);
    margin-top: var(--content-rule-gap);
    padding-bottom: var(--content-rule-gap);
    border-top: 1px solid var(--line);
}

.book-list {
    width: var(--inner-width);
}

.page-header-rule + .gallery,
.page-header-rule + .album-list,
.page-header-rule + .listing,
.page-header-rule + .page-visual,
.page-header-rule + .bottom-visual {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.page-header-rule + .literary-list,
.page-header-rule + .book-list {
    margin-top: 0;
}

.page-header-rule + .literary-list .literary-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.book-list .book-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.gallery > h2:first-child,
.listing > h2:first-child,
.album-list > h2:first-child {
    width: var(--inner-width);
    margin: 0 0 var(--content-rule-gap);
    padding-bottom: 0;
    border-bottom: 0;
}

.gallery > h2:first-child + .gallery-grid,
.gallery > h2:first-child + .gallery-links,
.listing > h2:first-child + .gallery-grid,
.listing > h2:first-child + .gallery-links,
.album-list > h2:first-child + .album-grid {
    padding-top: var(--content-rule-gap);
    border-top: 1px solid var(--line);
}

.page-end-rule + .page-rights,
.bottom-copy + .page-rights,
.bottom-visual + .page-rights,
.back-link + .page-rights,
.album-index + .bottom-visual {
    border-top: 0;
}

.page-end-rule + .page-rights,
.album-index + .bottom-visual {
    padding-top: 0;
}

.bottom-visual + .page-rights {
    padding-top: var(--content-rule-gap);
}

.bottom-copy + .page-rights,
.bottom-visual + .page-rights,
.back-link + .page-rights,
.album-index + .bottom-visual {
    margin-top: 0;
}

.bottom-visual + .bottom-copy {
    margin-top: 0;
    border-top: 0;
}

.page-rights + .final-page-rule {
    margin-top: 0;
}

.gallery + .bottom-visual,
.listing + .bottom-visual,
.album-list + .bottom-visual,
.gallery + .deferred-page-intro,
.listing + .deferred-page-intro,
.album-list + .deferred-page-intro {
    margin-top: 0;
}

.page-end-rule + .final-page-rule,
.page-header-rule + .page-end-rule,
.back-link + .page-end-rule {
    display: none;
}

.bottom-copy + .final-page-rule,
.gallery + .final-page-rule,
.listing + .final-page-rule,
.album-list + .final-page-rule,
.deferred-page-intro + .final-page-rule {
    display: none;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 18px 22px;
    margin-top: var(--content-rule-gap);
}

.album-card {
    display: grid;
    gap: 9px;
    color: var(--ink);
    text-decoration: none;
}

.album-card-image {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.album-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.18s ease;
}

.album-card:hover .album-card-image img {
    transform: scale(1.03);
}

.album-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 14px;
    color: #2580bf;
    text-align: center;
    font-size: 18px;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.album-card-copy {
    display: grid;
    gap: 2px;
}

.album-card-copy strong {
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: normal;
}

.album-card-copy span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.25;
}

.back-link {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: var(--content-rule-gap) 0 0;
    padding: var(--content-rule-gap) 0;
    color: #2580bf;
    text-decoration: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.back-link::after {
    content: "";
    display: block;
    width: 0;
}

.album-item + .back-link {
    margin-top: var(--content-rule-gap);
    border-top: 1px solid var(--line);
}

.album-detail > .back-link:first-child {
    margin-top: 0;
    border-top: 0;
}

.album-item {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 34px;
    padding: var(--content-rule-gap) 0;
    border-bottom: 1px solid var(--line);
}

.album-detail-layout {
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
}

.album-list.album-detail {
    padding-bottom: 0;
}

.album-media {
    position: sticky;
    top: 18px;
    align-self: start;
}

.album-detail-layout .album-media {
    position: static;
    margin: var(--content-rule-gap) 0 var(--content-rule-gap);
    padding-bottom: var(--content-rule-gap);
    border-bottom: 1px solid var(--line);
}

.album-detail + .deferred-page-intro .page-visual {
    padding-top: var(--content-rule-gap);
    border-top: 0;
}

.album-visuals {
    display: grid;
    grid-template-columns: minmax(380px, 0.42fr) minmax(740px, 1fr);
    gap: 24px;
    align-items: end;
    width: var(--inner-width);
}

.album-visuals a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    color: var(--ink);
    text-decoration: none;
}

.album-visuals img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 430px;
    object-fit: contain;
    border: 1px solid var(--line);
    background: transparent;
}

.album-visuals span {
    color: #2580bf;
    font-size: 14px;
    line-height: 1.2;
}

.album-count {
    margin: 0 0 var(--rule-gap);
    padding: var(--rule-gap) 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    color: #2580bf;
    font-size: 14px;
    text-transform: uppercase;
}

.album-copy h3 {
    margin-bottom: var(--rule-gap);
    padding-bottom: var(--rule-gap);
    border-bottom: 1px solid var(--line);
    color: #111111;
    font-size: 28px;
}

.back-link-bottom {
    margin-top: var(--content-rule-gap);
    border-top: 1px solid var(--line);
}

.track-list + .back-link-bottom {
    margin-top: var(--content-rule-gap);
    border-top: 1px solid var(--line);
}

.track-list {
    display: grid;
    gap: 0;
    margin-top: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
    overflow: visible;
}

.track-row {
    display: grid;
    grid-template-columns: 70px minmax(240px, 1.2fr) minmax(210px, 1fr) minmax(340px, 0.9fr) 142px;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
}

.track-row:last-child {
    border-bottom: 0;
}

.track-row-head {
    color: #2580bf;
    background: rgba(0, 60, 255, 0.07);
    font-size: 14px;
    line-height: 1.15;
    text-transform: uppercase;
}

.track-item {
    background: rgba(255, 255, 255, 0.78);
}

.track-heading {
    margin: 0;
}

.track-heading > span {
    color: #2580bf;
    font-size: 15px;
    line-height: 1;
}

.track-title h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.18;
    font-weight: normal;
    overflow-wrap: anywhere;
}

.track-title p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.2;
}

.track-artist {
    color: #333333;
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.track-row audio {
    min-width: 0;
    height: 42px;
}

.track-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.track-meta {
    margin-top: 0;
    position: relative;
}

.track-meta summary {
    display: inline-flex;
    padding: 5px 9px;
    color: #2580bf;
    border: 1px solid rgba(37, 128, 191, 0.45);
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.track-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 5px 9px;
    color: #2580bf;
    text-decoration: none;
    border: 1px solid rgba(37, 128, 191, 0.45);
    font-size: 17px;
    line-height: 1.2;
    white-space: nowrap;
}

.track-popup-page {
    min-height: 100vh;
    margin: 0;
    color: #111111;
    background: #ffffff;
    font-family: Garamond, "EB Garamond", Georgia, serif;
}

.track-popup {
    width: min(980px, calc(100vw - 32px));
    margin: 24px auto 36px;
}

.track-popup-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 58px;
    margin-bottom: 8px;
    color: #5bc526;
    font: 700 58px/1 Arial, sans-serif;
    text-decoration: none;
}

.track-popup-header {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.track-popup-header img {
    display: block;
    width: 142px;
    height: 142px;
    object-fit: contain;
}

.track-popup-header h1 {
    margin: 0 0 6px;
    color: #000000;
    font-size: 38px;
    line-height: 1.05;
}

.track-popup-header p {
    margin: 0;
    font-size: 30px;
    line-height: 1.12;
}

.track-popup-rule {
    width: 100%;
    height: 1px;
    margin: 14px 0 72px;
    background: #333333;
}

.track-popup audio {
    max-width: 360px;
    margin-bottom: 20px;
}

.track-popup-meta {
    display: grid;
    gap: 4px;
    margin: 0;
    font-size: 24px;
    line-height: 1.22;
}

.track-meta-line {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0 8px;
}

.track-popup-meta dt {
    font-weight: 700;
}

.track-popup-meta dd {
    margin: 0;
}

.track-meta dl {
    display: grid;
    gap: 7px;
    margin: 10px 0 0;
    padding: 12px;
    position: absolute;
    z-index: 4;
    right: 14px;
    width: min(520px, calc(100vw - 320px));
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.track-meta dt {
    color: #2580bf;
    font-size: 14px;
    font-weight: 700;
}

.track-meta dd {
    margin: 0;
    color: #333333;
    font-size: 15px;
    line-height: 1.35;
}

.music-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 24px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

audio {
    width: 100%;
    height: 36px;
}

.button {
    display: inline-flex;
    justify-content: center;
    padding: 9px 16px;
    color: #ffffff;
    text-decoration: none;
    background: var(--blue);
}

.gallery-grid,
.gallery-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 18px 22px;
    width: var(--inner-width);
}

.gallery-card {
    color: var(--ink);
    text-decoration: none;
}

.gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.gallery-card span {
    display: block;
    padding-top: 4px;
    font-size: 16px;
    line-height: 1.22;
}

.home-page .content-panel {
    background: rgba(255, 255, 255, 0.55);
}

.home-page .page-visual img {
    max-height: 600px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.82);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    object-fit: contain;
    background: #ffffff;
    cursor: zoom-in;
    transition: max-width 0.16s ease, max-height 0.16s ease;
}

.lightbox.is-zoomed img {
    max-width: 98vw;
    max-height: 98vh;
    cursor: zoom-out;
}

.lightbox button {
    position: fixed;
    top: 18px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font: 26px Arial, sans-serif;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 820px) {
    .site-sidebar {
        position: sticky;
        top: 0;
        width: auto;
        min-height: auto;
        padding: 14px 18px;
        gap: 0;
        z-index: 10;
        overflow: visible;
    }

    .brand {
        position: static;
        display: inline-flex;
        width: 190px;
        height: 52px;
        min-height: 0;
    }

    .brand img {
        position: static;
        width: 190px;
        max-width: 100%;
        transform: none;
        filter: invert(68%) sepia(6%) saturate(156%) hue-rotate(163deg) brightness(91%) contrast(86%);
    }

    .menu-toggle {
        position: absolute;
        top: 16px;
        right: 18px;
        display: grid;
        place-items: center;
        gap: 5px;
        width: 42px;
        height: 38px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #ffffff;
    }

    .site-sidebar:not(.is-open) .main-nav,
    .site-sidebar:not(.is-open) .sidebar-feature,
    .site-sidebar:not(.is-open) .sidebar-context,
    .site-sidebar:not(.is-open) .sidebar-content {
        display: none;
    }

    .site-sidebar.is-open {
        max-height: 100vh;
        overflow-y: auto;
    }

    .site-sidebar.is-open .main-nav {
        margin-top: 18px;
    }

    .site-sidebar.is-open .sidebar-feature,
    .site-sidebar.is-open .sidebar-context,
    .site-sidebar.is-open .sidebar-content {
        margin-top: 18px;
    }

    .page-shell {
        margin-left: 0;
    }

    .content-panel {
        width: 100%;
        min-height: auto;
        padding: 28px 24px;
        border-left: 0;
        border-top: 0;
    }

    .page-branding {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 0;
    }

    .page-branding a {
        min-height: 0;
    }

    .page-branding-logo img {
        max-height: 120px;
    }

    .page-branding-icon img {
        min-height: 0;
        max-height: none;
    }

    .site-background,
    .home-page .site-background {
        left: 0;
        opacity: 0.3;
    }

    .submenu {
        position: static;
        width: auto;
        margin-left: 0;
        padding: 0 0 0 12px;
        box-shadow: none;
    }

    .submenu::before,
    .submenu::after {
        display: none;
    }

    .submenu a {
        min-height: 0;
        padding: 9px 8px;
        font-size: 19px;
        background: transparent;
        border-bottom-color: rgba(255, 255, 255, 0.16);
    }

    .music-item {
        grid-template-columns: 1fr;
    }

    .album-item {
        grid-template-columns: 1fr;
    }

    .album-heading-strip {
        grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
        gap: 18px;
    }

    .album-media {
        position: static;
        max-width: none;
    }

    .album-visuals {
        grid-template-columns: 1fr;
    }

    .album-visuals img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .track-row,
    .track-row-head {
        grid-template-columns: 1fr;
    }

    .track-row-head {
        display: none;
    }

    .track-row {
        min-width: 0;
        gap: 9px;
        padding: 14px;
    }

    .track-actions {
        align-items: flex-start;
    }

    .track-meta dl {
        position: static;
        width: auto;
        box-shadow: none;
    }

    .track-meta dl {
        grid-template-columns: 1fr;
    }

    .track-popup {
        width: min(100% - 24px, 980px);
        margin-top: 14px;
    }

    .track-popup-header {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .track-popup-header img {
        width: 96px;
        height: 96px;
    }

    .track-popup-header h1 {
        font-size: 30px;
    }

    .track-popup-header p {
        font-size: 24px;
    }

    .track-popup-rule {
        margin-bottom: 34px;
    }

    .track-popup-meta {
        grid-template-columns: 1fr;
        font-size: 20px;
    }

    .literary-item,
    .book-item {
        grid-template-columns: 1fr;
    }

    .book-covers {
        max-width: 280px;
    }
}
