@charset "UTF-8";
/* Infinite Forge Studio .co.uk cleaned stylesheet. Generated from the active static pages. */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap");
:root {
  --primary-color: #e85d04;        
  --secondary-color: #ffba08;      
  --text-light: #f8f9fa;           
  --text-muted: #adb5bd;           
  --bg-dark: #0d0d0d;              
  --bg-medium: #212121;            
  --nav-height: 70px;              
  --transition-speed: 0.3s;        
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0d0d url('../images/background_texture.webp') repeat;
  background-size: 600px 600px;
  color: var(--text-light);
  line-height: 1.6;
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}
a:hover {
  color: var(--secondary-color);
}
h1, h2, h3, h4, h5 {
  color: var(--text-light);
  font-weight: 600;
}
img {
  max-width: 100%;
  display: block;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); 
  backdrop-filter: blur(8px);     
  -webkit-backdrop-filter: blur(8px); 
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.navbar .logo img {
  width: 40px;
  height: 40px;
}
.navbar .logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: var(--primary-color);
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar ul li {
  position: relative;
}
.navbar ul li a {
  color: var(--text-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  transition: color var(--transition-speed) ease;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary-color);
}
.menu-toggle {
  display: none;
}
@media (max-width: 900px) {
.menu-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
  }
}
@media (max-width: 768px) {
.navbar ul {
    display: none;
  }
.navbar.expanded ul {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
  }
}
section {
  padding: 6rem 2rem;
  position: relative;
}
.section-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-subheading {
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--text-muted);
}
@keyframes glow-pulse {
  0% {
    text-shadow: 0 0 4px rgba(33, 150, 243, 0.4);
  }
  50% {
    text-shadow: 0 0 12px rgba(33, 150, 243, 0.9), 0 0 6px rgba(33, 150, 243, 0.5);
  }
  100% {
    text-shadow: 0 0 4px rgba(33, 150, 243, 0.4);
  }
}
footer {
  background: var(--bg-dark);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
footer ul li a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color var(--transition-speed) ease;
}
footer ul li a:hover {
  color: var(--primary-color);
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--bg-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background var(--transition-speed) ease;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.16);
  cursor: pointer;
}
.btn:hover {
  background: var(--secondary-color);
  color: var(--bg-dark);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 186, 8, 0.23);
}
.site-footer {
  background-color: var(--bg-dark);
  text-align: center;
  padding: 3rem 1.5rem 2rem 1.5rem;
  color: var(--text-muted);
}
.footer-logo {
  max-width: 100px;
  margin: 0 auto 1rem auto;
  display: block;
}
.footer-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}
.site-footer .social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.site-footer .social-icons a .svg-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.site-footer .social-icons a:hover .svg-icon {
  color: var(--primary-color);
}
@keyframes soft-pulse {
  0% {
    text-shadow: 0 0 0 rgba(255, 186, 8, 0.0);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 6px rgba(255, 186, 8, 0.3);
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 0 rgba(255, 186, 8, 0.0);
    transform: scale(1);
  }
}
@keyframes soft-pulse-orange {
  0%, 100% {
    text-shadow: 0 0 6px rgba(232, 93, 4, 0.25), 0 0 12px rgba(232, 93, 4, 0.1);
  }
  50% {
    text-shadow: 0 0 12px rgba(232, 93, 4, 0.6), 0 0 20px rgba(232, 93, 4, 0.25);
  }
}
@keyframes soft-pulse-purple {
  0%, 100% {
    text-shadow: 0 0 6px rgba(187, 60, 255, 0.25), 0 0 12px rgba(187, 60, 255, 0.1);
  }
  50% {
    text-shadow: 0 0 12px rgba(187, 60, 255, 0.6), 0 0 20px rgba(187, 60, 255, 0.25);
  }
}
.svg-icon {
  display: inline-flex;
  width: 1.4em;
  height: 1.4em;
  color: currentColor;
  align-items: center;
  justify-content: center;
  vertical-align: -0.18em;
}
.svg-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--text-light);
}
p .svg-icon {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.4rem;
  color: var(--primary-color);
}
.site-footer .social-icons a .svg-icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-footer .social-icons a:hover .svg-icon {
  color: var(--primary-color);
  transform: translateY(-2px);
}
@keyframes svg-pulse-orange {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(232, 93, 4, 0.25)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 14px rgba(232, 93, 4, 0.75)); transform: scale(1.05); }
}
@keyframes svg-pulse-blue {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(33, 150, 243, 0.3)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 14px rgba(33, 150, 243, 0.85)); transform: scale(1.05); }
}
@keyframes svg-pulse-purple {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(187, 60, 255, 0.3)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 14px rgba(187, 60, 255, 0.8)); transform: scale(1.05); }
}
.navbar .logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
main {
  min-height: 70vh;
}
.navbar {
  min-height: var(--nav-height);
  padding: 0.85rem 1.5rem;
}
.navbar ul {
  gap: 1.15rem;
}
.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
}
.eyebrow,
.card-kicker {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-secondary {
  background: rgba(0,0,0,0.34);
  color: var(--text-light);
  border: 1px solid rgba(232,93,4,0.75);
}
@media (max-width: 980px) {
.navbar ul { display: none; }
.menu-toggle { display: block; }
.navbar.expanded ul {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    min-width: 220px;
    padding: 1rem;
    gap: 1rem;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
.navbar .logo span { font-size: 1.05rem; }
}
@media (max-width: 560px) {
.navbar { padding: 0.75rem 1rem; }
.navbar .logo img { width: 34px; height: 34px; }
.navbar .logo span { font-size: 0.95rem; }
section { padding: 4rem 1rem; }
}
.navbar {
  background: rgba(0, 0, 0, 0.66);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar .logo {
  gap: 0.7rem;
  padding: 0.2rem 0.65rem 0.2rem 0.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,0.26), rgba(232,93,4,0.08), rgba(0,0,0,0));
}
.navbar .logo img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(232,93,4,0.35));
}
.navbar .logo span {
  font-size: 1.38rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.72), 0 0 12px rgba(232,93,4,0.22);
}
@media (max-width: 980px) {
.navbar .logo img { width: 42px; height: 42px; }
.navbar .logo span { font-size: 1.08rem; letter-spacing: 0.04em; }
}
@media (max-width: 560px) {
.navbar .logo { background: transparent; padding: 0; }
.navbar .logo img { width: 36px; height: 36px; }
.navbar .logo span { font-size: 0.92rem; }
}
.navbar {
  border-bottom-color: rgba(255,255,255,0.04);
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
}
.navbar .logo,
.navbar .logo:hover {
  background: linear-gradient(90deg, rgba(0,0,0,0.36), rgba(232,93,4,0.07), rgba(0,0,0,0));
}
.navbar .logo img,
.footer-logo,
.studio-identity-mark,
.hero-brand-logo {
  object-fit: contain;
  background: transparent !important;
}
.navbar .logo img {
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(255,186,8,0.24)) drop-shadow(0 0 18px rgba(232,93,4,0.22));
}
.footer-logo {
  max-width: 72px;
  filter: drop-shadow(0 0 16px rgba(232,93,4,0.2));
}
.newsletter-form .btn,
.contact-form button,
button[type="submit"] {
  background: linear-gradient(135deg, rgba(232,93,4,0.95), rgba(255,186,8,0.82));
  color: #111;
  border: 1px solid rgba(255,186,8,0.45);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(232,93,4,0.22);
}
.newsletter-form .btn:hover,
.contact-form button:hover,
button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,93,4,0.28), 0 6px 18px rgba(0,0,0,0.5);
}
.navbar ul {
  gap: 0.9rem;
}
.navbar ul li a {
  font-size: 0.88rem;
}
@media (max-width: 1120px) {
.navbar ul { gap: 0.72rem; }
.navbar ul li a { font-size: 0.82rem; }
.navbar .logo span { font-size: 1rem; }
}
@media (max-width: 980px) {
.navbar ul li a { font-size: 0.95rem; }
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.navbar {
  gap: 1rem;
}
.navbar .logo {
  min-width: 0;
  flex-shrink: 0;
}
.navbar .logo span {
  white-space: nowrap;
}
@media (min-width: 1181px) {
.navbar ul {
    display: flex !important;
  }
.menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1180px) {
.navbar {
    padding: 0.75rem 1.1rem;
  }
.menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,186,8,0.32);
    background: rgba(0,0,0,0.36);
    color: var(--text-light);
  }
.menu-toggle .svg-icon {
    width: 22px;
    height: 22px;
  }
.navbar ul {
    display: none !important;
  }
.navbar.expanded ul {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem 1.1rem 1.15rem;
    background: rgba(8,8,8,0.97);
    border-top: 1px solid rgba(255,186,8,0.16);
    box-shadow: 0 18px 42px rgba(0,0,0,0.68);
  }
.navbar.expanded ul li a {
    display: block;
    padding: 0.72rem 0.25rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 640px) {
:root {
    --nav-height: 64px;
  }
.navbar .logo span {
    font-size: 0.9rem;
    max-width: 62vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.navbar .logo img {
    width: 34px;
    height: 34px;
  }
}
section {
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}
:root {
  --nav-height: 78px;
}
.navbar {
  min-height: var(--nav-height);
}
@media (max-width: 640px) {
:root {
    --nav-height: 64px;
  }
}
:root {
  --nav-height: 78px;
}
html {
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}
.navbar {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  min-height: var(--nav-height) !important;
  z-index: 3000 !important;
}
@media (max-width: 1180px) {
.navbar {
    position: sticky !important;
  }
}
@media (max-width: 760px) {
:root {
    --nav-height: 64px;
  }
}
:root {
  --nav-height: 88px;
}
html {
  scroll-padding-top: calc(var(--nav-height) + 1rem) !important;
}
body {
  padding-top: var(--nav-height) !important;
}
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--nav-height) !important;
  min-height: var(--nav-height) !important;
  margin: 0 !important;
  padding: 0.75rem 1.5rem !important;
  z-index: 5000 !important;
  box-sizing: border-box !important;
}
.navbar .logo img {
  width: 52px;
  height: 52px;
}
.navbar.expanded ul {
  top: 100% !important;
}
@media (max-width: 1180px) {
:root {
    --nav-height: 82px;
  }
.navbar {
    height: var(--nav-height) !important;
    min-height: var(--nav-height) !important;
    padding: 0.65rem 1.1rem !important;
  }
.navbar .logo img {
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 760px) {
:root {
    --nav-height: 68px;
  }
.navbar {
    padding: 0.55rem 1rem !important;
  }
.navbar .logo img {
    width: 38px;
    height: 38px;
  }
}
:root {
  --nav-height: 88px;
  --button-border: rgba(255, 186, 8, 0.45);
  --button-glow: rgba(232, 93, 4, 0.22);
}
body {
  padding-top: var(--nav-height) !important;
}
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: var(--nav-height) !important;
  min-height: var(--nav-height) !important;
  background: rgba(0,0,0,0.72) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1180px) {
:root { --nav-height: 82px; }
}
@media (max-width: 760px) {
:root { --nav-height: 68px; }
}
[hidden],
.is-filtered-out {
  display: none !important;
}
:root {
  --no-safe-road-accent: #6f8fa6;
  --no-safe-road-accent-rgb: 111, 143, 166;
  --board-games-accent: #0ea98a;
  --board-games-accent-rgb: 14, 169, 138;
}
:root {
  --wheel-of-time-accent: #d7b46a;
  --wheel-of-time-accent-rgb: 215, 180, 106;
}
:root {
  --supplied-banner-ratio: 0.3998991427;
}
body {
  background: #0d0d0d url('../images/background_texture.webp') repeat !important;
  background-size: 1024px 1024px !important;
}
:root {
  --supplied-banner-ratio: 0.3998991427;
}
:root {
  --ifs-wallpaper: url('../images/background_texture.webp');
  --ifs-wallpaper-size: 600px 600px;
}
[hidden],
.archive-entry[hidden],
.download-card[hidden],
.is-filtered-out {
  display: none !important;
}
:root {
  --ifs-logo-gold: #D7A84B;
  --ifs-logo-gold-bright: #FFD27A;
  --ifs-logo-gold-rgb: 215, 168, 75;
}
.legal-panel h2 { margin-top: 1.45rem; margin-bottom: 0.55rem; color: var(--ifs-logo-gold-bright, #ffba08); }
.legal-panel p { margin-bottom: 0.9rem; }
:root {
  --ifs-ember: #f5a13a;
  --ifs-ember-soft: rgba(245, 161, 58, 0.42);
  --ifs-ember-faint: rgba(245, 161, 58, 0.16);
  --ifs-panel-dark: rgba(10, 8, 7, 0.84);
  --ifs-panel-line: rgba(245, 177, 88, 0.24);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 174, 70, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(6,4,3,0.86));
  transition: opacity 180ms ease;
}
@keyframes ifsPageEnter {
  from { opacity: 0.01; transform: translateY(8px); filter: blur(1.5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes ifsPillarBreath {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.96; }
  50% { transform: translateY(-2px) scale(1.018); opacity: 1; }
}
@keyframes ifsForgeHalo {
  0%, 100% { box-shadow: 0 0 18px rgba(245,161,58,0.14), inset 0 0 18px rgba(245,161,58,0.06); }
  50% { box-shadow: 0 0 34px rgba(245,161,58,0.28), inset 0 0 26px rgba(245,161,58,0.11); }
}
@keyframes ifsCompassTurn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes ifsResultReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ifsLayeredGlobeSlowTurn {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, calc(-50% + 0.28%)) rotate(180deg) scale(1.006); }
  to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsContactWaterShimmer {
  0%, 70%, 100% { background-position: 0 0, 125% 100%; opacity: 1; }
  82% { background-position: 0 0, -8% 100%; opacity: 1; }
  90% { background-position: 0 0, 6% 100%; opacity: 1; }
}
@keyframes ifsLayeredGlobeVisibleTurn {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.002); }
  to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsGlobeSpinV954 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.003); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsGlobeSpinV955 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.0015); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsGlobeSpinV956 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.001); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsLogoFlameGlowV956 {
  0%, 100% {
    opacity: 0.94;
    filter:
      saturate(1.05)
      brightness(0.98)
      drop-shadow(0 0 10px rgba(255, 184, 68, 0.30))
      drop-shadow(0 0 24px rgba(255, 118, 24, 0.13));
  }
  50% {
    opacity: 1;
    filter:
      saturate(1.12)
      brightness(1.055)
      drop-shadow(0 0 14px rgba(255, 206, 108, 0.43))
      drop-shadow(0 0 34px rgba(255, 130, 30, 0.19));
  }
}
@keyframes ifsLogoRealisticGlowV957 {
  0%, 100% {
    opacity: 0.965;
    filter:
      saturate(1.04)
      brightness(0.985)
      contrast(1.02)
      drop-shadow(0 0 7px rgba(255, 189, 79, 0.24))
      drop-shadow(0 0 18px rgba(255, 125, 25, 0.12));
  }
  50% {
    opacity: 1;
    filter:
      saturate(1.08)
      brightness(1.025)
      contrast(1.035)
      drop-shadow(0 0 9px rgba(255, 212, 118, 0.32))
      drop-shadow(0 0 24px rgba(255, 135, 27, 0.15));
  }
}
@keyframes ifsOrbSceneGlobeSpinV958 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.001); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsOrbSceneGlobeSpinV959 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.0008); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsContactWaterOnlyShimmerV959 {
  0%, 100% {
    opacity: 0.23;
    background-position: 48% 50%, 115% 50%, 0 0;
    transform: skewX(-7deg) translateX(-1.6%);
  }
  45% {
    opacity: 0.40;
    background-position: 52% 50%, 53% 50%, 0 2px;
    transform: skewX(-7deg) translateX(1.1%);
  }
  70% {
    opacity: 0.31;
    background-position: 50% 50%, 22% 50%, 0 -1px;
    transform: skewX(-7deg) translateX(0.2%);
  }
}
@keyframes ifsGlobeSpinV960 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.0007); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes ifsContactWaterOnlyShimmerV960 {
  0%, 100% {
    opacity: 0.38;
    background-position: 48% 50%, 112% 50%, 0 0;
    transform: skewX(-8deg) perspective(520px) rotateX(2deg) translateX(-1.4%);
  }
  38% {
    opacity: 0.64;
    background-position: 54% 50%, 55% 50%, 0 3px;
    transform: skewX(-8deg) perspective(520px) rotateX(2deg) translateX(1.2%);
  }
  68% {
    opacity: 0.50;
    background-position: 50% 50%, 20% 50%, 0 -2px;
    transform: skewX(-8deg) perspective(520px) rotateX(2deg) translateX(0.1%);
  }
}
@keyframes ifsWaterRippleV962 {
  0% { background-position: 0 0, 110% 50%; transform: translateX(-1.5%) translateY(0); }
  50% { background-position: 0 12px, 48% 50%; transform: translateX(1.2%) translateY(1px); }
  100% { background-position: 0 28px, -20% 50%; transform: translateX(-1.5%) translateY(0); }
}
@keyframes ifsWaterGlintV962 {
  0%, 100% { opacity: 0.30; transform: translateX(-2%); }
  45% { opacity: 0.62; transform: translateX(2%); }
  70% { opacity: 0.42; transform: translateX(0); }
}
@keyframes ifsWaterRippleV963 {
  0%, 100% { background-position: 0 0, 112% 50%; transform: translateX(-1.1%) translateY(0); }
  42% { background-position: 0 12px, 50% 50%; transform: translateX(0.9%) translateY(1px); }
  70% { background-position: 0 23px, 18% 50%; transform: translateX(0.2%) translateY(0); }
}
@keyframes ifsWaterGlintV963 {
  0%, 100% { opacity: 0.24; transform: translateX(-1.6%) scaleX(1.02); }
  48% { opacity: 0.43; transform: translateX(1.5%) scaleX(1.04); }
  72% { opacity: 0.32; transform: translateX(0.1%) scaleX(1.02); }
}
@keyframes ifsMapFlyoverV963 {
  0% { transform: translate(-15%, -10%) scale(1.05); }
  28% { transform: translate(-3%, -17%) scale(1.12); }
  58% { transform: translate(-20%, -28%) scale(1.18); }
  100% { transform: translate(-7%, -7%) scale(1.10); }
}
@keyframes ifsWaterRippleV964 {
  0%,100% { transform: translateX(-3%) translateY(0) scaleX(1.02); background-position: 0 0, 116% 50%; }
  45% { transform: translateX(3%) translateY(1px) scaleX(1.06); background-position: 18px 9px, 46% 50%; }
  72% { transform: translateX(1%) translateY(-1px) scaleX(1.03); background-position: 35px 18px, 14% 50%; }
}
@keyframes ifsWaterGlintV964 {
  0%,100% { opacity: 0.20; transform: translateX(-2%) scaleX(1); }
  50% { opacity: 0.46; transform: translateX(2.8%) scaleX(1.05); }
}
@keyframes ifsMapRevealJourney {
  0% { transform: scale(2.25) translate(0%,0%); }
  23% { transform: scale(2.18) translate(-28%,-4%); }
  47% { transform: scale(2.05) translate(-43%,-32%); }
  70% { transform: scale(1.72) translate(-26%,-42%); }
  100% { transform: scale(1) translate(0%,0%); }
}
@keyframes ifsContactWaterImageDriftV965 {
  0%,100% { background-position: center center; transform: translateX(-0.35%) translateY(0) scale(1.006); }
  42% { background-position: calc(50% + 8px) calc(50% + 2px); transform: translateX(0.45%) translateY(1px) scale(1.012); }
  70% { background-position: calc(50% - 5px) calc(50% - 1px); transform: translateX(-0.12%) translateY(-1px) scale(1.008); }
}
@keyframes ifsContactWaterLinesV965 {
  0%,100% { background-position: 0 0, center center; opacity:.44; }
  50% { background-position: 22px 18px, center center; opacity:.78; }
}
@keyframes ifsContactWaterGlowV965 {
  0%,100% { transform: translateX(-6%) scaleX(.96); opacity:.28; }
  50% { transform: translateX(9%) scaleX(1.12); opacity:.62; }
}
:root {
  --ifs-orange: #e85d04;
  --ifs-orange-rgb: 232, 93, 4;
  --ifs-alberenar: #8f5cff;
  --ifs-alberenar-rgb: 143, 92, 255;
  --ifs-resonance: #2196f3;
  --ifs-resonance-rgb: 33, 150, 243;
  --ifs-global: #d19a3c;
  --ifs-global-rgb: 209, 154, 60;
  --ifs-board: #d7a83d;
  --ifs-board-rgb: 215, 168, 61;
  --ifs-pactsmiths: #f4a62a;
  --ifs-pactsmiths-rgb: 244, 166, 42;
  --ifs-no-safe-road: #aeb8bb;
  --ifs-no-safe-road-rgb: 174, 184, 187;
  --ifs-wounded-roads: #b12b24;
  --ifs-wounded-roads-rgb: 177, 43, 36;
  --ifs-soundtracks: #43d7c7;
  --ifs-soundtracks-rgb: 67, 215, 199;
}
:root {
  --ifs-board-purple: #8f5cff;
  --ifs-board-purple-rgb: 143, 92, 255;
  --ifs-global-green: #6fc36d;
  --ifs-global-green-rgb: 111, 195, 109;
  --ifs-pact-orange: #e85d04;
  --ifs-pact-orange-rgb: 232, 93, 4;
  --ifs-wounded-red: #b12b24;
  --ifs-wounded-red-rgb: 177, 43, 36;
  --ifs-steel: #aeb8bb;
  --ifs-steel-rgb: 174, 184, 187;
}
:root {
  --ifs-pact-yellow: #f4c84a;
  --ifs-pact-yellow-rgb: 244, 200, 74;
  --ifs-coming-white: #f2f2f2;
  --ifs-coming-white-rgb: 242, 242, 242;
}
:root {
  --ifs-button-gold: #e8a83a;
  --ifs-button-gold-rgb: 232, 168, 58;
  --ifs-pactsmiths-yellow: #f4c84a;
  --ifs-pactsmiths-yellow-rgb: 244, 200, 74;
}
@keyframes resonanceResultPulse {
  0% { box-shadow: 0 0 0 rgba(80,176,255,0); }
  50% { box-shadow: 0 0 28px rgba(80,176,255,0.20); }
  100% { box-shadow: 0 0 0 rgba(80,176,255,0); }
}
.navbar ul {
  align-items: center !important;
}
.navbar ul > li {
  display: flex !important;
  align-items: center !important;
  min-height: 2.6rem !important;
}
.navbar ul > li > a,
.navbar ul > li > a:visited,
.navbar ul li.nav-dropdown > .nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 2.35rem !important;
  line-height: 1 !important;
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
  vertical-align: middle !important;
}
@media (max-width: 980px) {
.navbar.expanded ul > li {
    display: block !important;
    min-height: 0 !important;
  }
.navbar.expanded ul > li > a,
  .navbar.expanded ul li.nav-dropdown > .nav-dropdown-trigger {
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
[id],
.anchor-target {
  scroll-margin-top: calc(var(--nav-height) + 28px) !important;
}
:root {
  --ifs-wide-banner-ratio: 0.3998991427;
  --ifs-wide-banner-max-width: 1983px;
  --ifs-wheel-banner-ratio: 0.4241952233;
  --ifs-wheel-banner-max-width: 1926px;
}
:root {
  --ifs-wide-banner-ratio-final: 0.3998991427;
  --ifs-wheel-banner-ratio-final: 0.4241952233;
  --ifs-wounded-banner-ratio-final: 0.6666666667;
}
:root {
  --ifs-banner-wide-ratio-v1000: 0.3998991427;
  --ifs-banner-forum-ratio-v1000: 0.3998991427;
  --ifs-banner-contact-ratio-v1000: 0.375;
  --ifs-banner-wheel-ratio-v1000: 0.4241952233;
  --ifs-banner-wounded-ratio-v1000: 0.6666666667;
  --ifs-wallpaper-size-v1000: 600px 600px;
}
html,
body {
  background-color: #06090b !important;
  background-image: url('../images/background_texture.webp') !important;
  background-repeat: repeat !important;
  background-size: var(--ifs-wallpaper-size-v1000) !important;
  background-position: center top !important;
}
.navbar ul li > a {
  white-space: nowrap !important;
}
.not-found-page {
  min-height: 100vh;
}
.not-found-shell {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--nav-height) + 7rem) 1.25rem 7rem;
  text-align: center;
}
.not-found-shell h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: 0.04em;
}
.not-found-shell p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}
.not-found-shell .hero-actions {
  justify-content: center;
}
@keyframes ifsConstructionStripeScroll {
  from { background-position: 0 0; }
  to { background-position: 0 24px; }
}
@keyframes ifsConstructionStripePanelScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -19.8px, 0); }
}
body::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  transition: none !important;
}
.release-status {
  width: fit-content;
  margin: 0.15rem 0 0.85rem !important;
  padding: 0.34rem 0.68rem;
  border: 1px solid rgba(var(--game-accent-rgb, 232, 93, 4), 0.46);
  border-radius: 999px;
  background: rgba(var(--game-accent-rgb, 232, 93, 4), 0.10);
  color: #f2dfc2 !important;
  box-shadow: 0 0 16px rgba(var(--game-accent-rgb, 232, 93, 4), 0.08);
  font-size: 0.72rem !important;
  font-weight: 800;
  line-height: 1.2 !important;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
.release-status {
    font-size: 0.68rem !important;
    letter-spacing: 0.06em;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
.navbar ul {
    gap: clamp(0.42rem, 0.55vw, 0.72rem) !important;
  }
.navbar ul li > a {
    font-size: clamp(0.72rem, 0.74vw, 0.82rem) !important;
    letter-spacing: 0.01em !important;
  }
}
.sacred-page {
  background:
    linear-gradient(180deg, rgba(33, 25, 16, 0.10), rgba(53, 39, 18, 0.26)),
    url('../images/sacred/sacred-wallpaper.webp') center top / cover fixed,
    #eadfbe !important;
  color: #312613;
}
.sacred-page .navbar,
.sacred-page .site-footer {
  background: rgba(7, 7, 9, 0.94);
}
.sacred-page .sacred-hero-content .eyebrow,
.sacred-page .sacred-section .eyebrow,
.sacred-page .card-kicker {
  color: #7c5521;
}
.sacred-page .sacred-hero-content h1,
.sacred-page .section-heading,
.sacred-page h2,
.sacred-page h3 {
  color: #231909;
}
.sacred-page .sacred-hero-content p,
.sacred-page .section-subheading,
.sacred-page .sacred-section p {
  color: rgba(45, 35, 17, 0.84);
}
.sacred-page .btn {
  border-color: rgba(126, 84, 26, 0.58);
  background: linear-gradient(180deg, rgba(144, 93, 30, 0.98), rgba(87, 54, 18, 0.98));
  color: #fff7dd;
  box-shadow: 0 12px 28px rgba(74, 44, 15, 0.22), inset 0 1px 0 rgba(255,255,255,0.22);
}
.sacred-page .btn-secondary {
  background: rgba(255, 248, 226, 0.56);
  color: #3b2a10;
}
.sacred-page {
  background:
    linear-gradient(180deg, rgba(255, 249, 230, 0.12), rgba(42, 25, 7, 0.08)),
    url('../images/sacred/sacred-wallpaper.webp') center top / cover fixed,
    #efe1bd;
}
body.sacred-page.sacred-art-page {
  background:
    linear-gradient(rgba(16, 12, 6, 0.18), rgba(16, 12, 6, 0.22)),
    url('../images/sacred/church_wallpaper.webp') center top / cover fixed no-repeat;
  color: #2a1d0d;
}
body.sacred-page.sacred-art-page .navbar,
body.sacred-page.sacred-art-page .site-footer {
  background: linear-gradient(90deg, rgba(35, 19, 4, 0.97), rgba(53, 42, 26, 0.94), rgba(24, 12, 2, 0.97));
}
.sacred-art-page .sacred-glass-panel h2,
.sacred-art-page .sacred-glass-card h3,
.sacred-art-page .section-heading {
  color: #261805;
  text-shadow: 0 1px 0 rgba(255,255,255,0.38);
}
.sacred-art-page .sacred-glass-panel p,
.sacred-art-page .sacred-glass-card p,
.sacred-art-page .section-subheading {
  color: rgba(47, 34, 18, 0.88);
}
.sacred-art-page .eyebrow,
.sacred-art-page .card-kicker {
  color: #8b5418;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sacred-art-page .btn {
  background: linear-gradient(180deg, #9d641f, #74410d);
  border-color: rgba(255, 229, 160, 0.45);
  color: #fff8e7;
  box-shadow: 0 18px 38px rgba(86, 49, 12, 0.24);
}
.sacred-art-page .btn-secondary {
  background: rgba(255, 246, 222, 0.74);
  color: #32210c;
  border-color: rgba(130, 84, 28, 0.45);
}
.sacred-art-page .btn:hover,
.sacred-art-page .btn:focus-visible,
.sacred-art-page .playlist-track__play:hover,
.sacred-art-page .playlist-track__play:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.sacred-route-grid,
.sacred-track-grid,
.sacred-concept-grid,
.sacred-resource-grid,
.playlist-track-list {
  gap: 1.25rem;
}
.ifs-playlist {
  overflow: hidden;
}
.playlist-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.2rem;
}
.playlist-head h2 {
  margin-bottom: 0.35rem;
}
.playlist-current {
  margin: 0.25rem 0 0;
  font-weight: 700;
}
.playlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}
.playlist-global-progress,
.playlist-track__progress {
  position: relative;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(79, 48, 14, 0.18);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.25);
  touch-action: none;
}
.playlist-global-progress {
  margin: 0 0 1.4rem;
  height: 12px;
}
.playlist-global-progress span,
.playlist-track__progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8d171d, #ffffff 48%, #b2222a);
  box-shadow: 0 0 14px rgba(141, 23, 29, 0.35);
  transition: width 0.18s linear;
}
.playlist-track.is-active .playlist-track__progress {
  cursor: pointer;
}
.playlist-track__progress:focus-visible {
  outline: 3px solid rgba(20, 191, 227, 0.68);
  outline-offset: 3px;
}
.playlist-track-list {
  display: grid;
}
.playlist-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  align-items: center;
  gap: 1.25rem;
}
.playlist-track.is-active {
  outline: 2px solid rgba(141, 23, 29, 0.46);
  background: linear-gradient(180deg, rgba(255, 248, 231, 0.82), rgba(239, 203, 138, 0.62));
}
.playlist-track__main h3 {
  margin-top: 0.15rem;
}
.playlist-track__controls {
  display: grid;
  gap: 0.65rem;
}
.playlist-track__play {
  width: 100%;
  border: 1px solid rgba(255, 229, 160, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, #9d641f, #74410d);
  color: #fff8e7;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.78rem 1rem;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.playlist-track__time {
  justify-self: end;
  color: rgba(47, 34, 18, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}
.release-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(112, 69, 21, 0.16);
  color: #5f370d;
  font-weight: 800;
  font-size: 0.86rem;
}
@media (max-width: 900px) {
.sacred-two-col,
  .playlist-track,
  .sacred-feature-strip {
    grid-template-columns: 1fr;
  }
.playlist-head {
    align-items: stretch;
    flex-direction: column;
  }
.playlist-actions {
    justify-content: flex-start;
  }
}
.sacred-glass-card,
.sacred-route-card,
.sacred-concept-card,
.sacred-resource-card,
.playlist-track {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.sacred-route-card:hover,
.sacred-route-card:focus-visible,
.sacred-concept-card:hover,
.sacred-resource-card:hover,
.playlist-track:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 168, 75, 0.88) !important;
  box-shadow:
    0 0 0 1px rgba(255, 226, 157, 0.28),
    0 20px 54px rgba(137, 84, 24, 0.22),
    0 14px 38px rgba(34, 20, 6, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
}
.sacred-art-page .sacred-glass-panel h2,
.sacred-art-page .sacred-glass-card h3,
.sacred-art-page .section-heading,
.sacred-art-page .playlist-head h2 {
  color: #1b1208 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}
.sacred-art-page .sacred-glass-panel p,
.sacred-art-page .sacred-glass-card p,
.sacred-art-page .section-subheading,
.sacred-art-page .playlist-current,
.sacred-art-page .playlist-track__time {
  color: rgba(28, 20, 12, 0.94) !important;
}
.sacred-art-page .eyebrow,
.sacred-art-page .card-kicker {
  color: #7a4212 !important;
}
.sacred-route-card,
.sacred-concept-card,
.sacred-resource-card,
.playlist-track {
  display: flex !important;
  flex-direction: column;
}
.sacred-route-card p,
.sacred-concept-card p,
.sacred-resource-card p,
.playlist-track__main p:last-child {
  margin-bottom: 1rem;
}
.sacred-art-page .btn,
.sacred-art-page .playlist-track__play {
  box-shadow: 0 0 0 1px rgba(255, 220, 142, 0.16), 0 12px 30px rgba(95, 51, 12, 0.25) !important;
}
body.sacred-page.sacred-art-page {
  background:
    linear-gradient(180deg, rgba(255, 249, 228, 0.20), rgba(221, 188, 126, 0.18)),
    url('../images/sacred/church_wallpaper.webp') center top / cover fixed no-repeat,
    #eddfbd !important;
  color: #201408;
}
body.sacred-page.sacred-art-page .navbar,
body.sacred-page.sacred-art-page .site-footer {
  background: linear-gradient(90deg, rgba(20, 11, 3, 0.97), rgba(58, 46, 29, 0.94), rgba(20, 10, 2, 0.97)) !important;
}
.sacred-glass-card,
.sacred-home-card,
.sacred-route-card,
.sacred-concept-card,
.sacred-resource-card,
.soundtrack-choice-card--sacred,
.playlist-track {
  position: relative !important;
  overflow: hidden !important;
}
.sacred-glass-card::before,
.sacred-home-card::before,
.sacred-route-card::before,
.sacred-concept-card::before,
.sacred-resource-card::before,
.soundtrack-choice-card--sacred::before,
.playlist-track::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(232, 190, 92, 0.95), rgba(160, 97, 27, 0.72), rgba(232, 190, 92, 0.95));
  opacity: 0.76;
  pointer-events: none;
}
.sacred-glass-card:hover,
.sacred-home-card:hover,
.sacred-route-card:hover,
.sacred-concept-card:hover,
.sacred-resource-card:hover,
.soundtrack-choice-card--sacred:hover,
.playlist-track:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(255, 208, 104, 0.95) !important;
  box-shadow:
    0 0 0 1px rgba(255, 232, 170, 0.38),
    0 0 26px rgba(255, 191, 74, 0.30),
    0 22px 58px rgba(43, 24, 6, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.56) !important;
}
.sacred-art-page .sacred-glass-panel h2,
.sacred-art-page .sacred-glass-card h3,
.sacred-art-page .section-heading,
.sacred-art-page .playlist-head h2 {
  color: #201408 !important;
}
.sacred-art-page .sacred-glass-panel p,
.sacred-art-page .sacred-glass-card p,
.sacred-art-page .section-subheading,
.sacred-art-page .playlist-current,
.sacred-art-page .playlist-track__time {
  color: rgba(34, 23, 10, 0.94) !important;
}
.sacred-art-page .sacred-glass-panel .eyebrow,
.sacred-art-page .sacred-glass-card .eyebrow,
.sacred-art-page .section-intro .eyebrow,
.sacred-art-page .playlist-head .eyebrow,
.sacred-art-page .playlist-track .card-kicker {
  color: #7a4212 !important;
}
body.sacred-page.sacred-art-page {
  background:
    linear-gradient(180deg, rgba(255, 249, 230, 0.14), rgba(231, 203, 146, 0.18)),
    url('../images/sacred/church_wallpaper.webp') center top / cover fixed no-repeat,
    #ead5a8 !important;
  color: #1f1407 !important;
}
body.sacred-page.sacred-art-page main {
  background: transparent !important;
}
.sacred-glass-panel,
.sacred-glass-card,
.sacred-transparent-intro,
.sacred-resource-card,
.sacred-concept-card,
.sacred-route-card,
.playlist-track {
  background: linear-gradient(180deg, rgba(255, 248, 226, 0.54), rgba(236, 205, 142, 0.34)) !important;
  border: 1px solid rgba(211, 160, 65, 0.48) !important;
  box-shadow: 0 14px 40px rgba(52, 31, 7, 0.16), inset 0 1px 0 rgba(255,255,255,0.40) !important;
}
.sacred-glass-card::before,
.sacred-home-card::before,
.sacred-route-card::before,
.sacred-concept-card::before,
.sacred-resource-card::before,
.soundtrack-choice-card--sacred::before,
.playlist-track::before {
  width: 5px !important;
  background: linear-gradient(180deg, #0b314d, #e7bd5f, #0b314d) !important;
  opacity: 0.95 !important;
}
.sacred-glass-card:hover,
.sacred-home-card:hover,
.sacred-route-card:hover,
.sacred-concept-card:hover,
.sacred-resource-card:hover,
.soundtrack-choice-card--sacred:hover,
.playlist-track:hover,
.sacred-icon-route-card:hover,
.sacred-icon-route-card:focus-visible {
  border-color: rgba(235, 190, 91, 0.98) !important;
  box-shadow: 0 0 0 1px rgba(14, 58, 91, 0.34), 0 0 24px rgba(10, 48, 78, 0.20), 0 0 34px rgba(232, 185, 88, 0.30), 0 20px 52px rgba(48, 29, 7, 0.24) !important;
}
.sacred-art-page .btn,
.sacred-art-page .playlist-track__play,
.sacred-card-button,
.sacred-concept-card .release-status,
.sacred-resource-card .release-status {
  background: linear-gradient(180deg, #0c314d, #071e32) !important;
  border: 1px solid rgba(236, 196, 104, 0.66) !important;
  color: #fff4d5 !important;
  box-shadow: 0 10px 24px rgba(11, 39, 63, 0.20) !important;
}
.sacred-art-page .btn-secondary {
  background: rgba(255, 246, 222, 0.66) !important;
  color: #2b1a08 !important;
  border-color: rgba(164, 105, 31, 0.45) !important;
}
.sacred-art-page .sacred-glass-panel .eyebrow,
.sacred-art-page .sacred-glass-card .eyebrow,
.sacred-art-page .section-intro .eyebrow,
.sacred-art-page .playlist-head .eyebrow,
.sacred-art-page .playlist-track .card-kicker {
  color: #865017 !important;
}
body.sor-canon-page {
  background:
    linear-gradient(180deg, rgba(255,246,218,0.08), rgba(255,246,218,0.18)),
    url('../images/sacred/church_wallpaper.webp') center top / cover fixed no-repeat;
  color: #221407;
}
body.sor-canon-page .navbar,
body.sor-canon-page .site-footer {
  background: linear-gradient(90deg, #090500, #322313 52%, #150a02) !important;
}
.sor-main { overflow: hidden; }
.sor-hero {
  position: relative;
  min-height: clamp(330px, 31vw, 500px);
  background: url('../images/sacred/church_header_banner.webp') center center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.55rem, 3.2vw, 3.6rem) 1rem 1.25rem;
  border-bottom: 1px solid rgba(150, 100, 28, 0.55);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.22);
}
.sor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(255,255,232,0.42), rgba(255,255,232,0.08) 27%, transparent 58%);
  pointer-events: none;
}
.sor-hero__text {
  position: relative;
  z-index: 1;
  width: min(760px, 84vw);
  text-align: center;
  color: #241306;
  text-shadow: 0 1px 0 rgba(255,255,255,0.42);
}
.sor-hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 5.2vw, 5.9rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 0.95;
  color: #1d1005;
  text-transform: uppercase;
}
.sor-subtitle {
  margin: 0.45rem 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  color: #2b1708;
}
.sor-rule {
  width: min(330px, 55vw);
  height: 18px;
  margin: 0.42rem auto 0.55rem;
  position: relative;
}
.sor-rule::before,
.sor-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,32,0.75));
}
.sor-rule::before { left: 0; }
.sor-rule::after { right: 0; transform: scaleX(-1); }
.sor-rule span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(139,92,32,0.85);
  transform: translate(-50%, -50%) rotate(45deg);
}
.sor-kicker {
  margin: 0.25rem 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.12rem, 1.85vw, 1.72rem);
  letter-spacing: 0.08em;
  color: #321b09;
}
.sor-desc {
  max-width: 680px;
  margin: 0.38rem auto 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.94rem, 1.15vw, 1.1rem);
  line-height: 1.36;
  color: #2e1b0d;
}
.sor-credit {
  margin: 0.58rem auto 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-style: italic;
  line-height: 1.35;
  color: rgba(46,27,13,0.88);
}
.sor-fact-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #071a29;
  border-top: 1px solid #b88736;
  border-bottom: 1px solid #b88736;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}
.sor-fact-ribbon article {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem clamp(0.85rem, 2vw, 1.8rem);
  border-right: 1px solid rgba(218, 174, 93, 0.24);
  color: #f6e6bf;
}
.sor-fact-ribbon article:last-child { border-right: 0; }
.sor-fact-ribbon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 5px rgba(218,174,93,0.35));
}
.sor-fact-ribbon strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f8d17a;
}
.sor-fact-ribbon span {
  display: block;
  margin-top: 0.15rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(255,244,214,0.94);
  line-height: 1.32;
}
.sor-content-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.5fr) minmax(260px, 0.8fr);
  max-width: 1640px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(119,81,29,0.28);
  background: rgba(255, 241, 204, 0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
}
.sor-side-nav {
  background: #071a29;
  border-right: 1px solid rgba(184,135,54,0.62);
  padding: 0.9rem 0;
  min-height: 100%;
}
.sor-side-nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  padding: 0.45rem 1.15rem;
  color: #fff0cf;
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  border-left: 3px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.sor-side-nav a:hover,
.sor-side-nav a:focus-visible,
.sor-side-nav a.active {
  background: rgba(255, 215, 126, 0.1);
  color: #ffd678;
  border-left-color: #d9a53d;
}
.sor-side-nav img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(218,174,93,0.3));
}
.sor-overview {
  padding: clamp(1.4rem, 3.1vw, 3.2rem) clamp(1.3rem, 3vw, 3.5rem);
  background: rgba(255, 246, 220, 0.56);
}
.sor-eyebrow,
.sor-section-heading .eyebrow,
.sor-canon-page .eyebrow,
.sor-canon-page .card-kicker {
  color: #7b4a17 !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sor-overview h2,
.sor-album-panel h2,
.sor-section-heading h2 {
  margin: 0.15rem 0 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  font-weight: 400;
  color: #2a1708;
}
.sor-overview p,
.sor-section-heading p,
.sor-card p,
.sor-album-panel p,
.sor-canon-page .section-subheading {
  color: #3a2a19 !important;
  line-height: 1.62;
  font-size: 1.02rem;
}
.sor-overview blockquote {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(126,82,26,0.35);
  background: rgba(238, 215, 169, 0.42);
  border-radius: 6px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #3f2a12;
}
.sor-overview blockquote img { width: 45px; height: 45px; object-fit: contain; }
.sor-overview blockquote small { color: #5e3b14; }
.sor-album-panel {
  padding: clamp(1.3rem, 2.7vw, 2.3rem);
  border-left: 1px solid rgba(119,81,29,0.26);
  text-align: center;
  background: rgba(247, 230, 193, 0.36);
}
.sor-album-panel img {
  display: block;
  width: min(260px, 82%);
  margin: 0.5rem auto 1rem;
  border: 3px solid rgba(182, 139, 65, 0.75);
  box-shadow: 0 12px 24px rgba(54, 32, 9, 0.25);
}
.sor-btn,
.sor-card-link,
.sor-canon-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  border: 1px solid rgba(191,151,74,0.6);
  background: #071a29;
  color: #fff2d0 !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.sor-btn:hover,
.sor-btn:focus-visible,
.sor-card-link:hover,
.sor-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: #f1c46c;
  box-shadow: 0 0 18px rgba(218,174,93,0.48), 0 16px 30px rgba(0,0,0,0.22);
}
.sor-btn--light {
  background: rgba(255,246,220,0.88);
  color: #2a1708 !important;
}
.sor-btn--navy { width: min(280px, 94%); }
.sor-route-strip {
  max-width: 1640px;
  margin: 0 auto clamp(2.5rem, 4vw, 4.5rem);
  background: rgba(236, 210, 158, 0.48);
  border-top: 1px solid rgba(119,81,29,0.30);
  border-bottom: 1px solid rgba(119,81,29,0.20);
}
.sor-route-strip__inner {
  display: grid;
  grid-template-columns: 1.55fr repeat(5, minmax(130px, 1fr));
  align-items: stretch;
}
.sor-route-strip__inner > * {
  padding: 1.05rem 1rem;
  border-right: 1px solid rgba(119,81,29,0.22);
}
.sor-route-strip__inner > *:last-child { border-right: 0; }
.sor-route-intro strong,
.sor-route-strip a strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  color: #2b1708;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sor-route-intro span,
.sor-route-strip a span {
  display: block;
  color: #4a341f;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.28;
  margin-top: 0.25rem;
}
.sor-route-intro a { color: #071a29; font-weight: 800; text-decoration: none; }
.sor-route-strip a {
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.sor-route-strip a:hover,
.sor-route-strip a:focus-visible {
  background: rgba(255,255,240,0.34);
  box-shadow: inset 0 0 0 1px rgba(218,174,93,0.42), 0 0 18px rgba(218,174,93,0.28);
}
.sor-route-strip a img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 0.35rem;
}
.sor-section {
  max-width: 1500px;
  margin: clamp(2rem, 4vw, 4rem) auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.sor-section-heading {
  max-width: 980px;
  margin: 0 auto 1.75rem;
  text-align: center;
  background: rgba(255,244,215,0.72);
  border: 1px solid rgba(218,174,93,0.45);
  padding: 1.6rem;
  box-shadow: 0 0 24px rgba(218,174,93,0.18);
}
.sor-card-grid { display: grid; gap: 1.35rem; }
.sor-card-grid--games { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sor-card-grid--resources { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sor-card-grid--tracks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sor-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 246, 220, 0.62) !important;
  border: 1px solid rgba(218, 174, 93, 0.55) !important;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 12px 28px rgba(52,31,8,0.13);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.sor-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(#f1cd77, #9b5d17);
  opacity: 0.82;
}
.sor-card:hover,
.sor-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(241, 196, 108, 0.95) !important;
  box-shadow: 0 0 20px rgba(218,174,93,0.5), 0 18px 38px rgba(52,31,8,0.22);
}
.sor-card h3 { color: #221407 !important; margin-top: 0; }
.sor-card img { width: 54px; height: 54px; object-fit: contain; }
.sor-card span.release-status,
.sor-dev-card > span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(7,26,41,0.92);
  color: #f9d27a !important;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}
.sor-card-link { margin-top: 0.75rem; min-height: 36px; padding: 0.55rem 1rem; font-size: 0.82rem; }
.sor-panel {
  background: rgba(255,246,220,0.68) !important;
  border: 1px solid rgba(218,174,93,0.52) !important;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(52,31,8,0.16);
}
.sor-audio-panel { padding: clamp(1.1rem, 2.2vw, 2rem); }
.sor-rights-inline {
  color: #4a321b !important;
  font-size: 0.95rem;
  line-height: 1.45;
}
.sor-canon-page .playlist-track-list { display: grid; gap: 1rem; }
.sor-canon-page .playlist-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.35fr);
  gap: 1rem;
  align-items: center;
}
.sor-canon-page .playlist-track__play {
  background: #071a29;
  color: #fff2d0;
  border: 1px solid rgba(218,174,93,0.6);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sor-canon-page .playlist-global-progress,
.sor-canon-page .playlist-track__progress {
  background: rgba(86,57,25,0.22);
  border-radius: 999px;
  overflow: hidden;
}
.sor-canon-page .playlist-global-progress span,
.sor-canon-page .playlist-track__progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #8b5418, #f1c46c);
}
.sor-canon-page .playlist-head { display: flex; justify-content: space-between; gap: 1.5rem; align-items: flex-start; }
.sor-canon-page .playlist-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 1050px) {
.sor-fact-ribbon { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sor-fact-ribbon article:nth-child(2) { border-right: 0; }
.sor-content-row { grid-template-columns: 1fr; }
.sor-side-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-right: 0; }
.sor-album-panel { border-left: 0; border-top: 1px solid rgba(119,81,29,0.26); }
.sor-route-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sor-route-intro { grid-column: 1 / -1; }
.sor-card-grid--games,
  .sor-card-grid--resources,
  .sor-card-grid--tracks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
.sor-hero { min-height: 430px; background-position: center top; padding-top: 2rem; }
.sor-hero h1 { font-size: clamp(2.25rem, 13vw, 4rem); }
.sor-fact-ribbon { grid-template-columns: 1fr; }
.sor-fact-ribbon article { border-right: 0; border-bottom: 1px solid rgba(218,174,93,0.24); }
.sor-side-nav { grid-template-columns: 1fr; }
.sor-route-strip__inner,
  .sor-card-grid--games,
  .sor-card-grid--resources,
  .sor-card-grid--tracks { grid-template-columns: 1fr; }
.sor-canon-page .playlist-head,
  .sor-canon-page .playlist-track { grid-template-columns: 1fr; display: grid; }
.sor-canon-page .playlist-actions { justify-content: flex-start; }
}
body.sor-canon-page {
  background:
    linear-gradient(180deg, rgba(255, 249, 226, 0.18), rgba(233, 204, 145, 0.18)),
    url('../images/sacred/church_wallpaper.webp') center top / cover fixed no-repeat,
    #ead6aa !important;
}
body.sor-canon-page .navbar {
  min-height: 88px;
  border-bottom: 1px solid rgba(218, 174, 93, 0.20);
}
.sor-hero {
  min-height: clamp(360px, 28.5vw, 465px) !important;
  align-items: center !important;
  padding: clamp(1.1rem, 2.4vw, 2.4rem) 1rem !important;
  background-position: center center !important;
  border-bottom: 1px solid rgba(184, 135, 54, 0.70) !important;
  box-shadow: inset 0 -1px 0 rgba(255, 246, 218, 0.28) !important;
}
.sor-hero::before {
  background:
    radial-gradient(ellipse at 50% 28%, rgba(255, 255, 238, 0.76) 0%, rgba(255, 248, 221, 0.52) 20%, rgba(255, 248, 221, 0.18) 39%, rgba(255, 248, 221, 0.04) 62%),
    linear-gradient(90deg, rgba(76, 42, 8, 0.18), rgba(255, 246, 218, 0.03) 28%, rgba(255, 246, 218, 0.03) 72%, rgba(76, 42, 8, 0.16)) !important;
}
.sor-hero__text {
  width: min(1180px, 94vw) !important;
  transform: translateY(-0.15rem);
  text-shadow: 0 1px 0 rgba(255, 255, 245, 0.70), 0 0 16px rgba(255, 245, 210, 0.72) !important;
}
.sor-hero h1 {
  font-size: clamp(3.2rem, 4.4vw, 5.35rem) !important;
  letter-spacing: 0.058em !important;
  line-height: 0.98 !important;
  color: #1c1005 !important;
}
@media (min-width: 901px) {
.sor-hero h1 {
    white-space: nowrap;
  }
}
.sor-subtitle {
  margin-top: 0.58rem !important;
  font-size: clamp(1.15rem, 1.55vw, 1.62rem) !important;
  color: #2d1909 !important;
}
.sor-rule {
  width: min(320px, 52vw) !important;
  margin: 0.48rem auto 0.68rem !important;
}
.sor-rule::before,
.sor-rule::after {
  width: 44% !important;
  background: linear-gradient(90deg, transparent, rgba(132, 86, 25, 0.82)) !important;
}
.sor-rule span {
  background: rgba(255, 238, 177, 0.42);
  box-shadow: -54px 0 0 -2px rgba(255, 238, 177, 0.2), 54px 0 0 -2px rgba(255, 238, 177, 0.2);
}
.sor-rule span::before,
.sor-rule span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(139, 92, 32, 0.72);
  background: rgba(255, 238, 177, 0.34);
}
.sor-rule span::before { left: -76px; top: 1px; }
.sor-rule span::after { right: -76px; top: 1px; }
.sor-kicker {
  margin-top: 0.35rem !important;
  font-size: clamp(1.12rem, 1.55vw, 1.48rem) !important;
  color: #33200d !important;
}
.sor-desc {
  max-width: 680px !important;
  font-size: clamp(0.94rem, 1.02vw, 1.05rem) !important;
  line-height: 1.34 !important;
}
.sor-credit {
  margin-top: 0.78rem !important;
  color: rgba(80, 52, 24, 0.92) !important;
  font-size: clamp(0.86rem, 0.92vw, 0.98rem) !important;
  text-shadow: 0 1px 8px rgba(255, 247, 224, 0.85) !important;
}
.sor-fact-ribbon {
  min-height: 92px !important;
  align-items: center;
  background: linear-gradient(180deg, #071d2d, #061725) !important;
  border-top: 1px solid rgba(236, 196, 104, 0.64) !important;
  border-bottom: 1px solid rgba(236, 196, 104, 0.64) !important;
}
.sor-fact-ribbon article {
  min-height: 92px !important;
  padding: 0.72rem clamp(0.85rem, 2vw, 1.55rem) !important;
  gap: 0.85rem !important;
}
.sor-fact-ribbon img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
}
.sor-fact-ribbon strong {
  font-size: clamp(0.92rem, 0.98vw, 1.02rem) !important;
  line-height: 1.24 !important;
}
.sor-fact-ribbon span {
  font-size: clamp(0.82rem, 0.88vw, 0.92rem) !important;
  line-height: 1.28 !important;
}
.sor-content-row {
  max-width: 1500px !important;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.55fr) minmax(250px, 0.72fr) !important;
  background: rgba(255, 243, 209, 0.50) !important;
}
.sor-side-nav {
  background: linear-gradient(180deg, #071d2d, #061725) !important;
}
.sor-side-nav a {
  position: relative;
  min-height: 43px !important;
  padding: 0.38rem 2.3rem 0.38rem 1rem !important;
  font-size: 0.98rem !important;
}
.sor-side-nav a::after {
  content: "›";
  position: absolute;
  right: 1rem;
  color: #f1c46c;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 160ms ease, transform 160ms ease;
  font-size: 1.35rem;
  line-height: 1;
}
.sor-side-nav a:hover::after,
.sor-side-nav a:focus-visible::after,
.sor-side-nav a.active::after {
  opacity: 1;
  transform: translateX(0);
}
.sor-side-nav img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain !important;
}
.sor-overview {
  padding: clamp(1.3rem, 2.5vw, 2.55rem) clamp(1.2rem, 2.5vw, 3rem) !important;
  background: rgba(255, 247, 224, 0.64) !important;
}
.sor-overview h2,
.sor-album-panel h2,
.sor-section-heading h2 {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.035em !important;
  color: #2b1708 !important;
}
.sor-overview h2::after,
.sor-album-panel h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 13px;
  margin: 0.55rem auto 0.9rem;
  background:
    linear-gradient(90deg, transparent, rgba(132, 86, 25, 0.62), transparent);
  opacity: 0.95;
}
.sor-overview h2::after { margin-left: 0; }
.sor-overview p,
.sor-album-panel p,
.sor-card p {
  font-family: Georgia, 'Times New Roman', serif !important;
}
.sor-overview em,
.sor-card em,
.sor-desc em {
  font-style: italic;
}
.sor-overview blockquote {
  align-items: flex-start !important;
  border-radius: 8px !important;
  background: rgba(238, 215, 169, 0.54) !important;
  font-style: italic;
}
.sor-album-panel {
  background: rgba(247, 230, 193, 0.44) !important;
}
.sor-album-panel img {
  width: min(248px, 78%) !important;
  background: #061725;
  filter: none !important;
}
.sor-btn,
.sor-card-link,
.sor-canon-page .btn,
.sor-canon-page .playlist-track__play {
  font-family: Georgia, 'Times New Roman', serif !important;
  text-transform: none !important;
  letter-spacing: 0.035em !important;
  border-radius: 5px !important;
}
.sor-btn--navy {
  width: min(285px, 94%) !important;
  font-size: 1.05rem !important;
}
.sor-route-strip {
  max-width: 1500px !important;
  margin-bottom: clamp(2rem, 3.2vw, 3.4rem) !important;
  background: rgba(235, 208, 158, 0.60) !important;
}
.sor-route-strip__inner {
  grid-template-columns: 1.42fr repeat(5, minmax(118px, 1fr)) !important;
  min-height: 118px;
}
.sor-route-strip__inner > * {
  padding: 0.72rem 0.9rem !important;
}
.sor-route-strip a {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 118px;
  border: 1px solid transparent;
}
.sor-route-strip a::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(9, 31, 49, 0.0);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  pointer-events: none;
}
.sor-route-strip a:hover::after,
.sor-route-strip a:focus-visible::after {
  border-color: rgba(9, 31, 49, 0.34);
  box-shadow: 0 0 0 1px rgba(241, 196, 108, 0.36), 0 0 18px rgba(218, 174, 93, 0.22);
}
.sor-route-intro {
  align-content: center;
}
.sor-route-intro strong,
.sor-route-strip a strong {
  font-size: 0.95rem !important;
}
.sor-route-intro span,
.sor-route-strip a span {
  font-size: 0.84rem !important;
}
.sor-route-icon {
  width: 58px;
  height: 58px;
  display: grid !important;
  place-items: center;
  margin: 0 auto 0.25rem;
}
.sor-route-strip a img {
  width: auto !important;
  height: auto !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  margin: 0 !important;
}
.sor-section {
  max-width: 1480px !important;
}
.sor-section-heading {
  max-width: 920px !important;
  background: rgba(255, 246, 220, 0.78) !important;
}
.sor-card-grid--games,
.sor-card-grid--resources,
.sor-card-grid--tracks {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}
.sor-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
}
.sor-card img {
  width: auto !important;
  height: auto !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
}
.sor-card-link,
.sor-card .release-status,
.sor-dev-card > span {
  margin-top: auto !important;
  align-self: flex-start;
}
.sor-canon-page .playlist-track-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  align-items: stretch;
}
.sor-canon-page .playlist-track {
  grid-template-columns: 1fr !important;
  align-items: stretch !important;
  min-height: 305px;
}
.sor-canon-page .playlist-track__main {
  display: flex;
  flex-direction: column;
}
.sor-canon-page .playlist-track__controls {
  margin-top: auto;
}
.sor-canon-page .playlist-track__time {
  justify-self: start !important;
  color: rgba(51, 35, 16, 0.86) !important;
}
.sor-canon-page .playlist-global-progress,
.sor-canon-page .playlist-track__progress {
  height: 10px;
  background: rgba(7, 26, 41, 0.16) !important;
  border: 1px solid rgba(184, 135, 54, 0.20);
}
.sor-canon-page .playlist-global-progress span,
.sor-canon-page .playlist-track__progress span {
  background: linear-gradient(90deg, #08233a, #d9a53d, #fff0bf) !important;
  box-shadow: 0 0 14px rgba(217, 165, 61, 0.42);
}
.sor-rights-inline {
  max-width: 74ch;
  color: rgba(61, 38, 15, 0.88) !important;
  font-style: italic;
}
@media (max-width: 1050px) {
.sor-content-row {
    grid-template-columns: 1fr !important;
  }
.sor-route-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
.sor-route-intro {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
body.sor-canon-page .navbar { min-height: unset; }
.sor-hero h1 { white-space: normal; }
}
@media (max-width: 700px) {
.sor-hero {
    min-height: clamp(390px, 76vw, 520px) !important;
  }
.sor-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.85rem) !important;
  }
.sor-fact-ribbon article {
    min-height: 82px !important;
  }
.sor-route-strip__inner {
    grid-template-columns: 1fr !important;
  }
.sor-route-strip a {
    min-height: 108px;
  }
}
body.sor-canon-page {
  --sor-navy: #061725;
  --sor-navy-2: #071d2d;
  --sor-gold: #d9a53d;
  --sor-gold-soft: #f1c46c;
  --sor-ink: #211105;
  --sor-parchment: #fff2cf;
}
body.sor-protected-page .sor-main,
body.sor-protected-page .sor-route-strip,
body.sor-protected-page .sor-fact-ribbon {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
body.sor-protected-page img,
body.sor-protected-page audio {
  -webkit-user-drag: none;
  user-drag: none;
}
.sor-hero {
  min-height: clamp(315px, 24vw, 410px) !important;
  align-items: flex-start !important;
  padding: clamp(1.35rem, 2.05vw, 2.45rem) 1rem 0.95rem !important;
  background-position: center 45% !important;
}
.sor-hero::before {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 255, 240, 0.76) 0%, rgba(255, 246, 215, 0.34) 27%, rgba(255, 246, 215, 0.10) 58%, rgba(255, 246, 215, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 250, 228, 0.08), rgba(255, 246, 218, 0.04)) !important;
}
.sor-hero__text {
  transform: none !important;
  width: min(1230px, 94vw) !important;
}
.sor-hero h1 {
  font-size: clamp(3.15rem, 4.15vw, 5.05rem) !important;
  letter-spacing: 0.064em !important;
  line-height: 0.96 !important;
}
.sor-subtitle {
  margin-top: 0.45rem !important;
}
.sor-rule,
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after {
  background: url('../images/sacred/sor-divider.svg') center center / contain no-repeat !important;
  height: 30px !important;
  width: min(365px, 58vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.sor-rule { margin-top: 0.32rem !important; margin-bottom: 0.42rem !important; }
.sor-rule::before,
.sor-rule::after,
.sor-rule span,
.sor-rule span::before,
.sor-rule span::after { display: none !important; content: none !important; }
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after {
  content: "" !important;
  display: block !important;
  margin-top: 0.35rem !important;
  margin-bottom: 0.75rem !important;
  opacity: 0.92 !important;
}
.sor-overview h2::after { margin-left: 0 !important; }
.sor-kicker { margin-top: 0.10rem !important; }
.sor-desc { color: #2f1a08 !important; text-shadow: 0 1px 10px rgba(255, 248, 226, 0.88) !important; }
.sor-credit { margin-top: 0.54rem !important; color: rgba(67, 43, 18, 0.90) !important; }
.sor-fact-ribbon {
  min-height: 74px !important;
  background: linear-gradient(180deg, #082035, #061725) !important;
}
.sor-fact-ribbon article {
  min-height: 74px !important;
  padding: 0.42rem clamp(0.65rem, 1.6vw, 1.25rem) !important;
  gap: 0.72rem !important;
  overflow: visible !important;
}
.sor-fact-ribbon img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  padding: 2px !important;
  box-sizing: content-box !important;
}
.sor-fact-ribbon strong { font-size: clamp(0.82rem, 0.9vw, 0.95rem) !important; }
.sor-fact-ribbon span { font-size: clamp(0.74rem, 0.82vw, 0.86rem) !important; }
.sor-content-row--page {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.85fr) !important;
  align-items: stretch;
  max-width: 1500px !important;
  margin: 0 auto !important;
  background: rgba(255, 243, 209, 0.50) !important;
}
.sor-page-column {
  min-width: 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}
.sor-page-column .sor-section {
  margin: 0 auto clamp(1.4rem, 2.5vw, 2.2rem) !important;
  padding: 0 !important;
}
.sor-side-nav {
  overflow: visible !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.sor-side-nav a {
  min-height: 44px !important;
  gap: 0.72rem !important;
  padding: 0.38rem 2.35rem 0.38rem 1.05rem !important;
  overflow: visible !important;
}
.sor-side-nav img {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  padding: 3px !important;
  object-fit: contain !important;
  box-sizing: content-box !important;
}
.sor-side-nav a:hover,
.sor-side-nav a:focus-visible,
.sor-side-nav a.active {
  box-shadow: inset 3px 0 0 var(--sor-gold), 0 0 18px rgba(255, 225, 146, 0.10) !important;
}
.sor-overview,
.sor-album-panel,
.sor-section-heading,
.sor-panel {
  box-shadow: 0 18px 42px rgba(72, 42, 10, 0.12), inset 0 1px 0 rgba(255,255,255,0.34) !important;
}
.sor-overview h2,
.sor-album-panel h2,
.sor-section-heading h2,
.sor-canon-page .playlist-head h2 {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(1.55rem, 2.05vw, 2.25rem) !important;
  line-height: 1.22 !important;
  letter-spacing: 0.055em !important;
  color: #241306 !important;
}
.sor-overview p,
.sor-album-panel p,
.sor-section-heading p,
.sor-card p {
  font-family: Georgia, 'Times New Roman', serif !important;
}
.sor-overview blockquote {
  font-size: 1.02rem !important;
  background: rgba(239, 217, 176, 0.62) !important;
}
.sor-album-panel img {
  filter: brightness(1.18) saturate(1.12) contrast(1.04) !important;
  box-shadow: 0 12px 22px rgba(54, 32, 9, 0.22), 0 0 20px rgba(241, 196, 108, 0.18) !important;
}
.sor-btn,
.sor-card-link,
.sor-canon-page .btn,
.sor-canon-page .playlist-track__play {
  min-height: 38px !important;
  padding: 0.52rem 1.02rem !important;
  font-size: 0.92rem !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}
.sor-btn--navy { width: auto !important; min-width: min(220px, 90%) !important; }
.sor-btn:hover,
.sor-btn:focus-visible,
.sor-card-link:hover,
.sor-card-link:focus-visible,
.sor-canon-page .playlist-track__play:hover,
.sor-canon-page .playlist-track__play:focus-visible {
  transform: translateY(-2px) !important;
  border-color: #ffe5a5 !important;
  box-shadow: 0 0 0 1px rgba(255, 238, 185, 0.50), 0 0 22px rgba(255, 229, 165, 0.58), 0 12px 22px rgba(0,0,0,0.20) !important;
}
.sor-route-strip {
  background: rgba(235, 208, 158, 0.52) !important;
  margin-bottom: clamp(1.6rem, 2.8vw, 3rem) !important;
}
.sor-route-strip__inner {
  min-height: 88px !important;
  grid-template-columns: 1.35fr repeat(5, minmax(112px, 1fr)) !important;
}
.sor-route-strip__inner > * {
  padding: 0.45rem 0.78rem !important;
  overflow: visible !important;
}
.sor-route-strip a {
  min-height: 88px !important;
  border-radius: 0 !important;
}
.sor-route-strip a::after { inset: 5px !important; }
.sor-route-strip a:hover,
.sor-route-strip a:focus-visible {
  background: rgba(255, 251, 235, 0.45) !important;
  box-shadow: inset 0 0 0 1px rgba(217,165,61,0.40), 0 0 22px rgba(255, 229, 165, 0.34) !important;
}
.sor-route-icon {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 0.15rem !important;
  overflow: visible !important;
}
.sor-route-strip a img {
  max-width: 40px !important;
  max-height: 40px !important;
  padding: 2px !important;
  box-sizing: content-box !important;
}
.sor-route-intro strong,
.sor-route-strip a strong { font-size: 0.86rem !important; line-height: 1.15 !important; }
.sor-route-intro span,
.sor-route-strip a span { font-size: 0.76rem !important; line-height: 1.18 !important; }
.sor-card-grid--games,
.sor-card-grid--resources,
.sor-card-grid--tracks,
.sor-canon-page .playlist-track-list {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)) !important;
}
.sor-canon-page .playlist-track {
  min-height: 255px !important;
}
.sor-canon-page .playlist-track__main h3 {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(1.22rem, 1.35vw, 1.5rem) !important;
  line-height: 1.18 !important;
  color: #231306 !important;
}
.sor-canon-page .card-kicker {
  font-size: 0.73rem !important;
  letter-spacing: 0.13em !important;
  opacity: 0.78 !important;
}
.sor-canon-page .playlist-global-progress,
.sor-canon-page .playlist-track__progress {
  background: rgba(6, 23, 37, 0.20) !important;
  border-color: rgba(6, 23, 37, 0.28) !important;
}
.sor-canon-page .playlist-global-progress span,
.sor-canon-page .playlist-track__progress span {
  background: linear-gradient(90deg, #0a3453, #d9a53d, #fff3be) !important;
  box-shadow: 0 0 16px rgba(255, 229, 165, 0.72) !important;
}
.sor-rights-inline {
  border-left: 3px solid rgba(217, 165, 61, 0.78);
  padding-left: 0.85rem;
  font-size: 0.95rem !important;
}
.sor-protected-toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: min(520px, calc(100vw - 2rem));
  padding: 0.7rem 1rem;
  border: 1px solid rgba(241, 196, 108, 0.75);
  border-radius: 999px;
  background: rgba(6, 23, 37, 0.94);
  color: #fff2d0;
  font-family: Georgia, 'Times New Roman', serif;
  box-shadow: 0 0 24px rgba(255, 229, 165, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}
.sor-protected-toast.is-visible { opacity: 1; }
@media print {
body.sor-protected-page .sor-main { display: none !important; }
body.sor-protected-page::before {
    content: "Infinite Forge Studio music, lyrics, notes, and related materials are protected and are not provided for printing from the website.";
    display: block;
    padding: 2rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: #000;
  }
}
@media (max-width: 1050px) {
.sor-content-row--page { grid-template-columns: 1fr !important; }
.sor-page-column { padding: 1rem !important; }
.sor-route-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 700px) {
.sor-hero { min-height: clamp(350px, 72vw, 480px) !important; }
.sor-fact-ribbon { grid-template-columns: 1fr !important; }
.sor-route-strip__inner { grid-template-columns: 1fr !important; }
}
body.sor-canon-page {
  --sor-heading-font: "Trajan Pro", "Cinzel", "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
  --sor-body-font: "Baskerville", "Palatino Linotype", Georgia, serif;
  --sor-blue-accent: #0c5578;
  --sor-progress-aqua: #49c6e5;
}
.sor-hero {
  min-height: clamp(330px, 25.5vw, 430px) !important;
  padding: clamp(1.2rem, 2.2vw, 2.45rem) 1rem 0.85rem !important;
  background-position: center center !important;
}
.sor-hero::before {
  background:
    radial-gradient(ellipse at 50% 26%, rgba(255, 251, 230, 0.82) 0%, rgba(255, 247, 219, 0.48) 28%, rgba(255, 247, 219, 0.16) 50%, rgba(255, 247, 219, 0.02) 73%),
    linear-gradient(90deg, rgba(255,246,218,0.12), rgba(255,246,218,0.02) 30%, rgba(255,246,218,0.02) 70%, rgba(255,246,218,0.10)) !important;
}
.sor-hero__text {
  position: relative !important;
  isolation: isolate !important;
  padding: 0.25rem clamp(1.2rem, 3vw, 2.6rem) 0.45rem !important;
}
.sor-hero__text::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.85rem clamp(-2.4rem, -3vw, -1rem) -0.65rem;
  background: radial-gradient(ellipse at 50% 47%, rgba(255, 249, 225, 0.90), rgba(255, 247, 220, 0.60) 35%, rgba(255, 247, 220, 0.25) 56%, rgba(255, 247, 220, 0) 78%);
  filter: blur(1.5px);
  pointer-events: none;
}
.sor-hero h1,
.sor-kicker,
.sor-subtitle,
.sor-desc,
.sor-credit {
  text-shadow: 0 1px 0 rgba(255,255,245,0.78), 0 0 14px rgba(255,248,222,0.92), 0 0 26px rgba(255,248,222,0.45) !important;
}
.sor-hero h1 {
  font-family: var(--sor-heading-font) !important;
  font-weight: 400 !important;
  letter-spacing: 0.066em !important;
}
.sor-fact-ribbon {
  min-height: 0 !important;
  height: 86px !important;
  max-height: 86px !important;
  align-items: stretch !important;
  overflow: visible !important;
}
.sor-fact-ribbon article {
  min-height: 0 !important;
  height: 86px !important;
  padding: 0.32rem clamp(0.62rem, 1.35vw, 1.05rem) !important;
  gap: 0.62rem !important;
  align-items: center !important;
  overflow: visible !important;
}
.sor-fact-ribbon img {
  display: block !important;
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
}
.sor-fact-ribbon strong {
  font-family: var(--sor-heading-font) !important;
  font-size: clamp(0.78rem, 0.82vw, 0.92rem) !important;
  line-height: 1.12 !important;
}
.sor-fact-ribbon span {
  font-family: var(--sor-body-font) !important;
  font-size: clamp(0.72rem, 0.76vw, 0.84rem) !important;
  line-height: 1.18 !important;
}
.sor-side-nav a span,
.sor-route-strip a strong,
.sor-route-intro strong,
.sor-overview h2,
.sor-album-panel h2,
.sor-section-heading h2,
.sor-canon-page .playlist-head h2,
.sor-canon-page .playlist-track__main h3 {
  font-family: var(--sor-heading-font) !important;
}
.sor-side-nav a {
  min-height: 48px !important;
  padding: 0.42rem 2.45rem 0.42rem 1.15rem !important;
  overflow: visible !important;
}
.sor-side-nav img {
  flex: 0 0 32px !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
}
.sor-overview p + p,
.sor-section-heading p + p,
.sor-panel p + p,
.sor-card p + p,
.playlist-track__main p + p {
  margin-top: 0.82rem !important;
}
.sor-overview p,
.sor-album-panel p,
.sor-section-heading p,
.sor-card p,
.sor-retail-note,
.sor-rights-inline {
  font-family: var(--sor-body-font) !important;
}
.sor-eyebrow,
.sor-canon-page .eyebrow,
.sor-canon-page .card-kicker {
  font-family: var(--sor-heading-font) !important;
  letter-spacing: 0.20em !important;
}
.sor-rule,
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after {
  background-position: center center !important;
  background-size: contain !important;
}
.sor-album-panel h2::after,
.sor-section-heading h2::after {
  margin-left: auto !important;
  margin-right: auto !important;
}
.sor-overview h2::after {
  width: min(230px, 46vw) !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.sor-album-panel h2::after {
  width: min(240px, 78%) !important;
}
.sor-btn,
.sor-card-link,
.sor-canon-page .btn,
.sor-canon-page .playlist-track__play {
  font-family: var(--sor-heading-font) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  border-radius: 6px !important;
}
.sor-card-link:hover,
.sor-card-link:focus-visible,
.sor-btn:hover,
.sor-btn:focus-visible,
.sor-route-strip a:hover,
.sor-route-strip a:focus-visible,
.sor-side-nav a:hover,
.sor-side-nav a:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 242, 190, 0.62), 0 0 20px rgba(255, 232, 160, 0.58), 0 10px 22px rgba(0,0,0,0.16) !important;
}
.sor-route-strip {
  margin-bottom: clamp(1.2rem, 2vw, 2.2rem) !important;
  overflow: visible !important;
}
.sor-route-strip__inner {
  min-height: 108px !important;
  height: 108px !important;
  align-items: center !important;
  overflow: visible !important;
}
.sor-route-strip__inner > * {
  padding: 0.42rem 0.62rem !important;
  overflow: visible !important;
}
.sor-route-intro {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0.24rem !important;
}
.sor-route-intro span {
  max-width: 280px !important;
}
.sor-route-strip a {
  min-height: 94px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 8px !important;
  position: relative !important;
  overflow: visible !important;
}
.sor-route-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 54px !important;
  height: 44px !important;
  margin: 0 auto 0.15rem !important;
  overflow: visible !important;
}
.sor-route-strip a img {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
}
.sor-route-strip a::after {
  content: "";
  position: absolute;
  inset: 7px !important;
  border: 1px solid rgba(217,165,61,0.16);
  border-radius: 8px;
  opacity: 1 !important;
  pointer-events: none;
}
.sor-route-strip a:hover::after,
.sor-route-strip a:focus-visible::after {
  border-color: rgba(255, 232, 160, 0.70) !important;
  box-shadow: 0 0 20px rgba(255, 232, 160, 0.42) !important;
}
.sor-route-intro strong,
.sor-route-strip a strong {
  font-size: 0.82rem !important;
  line-height: 1.05 !important;
}
.sor-route-intro span,
.sor-route-strip a span:not(.sor-route-icon) {
  font-size: 0.72rem !important;
  line-height: 1.12 !important;
}
.sor-card {
  overflow: visible !important;
}
.sor-card > img {
  display: block !important;
  width: 62px !important;
  height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 0 0.75rem !important;
  overflow: visible !important;
}
.sor-card-grid--resources {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
  align-items: stretch !important;
}
.sor-card-link {
  margin-top: auto !important;
}
.sor-canon-page .playlist-global-progress,
.sor-canon-page .playlist-track__progress,
.sor-canon-page audio {
  accent-color: var(--sor-progress-aqua) !important;
}
.sor-canon-page .playlist-global-progress,
.sor-canon-page .playlist-track__progress {
  background: rgba(7, 29, 45, 0.30) !important;
  border: 1px solid rgba(12, 85, 120, 0.54) !important;
}
.sor-canon-page .playlist-global-progress span,
.sor-canon-page .playlist-track__progress span {
  background: linear-gradient(90deg, #49c6e5, #0c5578, #f7d37d) !important;
  box-shadow: 0 0 18px rgba(73, 198, 229, 0.72), 0 0 12px rgba(247, 211, 125, 0.45) !important;
}
.sor-canon-page .playlist-track.is-active {
  border-color: rgba(73, 198, 229, 0.75) !important;
  box-shadow: 0 0 0 1px rgba(73, 198, 229, 0.28), 0 18px 38px rgba(52,31,8,0.16), 0 0 24px rgba(73,198,229,0.16) !important;
}
.sor-retail-note {
  margin: 0.45rem 0 0 !important;
  font-size: 0.94rem !important;
  color: #31445a !important;
}
@media (max-width: 1050px) {
.sor-fact-ribbon,
  .sor-route-strip__inner {
    height: auto !important;
    max-height: none !important;
  }
.sor-fact-ribbon article,
  .sor-route-strip a {
    height: auto !important;
    min-height: 78px !important;
  }
.sor-route-strip__inner {
    min-height: 0 !important;
  }
}
@media (max-width: 700px) {
.sor-hero__text::before {
    inset: -0.6rem -0.8rem -0.6rem;
  }
.sor-fact-ribbon article {
    min-height: 74px !important;
  }
.sor-route-strip a {
    min-height: 78px !important;
  }
}
body.sor-canon-page {
  --sor-heading-font: "Baskerville", "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  --sor-display-font: "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
  --sor-body-font: "Baskerville", "Palatino Linotype", Georgia, serif;
  --sor-progress-aqua: #14bfe3;
  --sor-progress-deep: #0b5f85;
}
body.sor-canon-page .sor-fact-ribbon,
body.sor-canon-page .sor-content-row,
body.sor-canon-page .sor-content-row--page,
body.sor-canon-page .sor-route-strip {
  padding: 0 !important;
}
.sor-hero {
  min-height: clamp(300px, 24vw, 390px) !important;
  background-position: center 48% !important;
  overflow: hidden !important;
}
.sor-hero::before {
  background:
    radial-gradient(ellipse 16% 24% at 50% 7%, rgba(255,255,244,0.96) 0%, rgba(255,248,218,0.72) 23%, rgba(255,241,201,0.26) 52%, rgba(255,241,201,0.00) 78%),
    radial-gradient(ellipse 31% 42% at 50% 43%, rgba(255,250,226,0.78) 0%, rgba(255,246,217,0.50) 36%, rgba(255,246,217,0.18) 58%, rgba(255,246,217,0.00) 82%) !important;
  opacity: 0.95 !important;
}
.sor-hero__text::before {
  inset: -0.55rem clamp(-1.35rem, -1.8vw, -0.65rem) -0.45rem !important;
  background: radial-gradient(ellipse 39% 64% at 50% 48%, rgba(255,250,226,0.82), rgba(255,247,220,0.46) 42%, rgba(255,247,220,0.12) 63%, rgba(255,247,220,0) 82%) !important;
  filter: blur(0.7px) !important;
}
.sor-hero h1 {
  font-family: var(--sor-display-font) !important;
  font-size: clamp(3.05rem, 4.0vw, 4.8rem) !important;
  letter-spacing: 0.066em !important;
  white-space: nowrap !important;
}
.sor-subtitle,
.sor-kicker,
.sor-desc,
.sor-credit {
  font-family: var(--sor-body-font) !important;
}
body.sor-canon-page .sor-fact-ribbon {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  min-height: 76px !important;
  height: 76px !important;
  max-height: 76px !important;
  align-items: center !important;
  overflow: hidden !important;
}
body.sor-canon-page .sor-fact-ribbon article {
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  padding: 0.24rem clamp(0.55rem, 1.15vw, 1rem) !important;
  gap: 0.60rem !important;
  align-items: center !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-fact-ribbon img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  flex: 0 0 36px !important;
  object-fit: contain !important;
  transform: scale(0.88) !important;
  transform-origin: center !important;
}
body.sor-canon-page .sor-fact-ribbon strong {
  font-family: var(--sor-heading-font) !important;
  font-size: clamp(0.74rem, 0.78vw, 0.88rem) !important;
  line-height: 1.08 !important;
}
body.sor-canon-page .sor-fact-ribbon span {
  font-size: clamp(0.68rem, 0.72vw, 0.80rem) !important;
  line-height: 1.12 !important;
}
.sor-eyebrow,
.sor-canon-page .eyebrow,
.sor-canon-page .card-kicker {
  font-family: var(--sor-heading-font) !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #7d491d !important;
}
.sor-overview h2,
.sor-album-panel h2,
.sor-section-heading h2,
.sor-canon-page .playlist-head h2 {
  font-family: var(--sor-display-font) !important;
  font-weight: 400 !important;
  letter-spacing: 0.09em !important;
  text-transform: none !important;
}
.sor-overview p,
.sor-album-panel p,
.sor-section-heading p,
.sor-panel p,
.sor-card p,
.playlist-track__main p {
  line-height: 1.48 !important;
}
.sor-overview p + p,
.sor-section-heading p + p,
.sor-panel p + p,
.sor-card p + p,
.playlist-track__main p + p {
  margin-top: 0.95rem !important;
}
.sor-overview blockquote {
  display: flex !important;
  align-items: center !important;
  gap: 1.15rem !important;
  margin-top: 1.35rem !important;
  padding: 1rem 1.1rem !important;
  background: rgba(239, 217, 176, 0.64) !important;
  border: 1px solid rgba(156, 103, 36, 0.32) !important;
  border-radius: 7px !important;
  color: #3b2410 !important;
}
.sor-overview blockquote img {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain !important;
  transform: scale(0.9) !important;
  flex: 0 0 38px !important;
}
.sor-overview blockquote span {
  display: block !important;
  font-family: var(--sor-body-font) !important;
  font-style: italic !important;
  line-height: 1.36 !important;
}
.sor-overview blockquote small {
  display: block !important;
  margin-top: 0.28rem !important;
  font-style: normal !important;
  letter-spacing: 0.05em !important;
}
.sor-album-panel h2::after {
  width: min(250px, 82%) !important;
  margin: 0.30rem auto 0.62rem !important;
  opacity: 0.88 !important;
}
.sor-side-nav a {
  min-height: 46px !important;
  overflow: visible !important;
}
.sor-side-nav img {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
  transform: scale(0.82) !important;
  overflow: visible !important;
}
.sor-side-nav a span { font-family: var(--sor-heading-font) !important; }
.sor-card-grid--resources {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: clamp(1rem, 1.8vw, 1.35rem) !important;
}
.sor-card-grid--resources .sor-card {
  min-height: 245px !important;
  padding: clamp(1.05rem, 1.7vw, 1.45rem) !important;
  overflow: visible !important;
}
.sor-card > img,
.sor-card-grid--resources .sor-card > img {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  transform: scale(0.82) !important;
  transform-origin: center !important;
  overflow: visible !important;
  margin-bottom: 0.5rem !important;
}
body.sor-canon-page .sor-route-strip {
  margin: 0 0 clamp(1.1rem, 2vw, 2rem) !important;
  background: rgba(236, 209, 160, 0.48) !important;
  border-top: 1px solid rgba(156,103,36,0.24) !important;
  border-bottom: 1px solid rgba(156,103,36,0.24) !important;
  overflow: hidden !important;
}
body.sor-canon-page .sor-route-strip__inner {
  min-height: 122px !important;
  height: 122px !important;
  max-height: 122px !important;
  align-items: center !important;
  grid-template-columns: 1.20fr repeat(5, minmax(110px, 1fr)) !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-route-strip__inner > * {
  padding: 0.32rem 0.58rem !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-route-strip a {
  min-height: 84px !important;
  height: 84px !important;
  max-height: 84px !important;
  border-radius: 7px !important;
  background: rgba(255, 246, 222, 0.12) !important;
  border: 1px solid rgba(156,103,36,0.14) !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-route-icon {
  width: 48px !important;
  height: 36px !important;
  margin-bottom: 0.12rem !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-route-strip a img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  transform: scale(0.82) !important;
  transform-origin: center !important;
}
body.sor-canon-page .sor-route-intro strong,
body.sor-canon-page .sor-route-strip a strong {
  font-family: var(--sor-heading-font) !important;
  font-size: 0.78rem !important;
  line-height: 1.02 !important;
}
body.sor-canon-page .sor-route-intro span,
body.sor-canon-page .sor-route-strip a span:not(.sor-route-icon) {
  font-size: 0.67rem !important;
  line-height: 1.08 !important;
}
body.sor-canon-page .sor-route-strip a:hover,
body.sor-canon-page .sor-route-strip a:focus-visible {
  background: rgba(255, 252, 239, 0.58) !important;
  border-color: rgba(255, 226, 151, 0.72) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 0 1px rgba(255, 242, 190, 0.55), 0 0 22px rgba(255, 230, 160, 0.52), 0 10px 20px rgba(74, 42, 8, 0.10) !important;
}
.sor-canon-page .playlist-global-progress,
.sor-canon-page .playlist-track__progress {
  background: rgba(4, 28, 45, 0.34) !important;
  border: 1px solid rgba(20, 191, 227, 0.70) !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.22), 0 0 10px rgba(20,191,227,0.20) !important;
}
.sor-canon-page .playlist-global-progress span,
.sor-canon-page .playlist-track__progress span {
  background: linear-gradient(90deg, #19d6ff, #1498c8, #ffe7a2) !important;
  box-shadow: 0 0 18px rgba(25, 214, 255, 0.88), 0 0 10px rgba(255, 231, 162, 0.40) !important;
}
@media (max-width: 1050px) {
body.sor-canon-page .sor-fact-ribbon {
    height: auto !important;
    max-height: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
body.sor-canon-page .sor-fact-ribbon article {
    height: 70px !important;
    min-height: 70px !important;
  }
body.sor-canon-page .sor-route-strip__inner {
    height: auto !important;
    max-height: none !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
body.sor-canon-page .sor-route-intro { grid-column: 1 / -1 !important; }
}
@media (max-width: 700px) {
.sor-hero h1 { white-space: normal !important; }
body.sor-canon-page .sor-fact-ribbon { grid-template-columns: 1fr !important; }
body.sor-canon-page .sor-fact-ribbon article { height: 68px !important; min-height: 68px !important; }
body.sor-canon-page .sor-route-strip__inner { grid-template-columns: 1fr !important; }
body.sor-canon-page .sor-route-strip a { height: 78px !important; min-height: 78px !important; }
}
body.sor-canon-page {
  --sor-heading-font: "Cinzel", "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
  --sor-display-font: "Cormorant Garamond", "Cinzel", "Baskerville", "Palatino Linotype", Georgia, serif;
  --sor-body-font: "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
}
body.sor-canon-page .sor-hero::before {
  background:
    radial-gradient(ellipse 15% 23% at 50% 7%, rgba(255,255,244,0.92) 0%, rgba(255,248,218,0.64) 22%, rgba(255,241,201,0.20) 48%, rgba(255,241,201,0.00) 72%),
    radial-gradient(ellipse 26% 31% at 50% 36%, rgba(255,250,226,0.56) 0%, rgba(255,246,217,0.32) 36%, rgba(255,246,217,0.08) 57%, rgba(255,246,217,0.00) 77%) !important;
  opacity: 0.88 !important;
}
body.sor-canon-page .sor-hero__text::before {
  inset: -0.35rem clamp(-1rem, -1.3vw, -0.45rem) 1.55rem !important;
  background: radial-gradient(ellipse 34% 48% at 50% 34%, rgba(255,250,226,0.58), rgba(255,247,220,0.25) 40%, rgba(255,247,220,0.06) 62%, rgba(255,247,220,0) 80%) !important;
  filter: blur(0.5px) !important;
}
body.sor-canon-page .sor-hero h1 {
  text-shadow: 0 1px 0 rgba(255,250,230,0.66), 0 0 13px rgba(255,245,212,0.42) !important;
}
body.sor-canon-page .sor-subtitle,
body.sor-canon-page .sor-kicker,
body.sor-canon-page .sor-desc,
body.sor-canon-page .sor-credit {
  color: #211105 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 1px 2px rgba(255, 247, 219, 0.42) !important;
}
body.sor-canon-page .sor-desc {
  font-size: clamp(1.0rem, 1.20vw, 1.26rem) !important;
  line-height: 1.22 !important;
}
body.sor-canon-page .sor-credit {
  font-size: clamp(0.95rem, 1.08vw, 1.16rem) !important;
  line-height: 1.18 !important;
}
body.sor-canon-page .sor-overview h2,
body.sor-canon-page .sor-album-panel h2,
body.sor-canon-page .sor-section-heading h2,
body.sor-canon-page .playlist-head h2 {
  font-family: var(--sor-display-font) !important;
  font-weight: 500 !important;
  letter-spacing: 0.035em !important;
  text-transform: none !important;
}
body.sor-canon-page .sor-eyebrow,
body.sor-canon-page .eyebrow,
body.sor-canon-page .card-kicker,
body.sor-canon-page .sor-side-nav a span,
body.sor-canon-page .sor-route-strip a strong,
body.sor-canon-page .sor-route-intro strong {
  font-family: var(--sor-heading-font) !important;
}
body.sor-canon-page .sor-fact-ribbon,
body.sor-canon-page .sor-route-strip,
body.sor-canon-page .sor-side-nav,
body.sor-canon-page .sor-card {
  overflow: visible !important;
}
body.sor-canon-page .sor-fact-ribbon article {
  overflow: visible !important;
  padding-left: clamp(0.85rem, 1.45vw, 1.35rem) !important;
  padding-right: clamp(0.85rem, 1.45vw, 1.35rem) !important;
}
body.sor-canon-page .sor-fact-ribbon img {
  width: 39px !important;
  height: 39px !important;
  max-width: 39px !important;
  max-height: 39px !important;
  transform: none !important;
}
body.sor-canon-page .sor-route-icon {
  width: 48px !important;
  height: 42px !important;
}
body.sor-canon-page .sor-route-strip a img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  transform: none !important;
  filter: drop-shadow(0 1px 2px rgba(66,39,8,0.18));
}
body.sor-canon-page .sor-side-nav img {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  transform: none !important;
}
body.sor-canon-page .sor-card > img,
body.sor-canon-page .sor-card-grid--resources .sor-card > img {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  transform: none !important;
  filter: drop-shadow(0 1px 2px rgba(66,39,8,0.18));
}
body.sor-canon-page .playlist-track {
  border-radius: 18px !important;
  overflow: hidden !important;
  outline: none !important;
}
body.sor-canon-page .playlist-track::before,
body.sor-canon-page .sor-card::before {
  top: 0.85rem !important;
  bottom: 0.85rem !important;
  left: 0 !important;
  height: auto !important;
  border-radius: 0 8px 8px 0 !important;
}
body.sor-canon-page .playlist-track.is-active {
  outline: none !important;
  border-color: rgba(73, 198, 229, 0.75) !important;
  box-shadow: inset 0 0 0 2px rgba(73,198,229,0.48), 0 18px 38px rgba(52,31,8,0.16), 0 0 24px rgba(73,198,229,0.16) !important;
}
body.sor-canon-page .playlist-track.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,235,176,0.58);
  pointer-events: none;
}
body.sor-canon-page .sor-route-strip a::after {
  inset: 5px !important;
  border-radius: 7px !important;
}
body.sor-canon-page .sor-route-strip a:hover::after,
body.sor-canon-page .sor-route-strip a:focus-visible::after {
  box-shadow: inset 0 0 0 1px rgba(255,235,176,0.58), 0 0 18px rgba(255,229,165,0.36) !important;
}
body.sor-canon-page .playlist-head {
  align-items: flex-start !important;
}
body.sor-canon-page .playlist-head > div:first-child {
  max-width: 760px !important;
}
body.sor-canon-page .sor-retail-note {
  max-width: 46rem !important;
}
@media (max-width: 1050px) {
body.sor-canon-page .sor-fact-ribbon img { width: 38px !important; height: 38px !important; }
body.sor-canon-page .sor-route-strip a img { width: 34px !important; height: 34px !important; }
}
body.sor-canon-page .sor-hero h1 {
  color: #1f1207 !important;
  text-shadow:
    0 1px 0 rgba(255, 251, 235, 0.70),
    0 0 16px rgba(255, 244, 210, 0.58) !important;
}
body.sor-canon-page .sor-subtitle,
body.sor-canon-page .sor-kicker,
body.sor-canon-page .sor-desc,
body.sor-canon-page .sor-credit {
  color: #fff2cf !important;
  -webkit-text-stroke: 0 !important;
  text-shadow:
    0 1px 0 rgba(70, 37, 8, 0.70),
    0 2px 4px rgba(0, 0, 0, 0.78),
    0 0 16px rgba(0, 0, 0, 0.58) !important;
}
body.sor-canon-page .sor-subtitle {
  color: #fff6dd !important;
}
body.sor-canon-page .sor-desc,
body.sor-canon-page .sor-credit {
  font-weight: 500 !important;
}
body.sor-canon-page .sor-fact-ribbon,
body.sor-canon-page .sor-fact-ribbon article,
body.sor-canon-page .sor-side-nav,
body.sor-canon-page .sor-side-nav a,
body.sor-canon-page .sor-route-strip,
body.sor-canon-page .sor-route-strip__inner,
body.sor-canon-page .sor-route-strip__inner > *,
body.sor-canon-page .sor-route-strip a,
body.sor-canon-page .sor-route-icon {
  overflow: visible !important;
}
body.sor-canon-page .sor-fact-ribbon img,
body.sor-canon-page .sor-side-nav img,
body.sor-canon-page .sor-route-strip a img,
body.sor-canon-page .sor-card > img,
body.sor-canon-page .sor-card-grid--resources .sor-card > img {
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  clip-path: none !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-fact-ribbon img {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px !important;
}
body.sor-canon-page .sor-side-nav img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  flex: 0 0 34px !important;
}
body.sor-canon-page .sor-route-icon {
  width: 46px !important;
  height: 42px !important;
  margin-bottom: 0.1rem !important;
}
body.sor-canon-page .sor-route-strip a img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
}
body.sor-canon-page .sor-hero::before {
  background: radial-gradient(ellipse 10% 14% at 50% 5%, rgba(255,255,244,0.76) 0%, rgba(255,248,218,0.36) 34%, rgba(255,241,201,0.09) 62%, rgba(255,241,201,0) 78%) !important;
  opacity: 0.72 !important;
}
body.sor-canon-page .sor-hero__text::before {
  display: none !important;
  content: none !important;
}
body.sor-canon-page .sor-rule,
body.sor-canon-page .sor-overview h2::after,
body.sor-canon-page .sor-album-panel h2::after,
body.sor-canon-page .sor-section-heading h2::after {
  background-color: transparent !important;
  mix-blend-mode: normal !important;
  isolation: auto !important;
}
body.sor-canon-page .sor-resource-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
body.sor-canon-page .sor-resource-panel {
  scroll-margin-top: 7rem;
  border: 1px solid rgba(184, 135, 54, 0.42);
  border-left: 5px solid rgba(199, 139, 50, 0.88);
  border-radius: 16px;
  background: rgba(255, 247, 224, 0.72);
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 26px rgba(52, 31, 8, 0.08);
}
body.sor-canon-page .sor-resource-panel h3 {
  margin: 0.15rem 0 0.4rem;
  font-family: var(--sor-display-font, Georgia, serif);
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
  color: #2a1607;
}
body.sor-canon-page .sor-resource-panel p:last-child {
  margin-bottom: 0;
}
body.sor-canon-page .sor-resource-panel:target {
  box-shadow: 0 16px 34px rgba(52, 31, 8, 0.14), 0 0 0 2px rgba(255, 230, 170, 0.78), 0 0 22px rgba(255, 230, 170, 0.42);
}
@media (max-width: 780px) {
body.sor-canon-page .sor-resource-panels { grid-template-columns: 1fr; }
}
body.sor-lyrics-open {
  overflow: hidden;
}
.sor-lyrics-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  border-radius: 999px;
  border: 1px solid rgba(134, 84, 23, 0.42);
  background: linear-gradient(180deg, rgba(255, 247, 222, 0.98), rgba(226, 195, 132, 0.96));
  color: #291604;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.55rem 1rem;
  box-shadow: 0 8px 18px rgba(43, 24, 6, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.sor-lyrics-button:hover,
.sor-lyrics-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(218, 174, 93, 0.9);
  box-shadow: 0 0 16px rgba(218, 174, 93, 0.42), 0 12px 26px rgba(43, 24, 6, 0.2);
  outline: none;
}
.sor-lyrics-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2.5vw, 2rem);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 233, 168, 0.18), transparent 34%),
    rgba(4, 10, 18, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sor-lyrics-modal.is-open {
  display: flex;
}
.sor-lyrics-panel {
  position: relative;
  width: min(825px, 96vw);
  max-height: min(86vh, 980px);
  overflow-y: auto;
  border-radius: 28px;
  border: 1px solid rgba(219, 171, 82, 0.62);
  background:
    radial-gradient(circle at top, rgba(255, 247, 212, 0.62), transparent 34%),
    linear-gradient(180deg, rgba(255, 246, 220, 0.98), rgba(232, 211, 170, 0.98));
  color: #261607;
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.62),
    inset 0 0 60px rgba(126, 81, 27, 0.14);
  padding: clamp(1.3rem, 4vw, 3rem);
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.sor-lyrics-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(122, 78, 25, 0.18);
  border-radius: 22px;
  pointer-events: none;
}
.sor-lyrics-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin: -0.35rem -0.35rem 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 49, 81, 0.28);
  background: #071a29;
  color: #fff2d0;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.sor-lyrics-close:hover,
.sor-lyrics-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(218, 174, 93, 0.35), 0 10px 22px rgba(0, 0, 0, 0.22);
}
.sor-lyrics-album {
  margin: 0;
  font-family: "Cinzel Decorative", "Cinzel", Georgia, serif;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.058em;
  text-align: center;
  color: #071a29;
  text-shadow: 0 1px 0 rgba(255, 251, 236, 0.85);
}
.sor-lyrics-title {
  margin: 0.55rem auto 0;
  max-width: 670px;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.05;
  text-align: center;
  color: #8a5a17;
  letter-spacing: 0.025em;
}
.sor-lyrics-divider {
  width: min(330px, 70vw);
  height: 27px;
  margin: 1rem auto 1.2rem;
  background: url('../images/sacred/sor-divider.svg') center center / contain no-repeat;
  opacity: 0.82;
}
.sor-lyrics-body {
  clear: both;
  max-width: 610px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 2.35vw, 1.42rem);
  line-height: 1.72;
  text-align: center;
}
.sor-lyrics-body p {
  margin: 0 0 1.35rem;
  white-space: pre-line;
}
.sor-lyrics-note {
  max-width: 590px;
  margin: 1.8rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(133, 87, 27, 0.24);
  color: rgba(55, 35, 13, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 760px) {
.sor-canon-page .playlist-track__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.sor-canon-page .playlist-track__progress,
  .sor-canon-page .playlist-track__time {
    grid-column: 1 / -1;
  }
.sor-lyrics-panel {
    border-radius: 20px;
    max-height: 88vh;
  }
.sor-lyrics-panel::before {
    inset: 9px;
    border-radius: 16px;
  }
.sor-lyrics-close {
    min-width: 40px;
    min-height: 40px;
  }
}
.sor-lyrics-panel::before {
  display: none !important;
  content: none !important;
}
.sor-lyrics-panel {
  border: 2px solid rgba(183, 128, 43, 0.72) !important;
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 249, 228, 0.42),
    inset 0 0 60px rgba(126, 81, 27, 0.14) !important;
}
.sor-lyrics-body {
  padding: 0.1rem clamp(0.15rem, 1vw, 0.35rem) 0 !important;
}
body.sor-canon-page .sor-rule,
body.sor-canon-page .sor-overview h2::after,
body.sor-canon-page .sor-album-panel h2::after,
body.sor-canon-page .sor-section-heading h2::after,
.sor-lyrics-divider {
  background-color: transparent !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.sor-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.sor-resource-actions .sor-card-link {
  margin-top: 0 !important;
}
.sor-lyrics-index-page .sor-hero--lyrics-notes {
  background-image:
    linear-gradient(180deg, rgba(248, 231, 188, 0.84), rgba(242, 220, 174, 0.90)),
    url('../images/sacred/church_header_banner.webp');
}
.sor-lyrics-index-intro .sor-section-heading {
  max-width: 920px;
}
.sor-lyrics-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.sor-lyrics-jump-grid a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(185, 142, 63, 0.35);
  border-radius: 18px;
  background: rgba(255, 249, 232, 0.78);
  color: #2c2016;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(69, 49, 22, 0.08);
}
.sor-lyrics-jump-grid strong,
.sor-lyrics-jump-grid span {
  display: block;
}
.sor-lyrics-jump-grid strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: #1d3150;
}
.sor-lyrics-jump-grid span {
  margin-top: 0.25rem;
  color: rgba(54, 40, 25, 0.78);
}
.sor-lyrics-album-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 142, 63, 0.28);
  background:
    radial-gradient(circle at top left, rgba(255, 239, 185, 0.38), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 235, 0.94), rgba(238, 219, 178, 0.92));
  box-shadow: 0 22px 60px rgba(58, 40, 19, 0.16);
}
.sor-lyrics-album-showcase::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  pointer-events: none;
  border: 1px solid rgba(168, 123, 47, 0.20);
  border-radius: 24px;
}
.sor-lyrics-album-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.sor-lyrics-album-head h2 {
  margin: 0.15rem 0 0.7rem;
  font-family: "Cinzel Decorative", "Cinzel", Georgia, serif;
  color: #1d3150;
}
.sor-lyrics-album-head p {
  max-width: 760px;
}
.sor-lyrics-album-head img {
  width: min(170px, 24vw);
  max-height: 170px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18));
}
.sor-lyrics-album-showcase--echoes .sor-lyrics-album-head img,
.sor-lyrics-album-showcase--personal .sor-lyrics-album-head img {
  width: 82px;
  max-height: 82px;
  padding: 0.75rem;
  background: rgba(255, 250, 235, 0.72);
  border: 1px solid rgba(185, 142, 63, 0.25);
}
.sor-lyrics-catalog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.sor-lyrics-catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(185, 142, 63, 0.27);
  border-radius: 18px;
  background: rgba(255, 252, 242, 0.82);
  box-shadow: 0 12px 26px rgba(69, 49, 22, 0.08);
}
.sor-lyrics-catalog-card h3 {
  margin: 0.25rem 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.08;
  color: #2a1d13;
}
.sor-lyrics-catalog-card p:not(.card-kicker) {
  margin: 0 0 1rem;
  color: rgba(52, 38, 22, 0.82);
}
.sor-lyrics-card-actions {
  margin-top: auto;
}
.sor-lyrics-catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  margin-top: 0.15rem;
  border: 1px solid rgba(29, 49, 80, 0.35);
  background: #1d3150;
  color: #fff7de;
}
.sor-lyrics-catalog-button:hover,
.sor-lyrics-catalog-button:focus-visible {
  background: #28446d;
  color: #fff7de;
}
.sor-independent-note {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: rgba(47, 37, 21, 0.76);
}
@media (max-width: 820px) {
.sor-lyrics-jump-grid,
  .sor-lyrics-catalog-grid,
  .sor-lyrics-album-head {
    grid-template-columns: 1fr;
  }
.sor-lyrics-album-head img {
    justify-self: start;
    width: min(150px, 48vw);
  }
}
body.sor-canon-page {
  background:
    linear-gradient(180deg, rgba(255,246,218,0.08), rgba(255,246,218,0.18)),
    url('../images/sacred/church_wallpaper.webp') center top / cover fixed no-repeat !important;
}
.sor-hero {
  background: url('../images/sacred/church_header_banner.webp') center center / cover no-repeat !important;
}
body.sor-canon-page .sor-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 246, 218, 0.10), rgba(242, 220, 174, 0.18)),
    radial-gradient(circle at 50% 8%, rgba(255,255,232,0.22), rgba(255,255,232,0.06) 24%, transparent 56%) !important;
}
.sor-lyrics-index-page .sor-hero--lyrics-notes {
  background: url('../images/sacred/church_header_banner.webp') center center / cover no-repeat !important;
}
.sor-lyrics-index-page .sor-hero--lyrics-notes::before {
  background:
    linear-gradient(180deg, rgba(255, 243, 212, 0.30), rgba(239, 216, 170, 0.42)),
    radial-gradient(circle at 50% 11%, rgba(255, 249, 226, 0.26), rgba(255, 249, 226, 0.06) 30%, transparent 60%) !important;
}
@media (max-width: 900px) {
body.sor-canon-page {
    background-attachment: scroll !important;
  }
}
body.sor-canon-page .sor-hero,
body.sor-lyrics-index-page .sor-hero--lyrics-notes,
body.sor-resources-page .sor-hero {
  background: url('../images/sacred/church_header_banner.webp') center center / cover no-repeat !important;
}
body.sor-lyrics-index-page .sor-hero--lyrics-notes::before,
body.sor-resources-page .sor-hero::before {
  background:
    radial-gradient(circle at 50% 13%, rgba(255, 247, 221, 0.16), rgba(255, 247, 221, 0.04) 28%, transparent 58%),
    linear-gradient(180deg, rgba(28, 16, 4, 0.42), rgba(28, 16, 4, 0.18) 45%, rgba(28, 16, 4, 0.35)) !important;
}
.sor-rule,
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after,
.sor-lyrics-divider {
  background-color: transparent !important;
}
body.sor-canon-page .sor-rule,
body.sor-canon-page .sor-overview h2::after,
body.sor-canon-page .sor-album-panel h2::after,
body.sor-canon-page .sor-section-heading h2::after,
body.sor-canon-page .sor-lyrics-divider,
.sor-rule,
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after,
.sor-lyrics-divider {
  width: min(205px, 48vw) !important;
  height: 24px !important;
  background: url('../images/sacred/sor-divider.svg') center center / contain no-repeat !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
body.sor-canon-page .sor-lyrics-album-showcase {
  padding: clamp(1.9rem, 3.2vw, 2.8rem) !important;
  overflow: visible !important;
}
body.sor-canon-page .sor-lyrics-album-showcase::before {
  display: none !important;
  content: none !important;
}
body.sor-canon-page .sor-lyrics-album-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px) !important;
  gap: clamp(1.4rem, 3vw, 2.4rem) !important;
  align-items: start !important;
  margin: 0 0 clamp(1.6rem, 3vw, 2.2rem) !important;
  padding: 0 !important;
}
body.sor-canon-page .sor-lyrics-album-head > div {
  min-width: 0 !important;
}
body.sor-canon-page .sor-lyrics-album-head img {
  justify-self: end !important;
  width: min(210px, 100%) !important;
  max-width: 210px !important;
  max-height: none !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}
body.sor-canon-page .sor-lyrics-album-head h2,
body.sor-canon-page .sor-lyrics-album-head p,
body.sor-canon-page .sor-lyrics-album-head .sor-eyebrow {
  position: relative !important;
  z-index: 2 !important;
}
body.sor-canon-page .sor-lyrics-catalog-grid {
  gap: clamp(1rem, 2vw, 1.4rem) !important;
}
body.sor-canon-page .sor-lyrics-catalog-card {
  padding: clamp(1.25rem, 2.2vw, 1.65rem) !important;
}
@media (max-width: 820px) {
body.sor-canon-page .sor-lyrics-album-head {
    grid-template-columns: 1fr !important;
  }
body.sor-canon-page .sor-lyrics-album-head img {
    justify-self: start !important;
    width: min(190px, 55vw) !important;
    max-width: min(190px, 55vw) !important;
  }
}
body.sor-canon-page .sor-rule,
body.sor-canon-page .sor-overview h2::after,
body.sor-canon-page .sor-album-panel h2::after,
body.sor-canon-page .sor-section-heading h2::after,
body.sor-canon-page .sor-lyrics-divider,
.sor-rule,
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after,
.sor-lyrics-divider {
  width: min(188px, 44vw) !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  background: url('../images/sacred/sor-divider.svg') center center / 188px 34px no-repeat !important;
  background-color: transparent !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.sor-rule {
  display: block !important;
  margin-top: 0.45rem !important;
  margin-bottom: 0.55rem !important;
}
.sor-rule::before,
.sor-rule::after,
.sor-rule span,
.sor-rule span::before,
.sor-rule span::after {
  display: none !important;
  content: none !important;
}
.sor-lyrics-index-page .sor-hero--lyrics-notes .sor-kicker {
  margin-top: 0.42rem !important;
  color: rgba(255, 248, 223, 0.96) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.56) !important;
}
.sor-lyrics-index-page .sor-hero--lyrics-notes .sor-desc {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: rgba(255, 247, 220, 0.94) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58) !important;
}
.sor-lyrics-index-intro .sor-rights-inline {
  margin-top: 0.85rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 760px !important;
  color: rgba(65, 47, 26, 0.82) !important;
  font-size: 0.95rem !important;
  font-style: normal !important;
}
body.sor-canon-page .sor-overview {
  background:
    linear-gradient(135deg, rgba(255, 250, 230, 0.94), rgba(238, 221, 178, 0.86)),
    radial-gradient(circle at 92% 12%, rgba(217, 165, 61, 0.20), transparent 38%) !important;
  border-color: rgba(185, 142, 63, 0.36) !important;
  box-shadow: 0 18px 48px rgba(69, 49, 22, 0.11), inset 0 0 0 1px rgba(255, 255, 245, 0.42) !important;
}
@media (max-width: 700px) {
body.sor-canon-page .sor-rule,
  body.sor-canon-page .sor-overview h2::after,
  body.sor-canon-page .sor-album-panel h2::after,
  body.sor-canon-page .sor-section-heading h2::after,
  body.sor-canon-page .sor-lyrics-divider,
  .sor-rule,
  .sor-overview h2::after,
  .sor-album-panel h2::after,
  .sor-section-heading h2::after,
  .sor-lyrics-divider {
    width: min(166px, 50vw) !important;
    background-size: 166px 32px !important;
  }
}
body.sor-canon-page .sor-rule,
body.sor-canon-page .sor-overview h2::after,
body.sor-canon-page .sor-album-panel h2::after,
body.sor-canon-page .sor-section-heading h2::after,
body.sor-canon-page .sor-lyrics-divider,
.sor-rule,
.sor-overview h2::after,
.sor-album-panel h2::after,
.sor-section-heading h2::after,
.sor-lyrics-divider {
  width: min(252px, 56vw) !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  background: url('../images/sacred/sor-divider.svg') center center / contain no-repeat !important;
  background-color: transparent !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.sor-rule {
  margin-top: 0.55rem !important;
  margin-bottom: 0.7rem !important;
}
.sor-lyrics-jump-grid a {
  position: relative !important;
  overflow: hidden !important;
  min-height: 132px !important;
  padding: 1.15rem 3.1rem 1.35rem 1.2rem !important;
  border: 1px solid rgba(161, 112, 42, 0.44) !important;
  background:
    radial-gradient(circle at 92% 16%, rgba(218, 174, 93, 0.20), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 235, 0.95), rgba(243, 229, 193, 0.92)) !important;
  box-shadow:
    0 14px 30px rgba(69, 49, 22, 0.12),
    inset 0 0 0 1px rgba(255, 255, 247, 0.48) !important;
  cursor: pointer !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease !important;
}
.sor-lyrics-jump-grid a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #1d3150, #d9a53d);
  opacity: 0.86;
}
.sor-lyrics-jump-grid a::after {
  content: "Browse lyrics →";
  position: absolute;
  right: 1.05rem;
  bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5419;
}
.sor-lyrics-jump-grid a:hover,
.sor-lyrics-jump-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(217, 165, 61, 0.78) !important;
  box-shadow:
    0 18px 38px rgba(69, 49, 22, 0.18),
    0 0 0 3px rgba(217, 165, 61, 0.18),
    inset 0 0 0 1px rgba(255, 255, 247, 0.58) !important;
  outline: none;
}
.sor-lyrics-jump-grid a:hover strong,
.sor-lyrics-jump-grid a:focus-visible strong {
  color: #0d2747 !important;
}
body.sor-canon-page .sor-lyrics-album-showcase--echoes .sor-lyrics-album-head img,
body.sor-canon-page .sor-lyrics-album-showcase--personal .sor-lyrics-album-head img {
  width: min(210px, 100%) !important;
  height: 210px !important;
  max-width: 210px !important;
  max-height: 210px !important;
  padding: 1.45rem !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 252, 237, 0.98), rgba(241, 229, 201, 0.84)) !important;
  border: 1px solid rgba(185, 142, 63, 0.28) !important;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.16)) !important;
}
.sor-lyrics-index-page .sor-lyrics-modal--library {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 235, 176, 0.24), transparent 36%),
    rgba(4, 9, 15, 0.84) !important;
}
@media (max-width: 820px) {
body.sor-canon-page .sor-lyrics-album-showcase--echoes .sor-lyrics-album-head img,
  body.sor-canon-page .sor-lyrics-album-showcase--personal .sor-lyrics-album-head img {
    width: min(178px, 58vw) !important;
    height: min(178px, 58vw) !important;
    max-width: min(178px, 58vw) !important;
    max-height: min(178px, 58vw) !important;
  }
.sor-lyrics-jump-grid a {
    min-height: 118px !important;
  }
}
@media (max-width: 700px) {
body.sor-canon-page .sor-rule,
  body.sor-canon-page .sor-overview h2::after,
  body.sor-canon-page .sor-album-panel h2::after,
  body.sor-canon-page .sor-section-heading h2::after,
  body.sor-canon-page .sor-lyrics-divider,
  .sor-rule,
  .sor-overview h2::after,
  .sor-album-panel h2::after,
  .sor-section-heading h2::after,
  .sor-lyrics-divider {
    width: min(220px, 62vw) !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
  }
}
@keyframes ifsGlobeSpinMouseV1114 {
  0% {
    transform:
      translate(calc(-50% + var(--ifs-globe-x, 0px)), calc(-50% + var(--ifs-globe-y, 0px)))
      rotate(0deg)
      scale(1);
  }
  50% {
    transform:
      translate(calc(-50% + var(--ifs-globe-x, 0px)), calc(-50% + var(--ifs-globe-y, 0px)))
      rotate(180deg)
      scale(1.001);
  }
  100% {
    transform:
      translate(calc(-50% + var(--ifs-globe-x, 0px)), calc(-50% + var(--ifs-globe-y, 0px)))
      rotate(360deg)
      scale(1);
  }
}
@keyframes ifsWaterRippleV1115 {
  0%, 100% { transform: translateX(-3%) translateY(0) scaleX(1.02); background-position: 0 0, 116% 50%; }
  45% { transform: translateX(3%) translateY(1px) scaleX(1.06); background-position: 18px 9px, 46% 50%; }
  72% { transform: translateX(1%) translateY(-1px) scaleX(1.03); background-position: 35px 18px, 14% 50%; }
}
@keyframes ifsWaterGlintV1115 {
  0%, 100% { opacity: 0.24; transform: translateX(-2%) scaleX(1); }
  50% { opacity: 0.50; transform: translateX(2.8%) scaleX(1.05); }
}
@keyframes ifsWaterGlintFlow {
  0% { stroke-dashoffset: 330px; opacity: .10; translate: -10px; }
  45% { opacity: .32; }
  100% { stroke-dashoffset: -330px; opacity: .12; translate: 10px 1px; }
}
@keyframes ifsPortalBreathe {
  0%, 100% { opacity: .48; transform: scale(.985); }
  50% { opacity: .9; transform: scale(1.025); }
}
@keyframes ifsPortalOrbit { to { transform: rotate(360deg); } }
@keyframes ifsPortalTransit {
  0% { stroke-dashoffset: 92px; opacity: .08; }
  36% { opacity: .38; }
  100% { stroke-dashoffset: -92px; opacity: .10; }
}
@keyframes ifsPortalStar {
  0%, 72%, 100% { opacity: .10; transform: scale(.75); }
  82% { opacity: .82; transform: scale(1.35); }
}
body.sor-poems-page .sor-album-art-feature {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.65rem);
  align-items: center;
  margin: clamp(1rem, 2.2vw, 1.45rem) 0 clamp(1.05rem, 2.4vw, 1.55rem);
  padding: clamp(0.78rem, 1.6vw, 1rem);
  border: 1px solid rgba(185, 142, 63, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 236, 173, 0.36), transparent 38%),
    linear-gradient(135deg, rgba(255, 250, 232, 0.86), rgba(236, 216, 176, 0.58));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 244, 0.52),
    0 16px 34px rgba(52, 31, 8, 0.12);
}
body.sor-poems-page .sor-album-art-feature img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(185, 142, 63, 0.45);
  box-shadow:
    0 18px 38px rgba(35, 22, 8, 0.24),
    0 0 0 5px rgba(255, 246, 218, 0.34);
}
body.sor-poems-page .sor-album-art-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
}
body.sor-poems-page .sor-album-art-feature__copy strong {
  font-family: var(--sor-display-font, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.045em;
  color: #203852;
}
body.sor-poems-page .sor-album-art-feature__copy span {
  max-width: 680px;
  font-family: var(--sor-body-font, Georgia, serif);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.55;
  color: rgba(51, 34, 15, 0.84);
}
body.sor-canon-page .sor-lyrics-album-showcase--echoes .sor-lyrics-album-head img.sor-lyrics-album-cover--echoes {
  width: min(230px, 100%) !important;
  height: auto !important;
  max-width: 230px !important;
  max-height: none !important;
  padding: 0 !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  background: rgba(255, 250, 235, 0.82) !important;
  border: 1px solid rgba(185, 142, 63, 0.42) !important;
  box-shadow:
    0 18px 38px rgba(35, 22, 8, 0.22),
    0 0 0 5px rgba(255, 246, 218, 0.30) !important;
  filter: none !important;
}
@media (max-width: 820px) {
body.sor-poems-page .sor-album-art-feature {
    grid-template-columns: 1fr;
  }
body.sor-poems-page .sor-album-art-feature img {
    width: min(245px, 72vw);
    max-width: min(245px, 72vw);
  }
body.sor-canon-page .sor-lyrics-album-showcase--echoes .sor-lyrics-album-head img.sor-lyrics-album-cover--echoes {
    width: min(190px, 58vw) !important;
    max-width: min(190px, 58vw) !important;
    justify-self: start !important;
  }
}
body.sor-tracks-page .sor-album-art-feature {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.65rem);
  align-items: center;
  margin: clamp(1rem, 2.2vw, 1.45rem) 0 clamp(1.05rem, 2.4vw, 1.55rem);
  padding: clamp(0.78rem, 1.6vw, 1rem);
  border: 1px solid rgba(185, 142, 63, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 236, 173, 0.36), transparent 38%),
    linear-gradient(135deg, rgba(255, 250, 232, 0.86), rgba(236, 216, 176, 0.58));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 244, 0.52),
    0 16px 34px rgba(52, 31, 8, 0.12);
}
body.sor-tracks-page .sor-album-art-feature img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(185, 142, 63, 0.45);
  box-shadow:
    0 18px 38px rgba(35, 22, 8, 0.24),
    0 0 0 5px rgba(255, 246, 218, 0.34);
}
body.sor-tracks-page .sor-album-art-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
}
body.sor-tracks-page .sor-album-art-feature__copy strong {
  font-family: var(--sor-display-font, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.045em;
  color: #203852;
}
body.sor-tracks-page .sor-album-art-feature__copy span {
  max-width: 680px;
  font-family: var(--sor-body-font, Georgia, serif);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.55;
  color: rgba(51, 34, 15, 0.84);
}
@media (max-width: 820px) {
body.sor-tracks-page .sor-album-art-feature {
    grid-template-columns: 1fr;
  }
body.sor-tracks-page .sor-album-art-feature img {
    width: min(245px, 72vw);
    max-width: min(245px, 72vw);
  }
}
body.sor-canon-page .sor-album-panel--gateway {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}
body.sor-canon-page .sor-album-gateway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
body.sor-canon-page .sor-album-gateway-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.7rem 0.95rem;
  text-align: center;
  border: 1px solid rgba(144, 93, 29, 0.25);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.64), rgba(237, 213, 170, 0.34));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 246, 0.38), 0 14px 26px rgba(62, 36, 7, 0.12);
}
body.sor-canon-page .sor-album-gateway-card img {
  width: min(205px, 82%);
  margin: 0 auto 0.25rem;
  border: 2px solid rgba(214, 169, 74, 0.72);
  border-radius: 12px;
  background: #061725;
  box-shadow: 0 13px 24px rgba(54, 32, 9, 0.24), 0 0 0 1px rgba(255, 248, 214, 0.24);
}
body.sor-canon-page .sor-album-gateway-card h3 {
  margin: 0.12rem 0 0;
  font-family: var(--sor-display-font, Georgia, 'Times New Roman', serif);
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  color: #2b1708;
}
body.sor-canon-page .sor-album-gateway-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.28;
  color: #4a341f;
}
body.sor-canon-page .sor-album-gateway-card .sor-btn {
  margin-top: 0.25rem;
  width: min(245px, 94%);
  min-height: 40px;
  padding: 0.62rem 1rem;
  font-size: 0.95rem;
}
@media (min-width: 1051px) {
body.sor-canon-page .sor-content-row:has(.sor-album-panel--gateway) {
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr) minmax(320px, 0.92fr);
  }
}
@media (max-width: 1050px) {
body.sor-canon-page .sor-album-gateway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
body.sor-canon-page .sor-album-gateway-grid {
    grid-template-columns: 1fr;
  }
}
.sor-card-grid--activities {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.activity-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.activity-card > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(194, 145, 59, 0.38);
  box-shadow: 0 18px 38px rgba(22, 35, 55, 0.18);
  background: #fffdf8;
}
.activity-card__actions,
.activity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.activity-detail-panel .sor-section-heading {
  margin-bottom: 1.25rem;
}
.activity-html-reader {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.activity-page {
  margin: 0;
  padding: clamp(0.7rem, 2vw, 1rem);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(194, 145, 59, 0.28);
  box-shadow: 0 18px 44px rgba(22, 35, 55, 0.16);
}
.activity-page img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  background: #fff;
}
.activity-page figcaption {
  margin-top: 0.55rem;
  color: rgba(24, 38, 58, 0.68);
  font-size: 0.86rem;
  text-align: right;
  font-style: italic;
}
.sor-section-heading--secondary {
  margin-top: 2.5rem;
}
@media (max-width: 720px) {
.activity-actions,
  .activity-card__actions {
    flex-direction: column;
  }
.activity-actions .sor-card-link,
  .activity-card__actions .sor-card-link {
    width: 100%;
    text-align: center;
  }
}
body.sor-canon-page .activity-card > img {
  aspect-ratio: 4 / 3 !important;
  min-height: 210px;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}
.sor-card-grid--future {
  margin-top: clamp(1rem, 2vw, 1.4rem);
}
.sor-dev-card > span.sor-concept-badge {
  margin-top: 0 !important;
  margin-bottom: 0.85rem !important;
  align-self: flex-start !important;
}
.sor-dev-card .sor-card-link {
  margin-top: auto !important;
}
.activity-download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: 1.15rem;
}
.activity-download-card {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: center;
  padding: clamp(0.85rem, 1.8vw, 1.1rem);
  border-radius: 18px;
  border: 1px solid rgba(194, 145, 59, 0.30);
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 14px 32px rgba(38, 26, 8, 0.10);
}
.activity-download-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  border: 1px solid rgba(194, 145, 59, 0.38);
  box-shadow: 0 14px 28px rgba(34, 22, 7, 0.16);
  background: #fffdf8;
}
.activity-download-card h4,
.future-concept-columns h4 {
  margin: 0 0 0.35rem;
  font-family: var(--sor-heading-font, "Cinzel", Georgia, serif);
  color: #213a55;
  letter-spacing: 0.02em;
}
.activity-download-card p {
  margin: 0 0 0.65rem;
}
.future-concept-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin: 1rem 0 1.2rem;
}
.future-concept-columns > div {
  padding: clamp(0.85rem, 1.6vw, 1.05rem);
  border-radius: 16px;
  background: rgba(255, 252, 244, 0.68);
  border: 1px solid rgba(194, 145, 59, 0.22);
}
.future-concept-columns ul {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
}
.future-concept-columns li + li {
  margin-top: 0.45rem;
}
body.sor-poems-page .sor-album-art-feature--other img,
body.sor-canon-page .sor-lyrics-album-showcase--personal .sor-lyrics-album-head img.sor-lyrics-album-cover--personal {
  padding: 0 !important;
  object-fit: cover !important;
  background: transparent !important;
}
body.sor-canon-page .sor-lyrics-album-showcase--personal .sor-lyrics-album-head img.sor-lyrics-album-cover--personal {
  width: min(230px, 100%) !important;
  height: auto !important;
  max-width: 230px !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(185, 142, 63, 0.45) !important;
  box-shadow: 0 18px 38px rgba(35, 22, 8, 0.22), 0 0 0 5px rgba(255, 246, 218, 0.34) !important;
}
@media (max-width: 760px) {
.activity-download-card,
  .future-concept-columns {
    grid-template-columns: 1fr;
  }
.activity-download-card > img {
    max-height: 260px;
  }
}
body.sor-canon-page .sor-card.activity-card {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding-top: clamp(1.05rem, 1.8vw, 1.35rem) !important;
}
body.sor-canon-page .sor-card.activity-card > img {
  display: block !important;
  align-self: center !important;
  width: min(100%, 230px) !important;
  height: clamp(112px, 12vw, 138px) !important;
  min-height: 0 !important;
  max-width: 230px !important;
  max-height: 138px !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0 auto 0.9rem !important;
  transform: none !important;
  border-radius: 12px !important;
  border: 1px solid rgba(194, 145, 59, 0.38) !important;
  box-shadow: 0 12px 24px rgba(34, 22, 7, 0.13) !important;
  background: #fffdf8 !important;
}
body.sor-canon-page .activity-card__actions {
  margin-top: auto !important;
  justify-content: flex-start !important;
}
body.sor-canon-page .activity-card__actions .sor-card-link {
  flex: 0 1 auto !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-grid {
  gap: 0.9rem !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-card {
  grid-template-columns: 104px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: clamp(0.75rem, 1.5vw, 1rem) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  padding: clamp(0.85rem, 1.6vw, 1rem) !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-card > img {
  width: 104px !important;
  height: 78px !important;
  min-height: 0 !important;
  max-width: 104px !important;
  max-height: 78px !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(34, 22, 7, 0.12) !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-card h4 {
  line-height: 1.2 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-card p {
  line-height: 1.45 !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-card .sor-resource-actions {
  justify-content: flex-start !important;
  gap: 0.55rem !important;
  margin-top: 0.75rem !important;
  max-width: 100% !important;
}
body.sor-canon-page .sor-resource-panel .activity-download-card .sor-card-link {
  flex: 0 1 auto !important;
  min-width: 102px !important;
  min-height: 34px !important;
  padding: 0.5rem 0.72rem !important;
  font-size: 0.76rem !important;
  white-space: nowrap !important;
}
body.sor-poems-page .sor-album-art-feature--other img {
  border-radius: 18px !important;
  box-shadow: 0 22px 46px rgba(22, 35, 55, 0.24), 0 0 0 5px rgba(255, 237, 176, 0.25) !important;
}
@media (max-width: 540px) {
body.sor-canon-page .sor-resource-panel .activity-download-card {
    grid-template-columns: 1fr !important;
  }
body.sor-canon-page .sor-resource-panel .activity-download-card > img {
    width: min(100%, 220px) !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: none !important;
    justify-self: center !important;
  }
body.sor-canon-page .sor-resource-panel .activity-download-card .sor-card-link {
    flex: 1 1 100% !important;
    text-align: center !important;
  }
}
@media (min-width: 1900px) and (min-aspect-ratio: 24/10) {
.sor-hero,
  body.sor-canon-page .sor-hero,
  .sor-lyrics-index-page .sor-hero--lyrics-notes,
  body.sor-lyrics-index-page .sor-hero--lyrics-notes {
    background-image:
      linear-gradient(90deg, rgba(9,5,0,0.48), rgba(9,5,0,0.04) 22%, rgba(9,5,0,0.04) 78%, rgba(9,5,0,0.48)),
      url('../images/sacred/church_header_banner.webp'),
      url('../images/sacred/church_header_banner.webp') !important;
    background-size:
      100% 100%,
      min(100vw, 2400px) auto,
      cover !important;
    background-position:
      center center,
      center 54%,
      center center !important;
    background-repeat:
      no-repeat,
      no-repeat,
      no-repeat !important;
  }
}
@media (max-width: 700px) and (orientation: portrait) {
.sor-hero,
  body.sor-canon-page .sor-hero,
  .sor-lyrics-index-page .sor-hero--lyrics-notes,
  body.sor-lyrics-index-page .sor-hero--lyrics-notes {
    min-height: clamp(360px, 92vw, 430px);
    background-image:
      linear-gradient(180deg, rgba(10, 5, 0, 0.10), rgba(10, 5, 0, 0.54) 48%, rgba(10, 5, 0, 0.82)),
      url('../images/sacred/church_header_banner.webp'),
      radial-gradient(circle at 50% 24%, rgba(242, 205, 124, 0.22), rgba(9, 5, 0, 0.92) 72%) !important;
    background-size:
      100% 100%,
      100% auto,
      cover !important;
    background-position:
      center center,
      center top,
      center center !important;
    background-repeat:
      no-repeat,
      no-repeat,
      no-repeat !important;
  }
}
body.sor-player-ready {
  padding-bottom: clamp(7.25rem, 11vw, 9.75rem);
}
.sor-persistent-player {
  position: fixed;
  left: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 9998;
  display: grid;
  grid-template-columns: minmax(13rem, 1.4fr) auto minmax(12rem, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(214, 177, 93, 0.55);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(20, 33, 55, 0.96), rgba(55, 40, 25, 0.94));
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: #fff8e8;
  backdrop-filter: blur(16px);
}
.sor-persistent-player::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.sor-persistent-player__meta {
  min-width: 0;
  position: relative;
}
.sor-persistent-player__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0cc7a;
  margin-bottom: 0.15rem;
}
.sor-persistent-player__title {
  display: block;
  font-family: var(--heading-font, Georgia, serif);
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sor-persistent-player__album {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 248, 232, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sor-persistent-player__buttons,
.sor-persistent-player__secondary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
}
.sor-player-btn {
  appearance: none;
  border: 1px solid rgba(240, 204, 122, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8e8;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 2.35rem;
  padding: 0.45rem 0.72rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.sor-player-btn:hover,
.sor-player-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 226, 154, 0.88);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}
.sor-player-btn--primary {
  min-width: 4.75rem;
  background: linear-gradient(135deg, #f1c66f, #8e5c20);
  border-color: rgba(255, 232, 166, 0.88);
  color: #20170d;
}
.sor-player-progress {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 248, 232, 0.76);
  font-size: 0.74rem;
}
.sor-player-progress input[type="range"] {
  width: 100%;
  accent-color: #f0cc7a;
  cursor: pointer;
  pointer-events: auto;
  touch-action: none;
}
.sor-player-status {
  font-size: 0.75rem;
  color: rgba(255, 248, 232, 0.72);
  max-width: 13rem;
}
.sor-persistent-player[data-player-state="playing"] .sor-persistent-player__label::after {
  content: "  • playing";
  color: #fff3ba;
}
.sor-guide-intro .sor-card img,
.sor-listening-guide-page .sor-card > img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}
.sor-guide-method-grid {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.sor-guide-principle {
  margin-top: 1.1rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid rgba(214, 177, 93, 0.85);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 248, 232, 0.9);
}
.sor-guide-playlist {
  overflow: visible;
}
.sor-guide-track-list {
  gap: 1rem;
}
.sor-guide-track {
  align-items: stretch;
}
.sor-guide-track .playlist-track__main {
  display: grid;
  gap: 0.65rem;
}
.sor-guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sor-guide-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(214, 177, 93, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 248, 232, 0.86);
  font-size: 0.74rem;
}
.sor-guide-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.sor-guide-note-grid div {
  padding: 0.75rem;
  border-radius: 0.8rem;
  background: rgba(11, 23, 42, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sor-guide-note-grid strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #f0cc7a;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sor-guide-note-grid p {
  margin: 0;
  font-size: 0.92rem;
}
.sor-guide-button,
.sor-lyrics-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 177, 93, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8e8;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.sor-guide-button:hover,
.sor-guide-button:focus-visible,
.sor-lyrics-button:hover,
.sor-lyrics-button:focus-visible {
  background: rgba(240, 204, 122, 0.16);
  outline: none;
}
.sor-guide-future-grid {
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
}
.sor-listening-guide-page .sor-route-strip {
  margin-bottom: 2rem;
}
@media (max-width: 980px) {
.sor-persistent-player {
    grid-template-columns: 1fr auto;
  }
.sor-player-progress {
    grid-column: 1 / -1;
  }
.sor-player-status {
    display: none;
  }
}
@media (max-width: 720px) {
body.sor-player-ready {
    padding-bottom: 10.5rem;
  }
.sor-persistent-player {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.8rem;
    border-radius: 0.95rem;
  }
.sor-persistent-player__buttons,
  .sor-persistent-player__secondary {
    justify-content: center;
  }
.sor-persistent-player__title,
  .sor-persistent-player__album {
    white-space: normal;
  }
.sor-guide-note-grid {
    grid-template-columns: 1fr;
  }
}
.sor-guide-author-note,
.sor-guide-album-statement,
.sor-guide-listener-reflection,
.sor-guide-insight {
  border: 1px solid rgba(214, 177, 93, 0.28);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 248, 232, 0.095), rgba(11, 23, 42, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sor-guide-author-note,
.sor-guide-album-statement {
  padding: clamp(1rem, 2vw, 1.45rem);
  margin: 1rem 0 1.25rem;
}
.sor-guide-author-note h3,
.sor-guide-album-statement h3 {
  margin-top: 0.15rem;
}
.sor-guide-author-note p:last-child,
.sor-guide-album-statement p:last-child,
.sor-guide-listener-reflection p:last-child,
.sor-guide-insight p:last-child {
  margin-bottom: 0;
}
.sor-guide-track--expanded {
  gap: 1.1rem;
}
.sor-guide-track-summary {
  color: rgba(255, 248, 232, 0.88);
  font-size: 1rem;
}
.sor-guide-listener-reflection {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.065);
}
.sor-guide-listener-reflection strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #f0cc7a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.sor-guide-note-grid--expanded div {
  min-height: 100%;
}
.sor-guide-note-grid--expanded ul {
  margin: 0;
  padding-left: 1.1rem;
}
.sor-guide-note-grid--expanded li {
  margin: 0.28rem 0;
}
.sor-guide-insight {
  position: relative;
  padding: 1rem 1.1rem 1.05rem;
  border-left: 4px solid rgba(240, 204, 122, 0.82);
  background: linear-gradient(135deg, rgba(240, 204, 122, 0.12), rgba(11, 23, 42, 0.26));
}
.sor-guide-insight .card-kicker,
.sor-guide-album-statement .card-kicker,
.sor-guide-author-note .card-kicker {
  color: #fff3ba;
}
.sor-guide-tags--album {
  margin-top: 0.8rem;
}
.sor-guide-track .playlist-track__controls {
  align-self: start;
  position: sticky;
  top: 5.5rem;
}
@media (max-width: 980px) {
.sor-guide-track .playlist-track__controls {
    position: static;
  }
}
.ifs-reading-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-height, 70px);
  z-index: 9997;
  height: 5px;
  background: rgba(255, 246, 220, 0.36);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18), 0 5px 16px rgba(35, 19, 6, 0.18);
  pointer-events: none;
}
.ifs-reading-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #052036, #d9a53d, #fff1bf);
  box-shadow: 0 0 16px rgba(217, 165, 61, 0.48);
  transition: width 90ms linear;
}
body.sor-listening-guide-page .sor-page-column {
  max-width: 1120px;
  margin-inline: auto;
}
.sor-guide-jump-panel {
  position: sticky;
  top: calc(var(--nav-height, 70px) + 0.75rem);
  z-index: 40;
  margin: 0 0 1.35rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid rgba(184, 135, 54, 0.42);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 248, 228, 0.94), rgba(245, 230, 188, 0.9));
  color: #2c1a08;
  box-shadow: 0 14px 34px rgba(52, 31, 8, 0.18), inset 0 0 0 1px rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
}
.sor-guide-jump-panel .card-kicker {
  color: #8a541b !important;
}
.sor-guide-jump-panel h2 {
  margin: 0.08rem 0 0.35rem;
  color: #231306 !important;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}
.sor-guide-jump-panel p:not(.card-kicker) {
  margin: 0 0 0.85rem;
  max-width: 70ch;
  color: #4a321b !important;
}
body.sor-listening-guide-page .sor-guide-author-note,
body.sor-listening-guide-page .sor-guide-album-statement,
body.sor-listening-guide-page .sor-guide-listener-reflection,
body.sor-listening-guide-page .sor-guide-insight {
  color: #321f0d !important;
  background: linear-gradient(135deg, rgba(255, 248, 228, 0.86), rgba(245, 230, 188, 0.72)) !important;
  border-color: rgba(184, 135, 54, 0.34) !important;
}
body.sor-listening-guide-page .sor-guide-author-note p,
body.sor-listening-guide-page .sor-guide-album-statement p,
body.sor-listening-guide-page .sor-guide-listener-reflection p,
body.sor-listening-guide-page .sor-guide-insight p,
body.sor-listening-guide-page .sor-guide-note-grid li,
body.sor-listening-guide-page .sor-guide-note-grid p {
  color: #352313 !important;
}
body.sor-listening-guide-page .sor-guide-author-note p + p,
body.sor-listening-guide-page .sor-guide-album-statement p + p,
body.sor-listening-guide-page .sor-guide-insight p + p,
body.sor-listening-guide-page .sor-guide-listener-reflection p + p {
  margin-top: 1rem;
}
body.sor-listening-guide-page .sor-guide-author-note .card-kicker,
body.sor-listening-guide-page .sor-guide-album-statement .card-kicker,
body.sor-listening-guide-page .sor-guide-insight .card-kicker,
body.sor-listening-guide-page .sor-guide-listener-reflection strong,
body.sor-listening-guide-page .sor-guide-note-grid strong {
  color: #8a541b !important;
  text-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-author-note h3,
body.sor-listening-guide-page .sor-guide-album-statement h3,
body.sor-listening-guide-page .sor-guide-track h3 {
  color: #231306 !important;
}
body.sor-listening-guide-page .sor-guide-tags span,
body.sor-listening-guide-page .sor-guide-button,
body.sor-listening-guide-page .sor-lyrics-button,
body.sor-listening-guide-page .sor-btn--light,
body.sor-canon-page .sor-btn--light {
  color: #4a2d10 !important;
  background: rgba(255, 252, 241, 0.82) !important;
  border-color: rgba(184, 135, 54, 0.46) !important;
  text-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-tags span {
  font-size: 0.78rem;
  font-weight: 700;
}
body.sor-listening-guide-page .sor-guide-playlist {
  padding: clamp(1rem, 2vw, 1.5rem) !important;
  overflow: visible !important;
}
body.sor-listening-guide-page .sor-guide-track-list,
body.sor-listening-guide-page .sor-canon-page .playlist-track-list,
body.sor-listening-guide-page .playlist-track-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(1.25rem, 2.6vw, 2rem) !important;
  max-width: 940px;
  margin-inline: auto;
}
body.sor-listening-guide-page .sor-guide-track,
body.sor-listening-guide-page.sor-canon-page .playlist-track {
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: 0 !important;
  max-width: 940px;
  width: 100%;
  margin-inline: auto;
  padding: clamp(1.15rem, 2.4vw, 1.85rem) !important;
  gap: 1rem !important;
  overflow: visible !important;
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__main {
  display: grid !important;
  gap: 0.85rem !important;
}
body.sor-listening-guide-page .sor-guide-track-summary {
  color: #4a321b !important;
  max-width: 68ch;
}
body.sor-listening-guide-page .sor-guide-note-grid,
body.sor-listening-guide-page .sor-guide-note-grid--expanded {
  grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
  gap: 0.9rem !important;
  margin-top: 0.45rem;
}
body.sor-listening-guide-page .sor-guide-note-grid div,
body.sor-listening-guide-page .sor-guide-note-grid--expanded div {
  min-height: 0 !important;
  padding: 0.95rem 1rem !important;
  background: rgba(255, 252, 241, 0.62) !important;
  border: 1px solid rgba(184, 135, 54, 0.26) !important;
  border-radius: 14px !important;
}
body.sor-listening-guide-page .sor-guide-note-grid ul {
  padding-left: 1.1rem;
}
body.sor-listening-guide-page .sor-guide-note-grid li {
  line-height: 1.55;
  margin: 0.35rem 0;
}
body.sor-listening-guide-page .sor-guide-insight {
  border-left: 5px solid rgba(184, 135, 54, 0.68) !important;
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__controls {
  position: static !important;
  display: grid !important;
  grid-template-columns: auto minmax(9rem, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(184, 135, 54, 0.24);
}
body.sor-listening-guide-page .playlist-track__play {
  justify-self: start;
}
body.sor-listening-guide-page .playlist-track__progress {
  width: 100%;
}
body.sor-listening-guide-page .playlist-track__time {
  white-space: nowrap;
}
body.sor-listening-guide-page .playlist-actions .sor-btn,
body.sor-listening-guide-page .playlist-actions .sor-btn--light {
  color: #fff2d0 !important;
  background: #071a29 !important;
  border-color: rgba(218,174,93,0.62) !important;
}
@media (max-width: 760px) {
.ifs-reading-progress { top: 62px; }
.sor-guide-jump-panel { position: static; }
body.sor-listening-guide-page .sor-guide-note-grid,
  body.sor-listening-guide-page .sor-guide-note-grid--expanded,
  body.sor-listening-guide-page .sor-guide-track .playlist-track__controls {
    grid-template-columns: 1fr !important;
  }
}
body.sor-listening-guide-page .sor-guide-jump-panel {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 239, 184, 0.76), transparent 34%),
    linear-gradient(135deg, rgba(41, 23, 6, 0.96), rgba(94, 55, 15, 0.94) 45%, rgba(244, 218, 154, 0.92));
  border-color: rgba(232, 190, 103, 0.58);
  color: #fff6dc;
  box-shadow: 0 18px 46px rgba(39, 21, 6, 0.26), inset 0 0 0 1px rgba(255,255,255,0.18);
}
body.sor-listening-guide-page .sor-guide-jump-panel .card-kicker,
body.sor-listening-guide-page .sor-guide-jump-panel h2,
body.sor-listening-guide-page .sor-guide-jump-panel p:not(.card-kicker),
body.sor-listening-guide-page .sor-guide-jump-label {
  color: #fff2c0 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35) !important;
}
body.sor-listening-guide-page .sor-guide-principle {
  background: linear-gradient(135deg, rgba(255, 248, 228, 0.88), rgba(245, 230, 188, 0.76)) !important;
  border: 1px solid rgba(184, 135, 54, 0.36) !important;
  border-left: 5px solid rgba(184, 135, 54, 0.72) !important;
  color: #352313 !important;
  text-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-principle strong {
  color: #8a541b !important;
}
body.sor-listening-guide-page .sor-guide-tags span,
body.sor-listening-guide-page .sor-guide-button,
body.sor-listening-guide-page .sor-lyrics-button,
body.sor-listening-guide-page .sor-btn--light,
body.sor-canon-page .sor-btn--light {
  color: #f7e7bd !important;
  background: linear-gradient(180deg, #0b2a3f 0%, #041725 100%) !important;
  border-color: rgba(218,174,93,0.68) !important;
  box-shadow: 0 6px 14px rgba(7, 20, 32, 0.22), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5) !important;
}
body.sor-listening-guide-page .sor-guide-tags span {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
body.sor-listening-guide-page .sor-guide-note-grid p,
body.sor-listening-guide-page .sor-guide-note-grid li {
  font-size: clamp(0.98rem, 1.02vw, 1.08rem) !important;
  line-height: 1.66 !important;
}
body.sor-listening-guide-page .sor-guide-note-grid strong {
  font-size: 0.84rem !important;
  letter-spacing: 0.1em !important;
}
body.sor-listening-guide-page .playlist-track__time {
  min-width: 6.5rem;
  text-align: right;
  color: #34200e !important;
  font-weight: 800;
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__controls {
  grid-template-columns: auto minmax(12rem, 1fr) minmax(6.5rem, auto) !important;
}
body.sor-listening-guide-page .sor-guide-closing a,
.site-footer .footer-links a[href*="churchofjesuschrist.org"] {
  color: #f0cc7a;
  font-weight: 800;
}
@media (max-width: 760px) {
body.sor-listening-guide-page .sor-guide-track .playlist-track__controls {
    grid-template-columns: 1fr !important;
    align-items: stretch;
  }
body.sor-listening-guide-page .playlist-track__time {
    text-align: left;
  }
}
body.sor-listening-guide-page .sor-guide-playlist .playlist-head {
  margin-bottom: clamp(2.15rem, 3.2vw, 2.85rem) !important;
}
body.sor-listening-guide-page .sor-guide-playlist .playlist-actions {
  transform: translateY(-0.45rem);
}
body.sor-listening-guide-page .sor-guide-track-list,
body.sor-listening-guide-page .playlist-track-list {
  padding-top: 0.35rem;
}
body.sor-listening-guide-page .sor-guide-menu {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 0.85rem;
}
body.sor-listening-guide-page .sor-guide-menu summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.15rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(218, 174, 93, 0.64);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 247, 224, 0.96), rgba(236, 210, 150, 0.92));
  color: #281807;
  box-shadow: 0 10px 22px rgba(35, 20, 6, 0.2), inset 0 1px 0 rgba(255,255,255,0.72);
  cursor: pointer;
}
body.sor-listening-guide-page .sor-guide-menu summary::-webkit-details-marker { display: none; }
body.sor-listening-guide-page .sor-guide-menu__label {
  color: #8a541b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
body.sor-listening-guide-page .sor-guide-menu summary strong {
  color: #241404;
  font-weight: 800;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.sor-listening-guide-page .sor-guide-menu__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #071a29;
  color: #f0cc7a;
  font-weight: 900;
  transition: transform 160ms ease;
}
body.sor-listening-guide-page .sor-guide-menu[open] .sor-guide-menu__chevron { transform: rotate(180deg); }
body.sor-listening-guide-page .sor-guide-menu__panel {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 60;
  margin-top: 0.55rem;
  max-height: min(68vh, 36rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(218, 174, 93, 0.58);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 239, 184, 0.4), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 226, 0.98), rgba(245, 226, 181, 0.98));
  box-shadow: 0 22px 48px rgba(35, 20, 6, 0.32), inset 0 1px 0 rgba(255,255,255,0.7);
}
body.sor-listening-guide-page .sor-guide-menu__panel::-webkit-scrollbar { width: 10px; }
body.sor-listening-guide-page .sor-guide-menu__panel::-webkit-scrollbar-thumb {
  background: rgba(126, 78, 24, 0.5);
  border-radius: 999px;
  border: 2px solid rgba(255, 248, 226, 0.95);
}
body.sor-listening-guide-page .sor-guide-menu__group {
  padding: 0.65rem 0.75rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 252, 243, 0.52);
  border: 1px solid rgba(184, 135, 54, 0.18);
}
body.sor-listening-guide-page .sor-guide-menu__group + .sor-guide-menu__group { margin-top: 0.8rem; }
body.sor-listening-guide-page .sor-guide-menu__group h3 {
  margin: 0 0 0.45rem;
  color: #78430f !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.sor-listening-guide-page .sor-guide-menu__group a {
  display: block;
  padding: 0.48rem 0.6rem;
  border-radius: 10px;
  color: #241404;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}
body.sor-listening-guide-page .sor-guide-menu__group a:hover,
body.sor-listening-guide-page .sor-guide-menu__group a:focus-visible {
  background: linear-gradient(180deg, #0b2a3f, #041725);
  color: #f7e7bd;
  outline: none;
  transform: translateX(3px);
}
.site-footer .footer-links a[href*="churchofjesuschrist.org"],
body.sor-listening-guide-page .sor-guide-closing a[href*="churchofjesuschrist.org"],
.sor-official-link {
  color: #7f4b12 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-weight: 750 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.17em;
  text-decoration-color: rgba(127, 75, 18, 0.42);
  text-shadow: none !important;
}
body.sor-testimony-page .sor-hero--testimony {
  background-image:
    linear-gradient(90deg, rgba(7, 26, 41, 0.76), rgba(80, 47, 12, 0.25)),
    url('../images/sacred/church_header_banner.webp');
}
.testimony-page-main .sor-page-column { max-width: 980px; }
.testimony-letter { margin-top: 0; }
.testimony-paper {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.35rem);
  border: 1px solid rgba(184, 135, 54, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 242, 190, 0.65), transparent 28%),
    linear-gradient(180deg, rgba(255, 249, 230, 0.94), rgba(244, 225, 181, 0.9));
  color: #2c1a08;
  box-shadow: 0 24px 58px rgba(52, 31, 8, 0.18), inset 0 0 0 1px rgba(255,255,255,0.52);
}
.testimony-paper::before {
  content: '';
  position: absolute;
  left: clamp(1rem, 2vw, 1.4rem);
  top: clamp(1rem, 2vw, 1.4rem);
  bottom: clamp(1rem, 2vw, 1.4rem);
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #071a29, #d6a84e, #071a29);
  opacity: 0.78;
}
.testimony-paper > * { margin-left: clamp(0.6rem, 1.8vw, 1.1rem); }
.testimony-paper h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.6rem;
  color: #241404;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}
.testimony-paper h2:first-of-type { margin-top: 0.25rem; }
.testimony-paper p {
  color: #352313;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}
.testimony-paper p + p { margin-top: 0.9rem; }
.testimony-signoff {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184, 135, 54, 0.26);
}
.testimony-signoff p { margin: 0.2rem 0; }
.testimony-signature {
  font-family: 'Brush Script MT', 'Segoe Script', 'Snell Roundhand', cursive;
  font-size: clamp(2.15rem, 5vw, 4rem) !important;
  line-height: 1.05 !important;
  color: #72400e !important;
  transform: rotate(-1deg);
}
@media (max-width: 760px) {
body.sor-listening-guide-page .sor-guide-playlist .playlist-actions {
    transform: none;
    justify-content: flex-start;
    margin-bottom: 0.4rem;
  }
body.sor-listening-guide-page .sor-guide-menu summary {
    grid-template-columns: 1fr auto;
  }
body.sor-listening-guide-page .sor-guide-menu__label {
    grid-column: 1 / -1;
  }
body.sor-listening-guide-page .sor-guide-menu__panel {
    position: static;
    max-height: none;
  }
}
body.sor-listening-guide-page .sor-guide-tags span,
body.sor-listening-guide-page .sor-guide-tags--album span {
  color: #4a2d10 !important;
  background: rgba(255, 252, 241, 0.86) !important;
  border-color: rgba(184, 135, 54, 0.48) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75) !important;
  text-shadow: none !important;
}
body.sor-tracks-page .playlist-track .sor-lyrics-button,
body.sor-tracks-page .playlist-track .sor-guide-button,
body.sor-poems-page .playlist-track .sor-lyrics-button,
body.sor-poems-page .playlist-track .sor-guide-button,
body.sor-canon-page:not(.sor-listening-guide-page) .playlist-track .sor-lyrics-button,
body.sor-canon-page:not(.sor-listening-guide-page) .playlist-track .sor-guide-button {
  color: #3a230d !important;
  background: linear-gradient(180deg, rgba(255, 251, 239, 0.96), rgba(246, 229, 188, 0.94)) !important;
  border: 1px solid rgba(197, 143, 51, 0.62) !important;
  text-shadow: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 6px 14px rgba(52, 31, 8, 0.10) !important;
  font-weight: 800 !important;
}
body.sor-tracks-page .playlist-track .sor-lyrics-button:hover,
body.sor-tracks-page .playlist-track .sor-guide-button:hover,
body.sor-poems-page .playlist-track .sor-lyrics-button:hover,
body.sor-poems-page .playlist-track .sor-guide-button:hover,
body.sor-canon-page:not(.sor-listening-guide-page) .playlist-track .sor-lyrics-button:hover,
body.sor-canon-page:not(.sor-listening-guide-page) .playlist-track .sor-guide-button:hover,
body.sor-tracks-page .playlist-track .sor-lyrics-button:focus-visible,
body.sor-tracks-page .playlist-track .sor-guide-button:focus-visible,
body.sor-poems-page .playlist-track .sor-lyrics-button:focus-visible,
body.sor-poems-page .playlist-track .sor-guide-button:focus-visible,
body.sor-canon-page:not(.sor-listening-guide-page) .playlist-track .sor-lyrics-button:focus-visible,
body.sor-canon-page:not(.sor-listening-guide-page) .playlist-track .sor-guide-button:focus-visible {
  color: #071a29 !important;
  border-color: rgba(218, 174, 93, 0.95) !important;
  background: linear-gradient(180deg, #fffaf0, #f2dca5) !important;
  box-shadow: 0 0 0 1px rgba(255, 238, 185, 0.46), 0 10px 22px rgba(52, 31, 8, 0.16) !important;
}
.site-footer {
  color: rgba(255, 246, 222, 0.74) !important;
}
.site-footer .footer-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  letter-spacing: 0.005em !important;
  color: rgba(255, 246, 222, 0.72) !important;
}
.site-footer .footer-links {
  display: inline-block;
  margin-left: 0.35rem;
}
.site-footer .footer-links a,
.site-footer .footer-links a[href*="churchofjesuschrist.org"],
.site-footer .footer-links a[href="my-testimony.html"] {
  color: rgba(255, 246, 222, 0.86) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.005em !important;
  text-decoration: none !important;
  text-shadow: none !important;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #f0cc7a !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.18em !important;
  outline: none !important;
}
.testimony-signoff p:nth-child(2) {
  color: #2f2113;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.02rem, 1.15vw, 1.13rem);
  line-height: 1.65;
  margin-top: 0.4rem;
}
.testimony-signature {
  color: #071a29 !important;
  font-weight: 400 !important;
  font-size: clamp(1.9rem, 4.2vw, 3.15rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.015em !important;
  text-shadow: none !important;
  filter: none !important;
  margin-top: 0.45rem !important;
  transform: rotate(-0.6deg) !important;
}
@media (max-width: 720px) {
.site-footer .footer-links { display: block; margin: 0.35rem 0 0; }
}
.site-footer {
  margin-top: 0 !important;
  background: rgba(40, 27, 15, 0.96) !important;
}
.site-footer .footer-text {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 246, 222, 0.76) !important;
  letter-spacing: 0 !important;
}
.site-footer .footer-links {
  display: inline !important;
  margin-left: 0.35rem !important;
}
.site-footer .footer-links a,
.site-footer .footer-links a[href*="churchofjesuschrist.org"] {
  color: #e47b26 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-shadow: none !important;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible,
.site-footer .footer-links a[href*="churchofjesuschrist.org"]:hover,
.site-footer .footer-links a[href*="churchofjesuschrist.org"]:focus-visible {
  color: #f2b463 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.18em !important;
  outline: none !important;
}
.testimony-signoff {
  margin-top: 1.85rem !important;
  padding-top: 1.15rem !important;
  border-top: 1px solid rgba(184, 135, 54, 0.24) !important;
}
.testimony-signoff p:first-child {
  margin: 0 0 0.55rem !important;
  color: #2f2113 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(1.02rem, 1.14vw, 1.12rem) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}
.testimony-signoff p:nth-child(2) { margin-top: 0 !important; }
.testimony-signature {
  display: inline-block !important;
  color: #071a29 !important;
  font-family: 'Segoe Script', 'Lucida Handwriting', 'Brush Script MT', cursive !important;
  font-weight: 300 !important;
  font-size: clamp(1.65rem, 3.6vw, 2.7rem) !important;
  line-height: 1.12 !important;
  letter-spacing: 0.01em !important;
  text-shadow: none !important;
  filter: none !important;
  transform: rotate(-0.25deg) !important;
}
body.sor-listening-guide-page .sor-guide-menu {
  background: linear-gradient(180deg, rgba(255, 249, 229, 0.98), rgba(244, 226, 184, 0.96)) !important;
  border: 1px solid rgba(15, 48, 73, 0.42) !important;
  box-shadow: 0 18px 42px rgba(7, 26, 41, 0.16), inset 0 1px 0 rgba(255,255,255,0.7) !important;
}
body.sor-listening-guide-page .sor-guide-menu summary {
  background: linear-gradient(180deg, #0b2a3f, #061b2b) !important;
  color: #f7e6bd !important;
  border-radius: 17px !important;
  border: 1px solid rgba(240, 204, 122, 0.46) !important;
  box-shadow: 0 10px 22px rgba(7, 26, 41, 0.24), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
body.sor-listening-guide-page .sor-guide-menu__label {
  color: rgba(247, 230, 189, 0.78) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}
body.sor-listening-guide-page .sor-guide-menu summary strong {
  color: #fff6de !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}
body.sor-listening-guide-page .sor-guide-menu__chevron {
  color: #f0cc7a !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(240,204,122,0.32) !important;
}
body.sor-listening-guide-page .sor-guide-menu__panel {
  background: linear-gradient(180deg, rgba(255, 251, 239, 0.99), rgba(246, 232, 198, 0.98)) !important;
  border: 1px solid rgba(15, 48, 73, 0.28) !important;
  box-shadow: 0 20px 44px rgba(7, 26, 41, 0.18) !important;
  padding: 0.85rem !important;
}
body.sor-listening-guide-page .sor-guide-menu__panel::-webkit-scrollbar-thumb {
  background: rgba(11, 42, 63, 0.42) !important;
  border: 2px solid rgba(255, 248, 226, 0.95) !important;
}
body.sor-listening-guide-page .sor-guide-menu__group {
  background: rgba(255, 255, 250, 0.64) !important;
  border: 1px solid rgba(15, 48, 73, 0.12) !important;
  border-left: 3px solid rgba(11, 42, 63, 0.42) !important;
}
body.sor-listening-guide-page .sor-guide-menu__group h3 {
  color: #0b2a3f !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  border-bottom: 1px solid rgba(11, 42, 63, 0.12) !important;
  padding-bottom: 0.28rem !important;
}
body.sor-listening-guide-page .sor-guide-menu__group a {
  color: #2e1a08 !important;
  font-weight: 520 !important;
  letter-spacing: 0.005em !important;
  padding: 0.48rem 0.58rem !important;
}
body.sor-listening-guide-page .sor-guide-menu__group a:hover,
body.sor-listening-guide-page .sor-guide-menu__group a:focus-visible {
  background: linear-gradient(180deg, rgba(11, 42, 63, 0.96), rgba(6, 27, 43, 0.98)) !important;
  color: #fff3d1 !important;
  box-shadow: 0 8px 18px rgba(7, 26, 41, 0.16) !important;
  transform: translateX(2px) !important;
}
body.sor-listening-guide-page .sor-guide-jump-panel {
  background: linear-gradient(180deg, rgba(252, 246, 230, 0.98), rgba(242, 231, 202, 0.97)) !important;
  color: #322012 !important;
  border: 1px solid rgba(191, 151, 82, 0.38) !important;
  box-shadow: 0 16px 34px rgba(56, 36, 16, 0.12), inset 0 1px 0 rgba(255,255,255,0.72) !important;
}
body.sor-listening-guide-page .sor-guide-jump-panel .card-kicker,
body.sor-listening-guide-page .sor-guide-jump-panel h2,
body.sor-listening-guide-page .sor-guide-jump-panel p:not(.card-kicker),
body.sor-listening-guide-page .sor-guide-jump-label {
  color: #332113 !important;
  text-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-jump-panel .card-kicker {
  color: #8a5a23 !important;
}
body.sor-listening-guide-page .sor-guide-menu {
  margin-top: 1rem;
}
body.sor-listening-guide-page .sor-guide-menu summary {
  min-height: 3.35rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(193, 152, 75, 0.72) !important;
  border-radius: 14px;
  background: linear-gradient(180deg, #0b2a3f 0%, #071d2e 100%) !important;
  color: #f8ebc9 !important;
  box-shadow: 0 10px 24px rgba(13, 33, 52, 0.18), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
body.sor-listening-guide-page .sor-guide-menu__label {
  color: #d8b26b !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
body.sor-listening-guide-page .sor-guide-menu summary strong {
  color: #fff5db !important;
  font-weight: 700;
}
body.sor-listening-guide-page .sor-guide-menu__chevron {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(216, 178, 107, 0.48);
  background: rgba(255,255,255,0.06) !important;
  color: #f3d391 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
body.sor-listening-guide-page .sor-guide-menu__panel {
  margin-top: 0.45rem;
  padding: 0.95rem;
  border: 1px solid rgba(191, 151, 82, 0.34) !important;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(251, 245, 228, 0.99), rgba(242, 231, 202, 0.99)) !important;
  box-shadow: 0 20px 36px rgba(56, 36, 16, 0.18), inset 0 1px 0 rgba(255,255,255,0.75) !important;
}
body.sor-listening-guide-page .sor-guide-menu__panel::-webkit-scrollbar-thumb {
  background: rgba(11, 42, 63, 0.35);
  border: 2px solid rgba(248, 242, 227, 0.96);
}
body.sor-listening-guide-page .sor-guide-menu__group {
  padding: 0.55rem 0.6rem 0.65rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.4) !important;
  border: 1px solid rgba(191, 151, 82, 0.14) !important;
}
body.sor-listening-guide-page .sor-guide-menu__group + .sor-guide-menu__group {
  margin-top: 0.55rem;
}
body.sor-listening-guide-page .sor-guide-menu__group h3 {
  margin-bottom: 0.35rem;
  color: #8a5a23 !important;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
body.sor-listening-guide-page .sor-guide-menu__group a {
  padding: 0.42rem 0.55rem;
  border-radius: 8px;
  color: #2e1d10 !important;
  font-weight: 600;
}
body.sor-listening-guide-page .sor-guide-menu__group a:hover,
body.sor-listening-guide-page .sor-guide-menu__group a:focus-visible {
  background: rgba(11, 42, 63, 0.92) !important;
  color: #fff2cd !important;
  transform: translateX(2px);
}
@media (max-width: 760px) {
body.sor-listening-guide-page .sor-guide-menu summary {
    gap: 0.55rem;
    padding: 0.75rem 0.8rem;
  }
body.sor-listening-guide-page .sor-guide-menu__label {
    font-size: 0.7rem;
  }
body.sor-listening-guide-page .sor-guide-menu summary strong {
    font-size: 1rem;
  }
}
body.sor-listening-guide-page .sor-guide-jump-panel {
  position: sticky;
  top: calc(var(--nav-height, 70px) + 0.75rem);
  z-index: 40;
  margin: 0 0 clamp(1.4rem, 2.5vw, 2rem) !important;
  padding: clamp(1.05rem, 2.2vw, 1.45rem) !important;
  border: 1px solid rgba(11, 42, 63, 0.22) !important;
  border-left: 5px solid rgba(11, 42, 63, 0.72) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 204, 122, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 231, 0.97), rgba(247, 232, 196, 0.94)) !important;
  color: #1e2a33 !important;
  box-shadow: 0 18px 38px rgba(7, 26, 41, 0.12), inset 0 1px 0 rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(6px);
}
body.sor-listening-guide-page .sor-guide-jump-panel .card-kicker {
  color: #996528 !important;
  text-shadow: none !important;
  letter-spacing: 0.16em !important;
  font-weight: 700 !important;
}
body.sor-listening-guide-page .sor-guide-jump-panel h2 {
  color: #0b2a3f !important;
  text-shadow: none !important;
  font-weight: 600 !important;
}
body.sor-listening-guide-page .sor-guide-jump-panel p:not(.card-kicker) {
  color: #3d2a16 !important;
  text-shadow: none !important;
  max-width: 68ch !important;
}
body.sor-listening-guide-page .sor-guide-menu {
  margin-top: 0.95rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-menu summary {
  min-height: 3.2rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(240, 204, 122, 0.48) !important;
  background:
    linear-gradient(180deg, rgba(11, 42, 63, 0.98), rgba(5, 24, 39, 0.99)) !important;
  color: #fff3d1 !important;
  box-shadow: 0 10px 22px rgba(7, 26, 41, 0.18), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
body.sor-listening-guide-page .sor-guide-menu__label {
  color: rgba(240, 204, 122, 0.82) !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
}
body.sor-listening-guide-page .sor-guide-menu summary strong {
  color: #fff9e8 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-menu__chevron {
  width: 1.9rem !important;
  height: 1.9rem !important;
  background: rgba(255, 250, 232, 0.07) !important;
  border: 1px solid rgba(240, 204, 122, 0.42) !important;
  color: #f0cc7a !important;
  box-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-menu__panel {
  margin-top: 0.65rem !important;
  padding: 0.75rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(11, 42, 63, 0.2) !important;
  background:
    linear-gradient(180deg, rgba(255, 251, 239, 0.99), rgba(248, 235, 205, 0.99)) !important;
  box-shadow: 0 20px 42px rgba(7, 26, 41, 0.16), inset 0 1px 0 rgba(255,255,255,0.72) !important;
}
body.sor-listening-guide-page .sor-guide-menu__group {
  padding: 0.62rem 0.7rem 0.7rem !important;
  border-radius: 13px !important;
  background: rgba(255, 255, 250, 0.48) !important;
  border: 1px solid rgba(11, 42, 63, 0.09) !important;
  border-left: 3px solid rgba(11, 42, 63, 0.38) !important;
  box-shadow: none !important;
}
body.sor-listening-guide-page .sor-guide-menu__group h3 {
  margin: 0 0 0.45rem !important;
  color: #0b2a3f !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(11, 42, 63, 0.12) !important;
  padding-bottom: 0.28rem !important;
}
body.sor-listening-guide-page .sor-guide-menu__group a {
  color: #2f2113 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
  border-radius: 10px !important;
  padding: 0.48rem 0.58rem !important;
}
body.sor-listening-guide-page .sor-guide-menu__group a:hover,
body.sor-listening-guide-page .sor-guide-menu__group a:focus-visible {
  color: #fff4d6 !important;
  background: linear-gradient(180deg, #0b2a3f, #061b2b) !important;
  box-shadow: 0 8px 18px rgba(7, 26, 41, 0.14) !important;
  transform: translateX(2px) !important;
}
@media (max-width: 760px) {
body.sor-listening-guide-page .sor-guide-jump-panel {
    position: static !important;
    border-left-width: 4px !important;
  }
}
.sor-hero,
.sacred-hero--landing,
.sacred-hero--games,
.sacred-hero--poems,
.sacred-hero--resources,
.sacred-hero--record,
.sacred-hero--tracks {
  background-image: url('../images/sacred/church_header_banner.webp') !important;
  background-position: center center !important;
  background-size: cover !important;
}
body.sor-lyrics-index-page .sor-hero--lyrics-notes,
body.sor-testimony-page .sor-hero--testimony {
  background-image: url('../images/sacred/church_header_banner.webp') !important;
  background-position: center center !important;
  background-size: cover !important;
}
body.sor-resources-page .sor-resource-panel,
body.sor-listening-guide-page .sor-section[id],
body.sor-listening-guide-page .sor-guide-track[id],
body.sor-listening-guide-page .sor-guide-insight[id] {
  scroll-margin-top: calc(var(--nav-height, 70px) + 2.5rem);
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__controls {
  grid-template-columns: auto auto minmax(18rem, 1fr) max-content !important;
  align-items: center !important;
  gap: 0.7rem !important;
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__play,
body.sor-listening-guide-page .sor-guide-track .sor-lyrics-button {
  width: auto !important;
  min-width: 6.65rem !important;
  max-width: 8rem !important;
  justify-self: start !important;
  padding-inline: 0.95rem !important;
  white-space: nowrap !important;
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__progress {
  min-width: min(100%, 20rem) !important;
  justify-self: stretch !important;
}
body.sor-listening-guide-page .sor-guide-track .playlist-track__time {
  min-width: 6.8rem !important;
  justify-self: end !important;
}
body.sor-listening-guide-page .sor-guide-menu__group a.is-guide-current {
  background: linear-gradient(180deg, rgba(11, 42, 63, 0.96), rgba(6, 27, 43, 0.98)) !important;
  color: #fff3d1 !important;
  box-shadow: 0 8px 18px rgba(7, 26, 41, 0.14) !important;
}
@media (max-width: 760px) {
body.sor-listening-guide-page .sor-guide-track .playlist-track__controls {
    grid-template-columns: 1fr 1fr !important;
  }
body.sor-listening-guide-page .sor-guide-track .playlist-track__play,
  body.sor-listening-guide-page .sor-guide-track .sor-lyrics-button {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }
body.sor-listening-guide-page .sor-guide-track .playlist-track__progress,
  body.sor-listening-guide-page .sor-guide-track .playlist-track__time {
    grid-column: 1 / -1 !important;
  }
body.sor-listening-guide-page .sor-guide-track .playlist-track__time {
    justify-self: start !important;
    text-align: left !important;
  }
}
.sor-hero,
body.sor-canon-page .sor-hero,
.sor-lyrics-index-page .sor-hero--lyrics-notes,
body.sor-lyrics-index-page .sor-hero--lyrics-notes,
body.sor-testimony-page .sor-hero--testimony {
  background-image: url('../images/sacred/church_header_banner.webp?v=1156') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 700px) and (orientation: portrait) {
.sor-hero,
  body.sor-canon-page .sor-hero,
  .sor-lyrics-index-page .sor-hero--lyrics-notes,
  body.sor-lyrics-index-page .sor-hero--lyrics-notes,
  body.sor-testimony-page .sor-hero--testimony {
    background-image:
      linear-gradient(180deg, rgba(10, 5, 0, 0.10), rgba(10, 5, 0, 0.54) 48%, rgba(10, 5, 0, 0.82)),
      url('../images/sacred/church_header_banner.webp?v=1156') !important;
    background-size: 100% 100%, 100% auto !important;
    background-position: center center, center top !important;
    background-repeat: no-repeat, no-repeat !important;
  }
}
body.sor-lyrics-index-page .sor-lyrics-catalog-button,
body.sor-lyrics-index-page .sor-lyrics-catalog-button.sor-lyrics-button,
body.sor-lyrics-index-page .sor-lyrics-card-actions .sor-lyrics-catalog-button {
  color: #fff2d0 !important;
  background: linear-gradient(180deg, #08243a 0%, #071a29 100%) !important;
  border-color: rgba(218, 174, 93, 0.72) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38) !important;
  box-shadow: 0 10px 20px rgba(7, 26, 41, 0.18) !important;
}
body.sor-lyrics-index-page .sor-lyrics-catalog-button:hover,
body.sor-lyrics-index-page .sor-lyrics-catalog-button:focus-visible,
body.sor-lyrics-index-page .sor-lyrics-card-actions .sor-lyrics-catalog-button:hover,
body.sor-lyrics-index-page .sor-lyrics-card-actions .sor-lyrics-catalog-button:focus-visible {
  color: #fff8e8 !important;
  background: linear-gradient(180deg, #0c314d 0%, #08243a 100%) !important;
  border-color: rgba(240, 204, 122, 0.94) !important;
  box-shadow: 0 0 0 1px rgba(255, 238, 185, 0.34), 0 14px 26px rgba(7, 26, 41, 0.22) !important;
}
body.sor-listening-guide-page .sor-section,
body.sor-listening-guide-page .sor-guide-track,
body.sor-listening-guide-page .sor-guide-author-note,
body.sor-listening-guide-page .sor-guide-album {
  scroll-margin-top: calc(var(--nav-height, 70px) + 4.75rem) !important;
}
@media (max-width: 760px) and (orientation: portrait) {
body.sor-listening-guide-page .sor-section,
  body.sor-listening-guide-page .sor-guide-track,
  body.sor-listening-guide-page .sor-guide-author-note,
  body.sor-listening-guide-page .sor-guide-album {
    scroll-margin-top: 9rem !important;
  }
}
