/*---------------------------------------
  Koning Zen theme
-----------------------------------------*/
:root {
  --primary-color: #F2B705;
  --dark-color: #1a1a1a;
  --white-color: #ffffff;
  --section-bg-color: #fff8df;
  --soft-yellow: #fff1b8;
  --warm-line: #ead99a;
  --p-color: #5f5a4a;
  --border-color: #efe3b4;
  --body-font-family: 'DM Sans', sans-serif;
  --h1-font-size: 58px;
  --h2-font-size: 36px;
  --h3-font-size: 25px;
  --p-font-size: 18px;
  --menu-font-size: 13px;
  --copyright-font-size: 14px;
  --border-radius-large: 34px;
  --border-radius-medium: 22px;
  --border-radius-small: 14px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background: var(--white-color);
  color: var(--dark-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img,
svg,
video {
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: var(--h1-font-size);
  line-height: 1.02;
}

h2 {
  font-size: var(--h2-font-size);
  line-height: 1.18;
}

h3 {
  font-size: var(--h3-font-size);
  line-height: 1.2;
}

p,
ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.7;
}

a,
button,
select {
  touch-action: manipulation;
  transition: all 0.25s ease;
}

a {
  color: var(--dark-color);
  text-decoration: none;
}

a:hover {
  color: #8a6500;
}

::selection {
  background: var(--primary-color);
  color: var(--dark-color);
}

.section-padding {
  padding-bottom: 110px;
  padding-top: 110px;
}

.section-padding-sm {
  padding-bottom: 72px;
  padding-top: 72px;
}

strong {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
}

.section-kicker {
  color: #8a6500;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title-wrap {
  background: var(--white-color);
  border: 2px solid rgba(242, 183, 5, 0.38);
  border-radius: var(--border-radius-medium);
  box-shadow: 8px 12px 30px rgba(26, 26, 26, 0.08);
  padding: 16px 28px;
}

.section-title-wrap h2,
.section-title-wrap .text-white {
  color: var(--dark-color) !important;
  font-size: 32px;
}

.section-icon {
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--dark-color);
  display: inline-flex;
  font-size: 28px;
  height: 62px;
  justify-content: center;
  min-width: 62px;
  width: 62px;
}

/*---------------------------------------
  Preloader
-----------------------------------------*/
.preloader {
  align-items: center;
  background: var(--white-color);
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  animation: spinner 0.9s linear infinite;
  border: 3px solid var(--soft-yellow);
  border-radius: 50%;
  border-top-color: var(--dark-color);
  box-sizing: border-box;
  content: '';
  height: 45px;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 45px;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  Buttons
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}

.custom-btn {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  color: var(--dark-color);
  padding: 12px 24px;
  text-align: center;
  white-space: normal;
}

.custom-btn:hover,
.custom-btn:focus {
  animation: wobble 0.55s ease;
  background: var(--dark-color);
  border-color: var(--dark-color);
  box-shadow: 8px 12px 28px rgba(26, 26, 26, 0.16);
  color: var(--white-color);
}

.custom-border-btn {
  background: var(--white-color);
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.hero .custom-btn {
  background: var(--white-color);
  border: 0;
  box-shadow: 7px 10px 24px rgba(26, 26, 26, 0.12);
  color: var(--dark-color);
  padding: 14px 25px;
}

.hero .custom-btn:hover,
.hero .custom-btn:focus {
  background: var(--dark-color);
  color: var(--white-color);
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-2deg) scale(1.03);
  }

  40% {
    transform: rotate(2deg) scale(1.03);
  }

  60% {
    transform: rotate(-1deg) scale(1.02);
  }

  80% {
    transform: rotate(1deg) scale(1.02);
  }
}

/*---------------------------------------
  Navigation
-----------------------------------------*/
.sticky-wrapper {
  height: auto !important;
  position: relative;
  z-index: 222;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 8px 12px 32px rgba(26, 26, 26, 0.12);
}

.navbar {
  background: transparent;
  left: 0;
  padding-bottom: 0;
  padding-top: 18px;
  position: absolute;
  right: 0;
  transition: all 0.3s;
  z-index: 9;
}

.navbar .container {
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  padding: 10px 24px;
}

.navbar-brand,
.navbar-brand:hover {
  align-items: center;
  color: var(--dark-color);
  display: inline-flex;
  font-size: 27px;
  gap: 10px;
  font-weight: var(--font-weight-bold);
  min-width: 0;
}

.brand-logo {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-left: 14px;
  margin-right: 14px;
  padding-left: 0;
  padding-right: 0;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  display: inline-block;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-bottom: 13px;
  padding-top: 13px;
  position: relative;
  text-transform: uppercase;
}

.navbar-nav .nav-link::after {
  background: transparent;
  border-radius: 999px;
  bottom: 7px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: var(--primary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--dark-color);
}

.navbar-brand:hover,
.navbar-brand:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.language-select:hover,
.language-select:focus,
.footer-links a:hover,
.footer-links a:focus,
.footer-brand:hover,
.footer-brand:focus {
  animation: wobble 0.55s ease;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.language-select {
  appearance: none;
  background: var(--white-color);
  border: 2px solid var(--dark-color);
  border-radius: 999px;
  color: var(--dark-color);
  cursor: pointer;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
  min-width: 74px;
  padding: 10px 28px 10px 14px;
}

.navbar-toggler {
  border: 0;
  cursor: pointer;
  height: 35px;
  margin: 0;
  outline: none;
  padding: 0;
  width: 30px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  display: block;
  height: 2px;
  position: relative;
  transition: background 10ms 300ms ease;
  width: 30px;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  background: var(--dark-color);
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  width: 30px;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  Hero
-----------------------------------------*/
.hero {
  background: var(--primary-color);
  min-height: 760px;
  overflow: hidden;
  padding-bottom: 112px;
  padding-top: 158px;
  position: relative;
}

.hero::before {
  display: none;
}

.hero::after {
  background: rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  bottom: -180px;
  content: "";
  height: 360px;
  left: -110px;
  position: absolute;
  width: 360px;
}

.hero-row {
  min-height: 530px;
}

.hero-text {
  max-width: 710px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(42px, 6vw, var(--h1-font-size));
  margin-bottom: 24px;
}

.hero h2 {
  font-size: clamp(25px, 3vw, var(--h2-font-size));
  margin-bottom: 22px;
  max-width: 700px;
}

.hero-copy {
  color: var(--dark-color);
  margin-bottom: 32px;
  max-width: 660px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
  position: relative;
}

.hero-image-wrap {
  display: none;
}

.hero-image {
  border-radius: 0;
  box-shadow: none;
  display: block;
  max-height: 520px;
  object-fit: contain;
  position: relative;
  transform-origin: center;
  width: min(100%, 470px);
  z-index: 2;
}

/*---------------------------------------
  Images
-----------------------------------------*/
.banner-story {
  background: var(--white-color);
}

.banner-image,
.about-image {
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius-large);
  box-shadow: 8px 16px 34px rgba(26, 26, 26, 0.1);
  width: 100%;
}

/*---------------------------------------
  Cards and content
-----------------------------------------*/
.values,
.featured,
.audience,
.contact,
.universe,
.faq {
  background: var(--section-bg-color);
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}

.value-card,
.story-card,
.book-card,
.merch-thumb,
.character-card,
.faq-card {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 7px 10px 24px rgba(26, 26, 26, 0.06);
  height: 100%;
}

.value-card {
  padding: 32px;
}

.value-card i {
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--dark-color);
  display: inline-flex;
  font-size: 28px;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  width: 58px;
}

.value-card h3,
.book-card h2,
.story-card h2 {
  margin-bottom: 14px;
}

.value-card p,
.story-card p:last-child,
.book-card p {
  margin-bottom: 0;
}

.about-thumb {
  padding-left: 20px;
  padding-right: 20px;
}

.story-card {
  padding: 38px;
}

.seo-intro {
  background: var(--white-color);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.inline-links a {
  background: var(--soft-yellow);
  border: 2px solid var(--border-color);
  border-radius: 999px;
  color: var(--dark-color);
  display: inline-flex;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
  justify-content: center;
  padding: 9px 14px;
  text-align: center;
}

.inline-links a:hover,
.inline-links a:focus {
  animation: wobble 0.55s ease;
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
}

.inline-links .business-mail-link {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
}

.inline-links .business-mail-link:hover,
.inline-links .business-mail-link:focus {
  background: var(--primary-color);
  color: var(--dark-color);
}

body[data-page="contact"] .seo-intro .inline-links a {
  background: var(--white-color);
  border: 0;
  box-shadow: 7px 10px 24px rgba(26, 26, 26, 0.1);
  color: var(--dark-color);
}

body[data-page="contact"] .seo-intro .inline-links a:hover,
body[data-page="contact"] .seo-intro .inline-links a:focus {
  background: var(--primary-color);
  box-shadow: 8px 12px 28px rgba(26, 26, 26, 0.14);
  color: var(--dark-color);
}

body[data-page="home"] .seo-intro .inline-links a {
  background: var(--white-color);
  border: 0;
  box-shadow: 7px 10px 24px rgba(26, 26, 26, 0.1);
  color: var(--dark-color);
}

body[data-page="home"] .seo-intro .inline-links a:hover,
body[data-page="home"] .seo-intro .inline-links a:focus {
  background: var(--primary-color);
  box-shadow: 8px 12px 28px rgba(26, 26, 26, 0.14);
  color: var(--dark-color);
}

body[data-page="home"] .faq {
  background: var(--white-color);
}

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

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-card {
  padding: 30px;
}

.faq-page .faq-card {
  padding: 34px;
}

.faq-card:hover,
.faq-card:focus-within {
  animation: wobble 0.55s ease;
  border-color: var(--primary-color);
}

.faq-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.faq-card p {
  margin-bottom: 0;
}

.faq-extra {
  margin-top: 56px;
}

.faq-extra > h2 {
  max-width: 780px;
}

.faq-extra > p {
  max-width: 820px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-detail {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 7px 10px 24px rgba(26, 26, 26, 0.06);
  overflow: hidden;
}

.faq-detail[open] {
  border-color: rgba(242, 183, 5, 0.55);
}

.faq-detail summary {
  color: var(--dark-color);
  cursor: pointer;
  font-size: 19px;
  font-weight: var(--font-weight-bold);
  list-style: none;
  padding: 22px 28px;
  position: relative;
}

.faq-detail summary::-webkit-details-marker {
  display: none;
}

.faq-detail summary:after {
  background: var(--primary-color);
  border-radius: 50%;
  content: "+";
  display: inline-flex;
  font-size: 22px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
}

.faq-detail[open] summary:after {
  content: "-";
}

.faq-detail summary span {
  display: block;
  padding-right: 48px;
}

.faq-detail p {
  border-top: 1px solid var(--border-color);
  margin: 0;
  padding: 20px 28px 24px;
}

.merch,
.book-grid {
  background: var(--white-color);
}

.merch-thumb {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-bottom: 28px;
  min-height: 560px;
  overflow: hidden;
  padding: 34px;
  transition: all 0.3s ease;
  width: 100%;
}

.merch-thumb:hover,
.book-card:hover,
.value-card:hover,
.character-card:hover,
.story-card:hover {
  animation: wobble 0.55s ease;
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.product-placeholder,
.book-cover-placeholder,
.book-cover-image {
  align-items: center;
  background: var(--soft-yellow);
  border: 2px dashed #d5a10d;
  border-radius: var(--border-radius-medium);
  color: var(--dark-color);
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.product-image {
  align-items: center;
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: flex;
  height: 260px;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  padding: 0;
}

.product-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-placeholder {
  height: 160px;
}

.book-cover-placeholder,
.book-cover-image {
  aspect-ratio: 1 / 1;
}

.product-placeholder i,
.book-cover-placeholder i {
  font-size: 54px;
}

.book-cover-image {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  overflow: hidden;
  padding: 0;
}

.book-cover-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.price-wrap {
  background: var(--dark-color);
  border-radius: 999px;
  padding: 7px 15px;
}

.price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

.book-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 30px;
}

.book-card h2 {
  font-size: 24px;
  line-height: 1.18;
}

.book-meta-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}

.book-meta-list li {
  background: var(--soft-yellow);
  border-radius: 14px;
  color: var(--dark-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: 1.35;
  padding: 9px 12px;
}

.book-card .custom-btn,
.merch-thumb .custom-btn {
  align-self: flex-start;
  margin-top: auto;
}

.status-badge {
  background: var(--primary-color);
  border-radius: 999px;
  color: var(--dark-color);
  display: inline-block;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
  margin-bottom: 18px;
  padding: 7px 13px;
}

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

.character-card {
  align-items: center;
  aspect-ratio: 16 / 10;
  display: grid;
  gap: 20px;
  grid-template-columns: 58% minmax(0, 1fr);
  overflow: hidden;
  padding: 18px;
  transition: all 0.3s ease;
}

.character-image {
  align-items: center;
  align-self: stretch;
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  color: var(--dark-color);
  display: flex;
  font-size: 46px;
  font-weight: var(--font-weight-bold);
  justify-content: center;
  min-height: 250px;
  overflow: hidden;
  padding: 18px;
}

.character-image img {
  display: block;
  height: 100%;
  max-height: 310px;
  object-fit: contain;
  width: 100%;
}

.character-image-placeholder {
  background: var(--white-color);
  border: 2px dashed #d5a10d;
  padding: 0;
}

.character-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.character-card p {
  font-size: 14px;
  line-height: 1.42;
  margin-bottom: 0;
}

/*---------------------------------------
  Contact
-----------------------------------------*/
.social-button {
  align-items: center;
  background: var(--white-color);
  border: 2px solid var(--dark-color);
  border-radius: var(--border-radius-medium);
  color: var(--dark-color);
  display: flex;
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  gap: 16px;
  min-height: 120px;
  padding: 28px;
}

.social-button i {
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  font-size: 30px;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.social-button:hover,
.social-button:focus {
  animation: wobble 0.55s ease;
  background: var(--dark-color);
  color: var(--white-color);
}

.social-button-disabled {
  cursor: default;
  opacity: 0.75;
}

.social-button-disabled:hover,
.social-button-disabled:focus {
  animation: none;
  background: var(--white-color);
  color: var(--dark-color);
}

.social-button-wide {
  min-height: 120px;
}

.publisher-contact {
  margin-top: 22px;
}

.publisher-label {
  color: #8a6500;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.publisher-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  height: 128px;
  max-width: 100%;
  padding: 0;
  position: relative;
  width: 260px;
}

.publisher-button img {
  border-radius: 0;
  display: block;
  height: 100%;
  left: 0;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  position: absolute;
  top: 0;
  transition: opacity 180ms ease;
  width: 100%;
}

.publisher-icon-hover {
  opacity: 0;
  transform: translateY(5px) scale(0.86);
  transform-origin: left center;
}

.publisher-button:hover,
.publisher-button:focus {
  animation: wobble 0.55s ease;
}

.publisher-button:hover .publisher-icon-default,
.publisher-button:focus .publisher-icon-default {
  opacity: 0;
}

.publisher-button:hover .publisher-icon-hover,
.publisher-button:focus .publisher-icon-hover {
  opacity: 1;
}

/*---------------------------------------
  Footer
-----------------------------------------*/
.site-footer {
  background: var(--white-color);
  box-shadow: 8px -12px 34px rgba(26, 26, 26, 0.08);
  padding-bottom: 22px;
  padding-top: 44px;
}

.site-footer .row {
  align-items: flex-start;
  row-gap: 30px;
}

.footer-brand {
  align-items: center;
  color: var(--dark-color);
  display: inline-flex;
  font-size: 26px;
  gap: 14px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

.footer-logo {
  height: 96px;
  object-fit: contain;
  width: 96px;
}

.back-to-top {
  align-items: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 8px 12px 30px rgba(26, 26, 26, 0.16);
  color: var(--dark-color);
  display: flex;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  height: 58px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  width: 58px;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
  animation: wobble 0.55s ease;
  background: var(--dark-color);
  box-shadow: 9px 14px 34px rgba(26, 26, 26, 0.2);
  color: var(--white-color);
}

.site-footer p,
.site-footer a {
  font-size: var(--copyright-font-size);
}

.footer-heading {
  color: var(--dark-color);
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-start;
}

.footer-links a {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
}

.footer-links a:hover,
.footer-brand:hover {
  color: #8a6500;
}

.publisher-footer-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  margin-top: 16px;
  max-width: 100%;
  padding: 0;
  width: fit-content;
}

.publisher-footer-link img {
  border-radius: 0;
  display: block;
  height: auto;
  max-height: 74px;
  max-width: 100%;
  object-fit: contain;
  width: 126px;
}

.publisher-footer-link:hover,
.publisher-footer-link:focus {
  animation: wobble 0.55s ease;
}

.site-footer .footer-copy {
  border-top: 1px solid var(--border-color);
  color: #757575;
  font-size: 11px;
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
}

/*---------------------------------------
  Responsive
-----------------------------------------*/
@media screen and (max-width: 1199px) {
  :root {
    --h1-font-size: 50px;
    --h2-font-size: 32px;
  }

  .hero-image-wrap {
    display: none;
  }

  .character-card {
    padding: 18px;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --h1-font-size: 44px;
    --h2-font-size: 30px;
    --h3-font-size: 24px;
  }

  .section-padding {
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .section-padding-sm {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .navbar .container {
    border-radius: var(--border-radius-medium);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .header-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 82px;
    padding-top: 135px;
  }

  .hero-row {
    min-height: auto;
  }

  .hero-text {
    margin-bottom: 50px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-image-wrap {
    height: 320px;
    width: 320px;
  }

  .about-thumb {
    padding-left: 0;
    padding-right: 0;
  }

  .character-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .character-card {
    aspect-ratio: auto;
    grid-template-columns: 52% minmax(0, 1fr);
    min-height: 310px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 575px) {
  :root {
    --h1-font-size: 36px;
    --h2-font-size: 26px;
    --h3-font-size: 22px;
    --p-font-size: 16px;
  }

  .navbar .container {
    margin-left: 12px;
    margin-right: 12px;
    padding: 10px 16px;
  }

  .navbar-brand {
    font-size: 22px;
  }

  .brand-logo {
    height: 48px;
    width: 48px;
  }

  .hero-title {
    margin-bottom: 18px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-image-wrap {
    display: none;
  }

  .hero-image {
    width: min(100%, 330px);
  }

  .section-title-wrap {
    align-items: flex-start !important;
    gap: 12px;
    padding: 14px 18px;
  }

  .section-title-wrap h2 {
    font-size: 25px;
  }

  .section-title-wrap .ms-4 {
    margin-left: 0 !important;
  }

  .section-icon {
    font-size: 22px;
    height: 50px;
    min-width: 50px;
    width: 50px;
  }

  .value-card,
  .story-card,
  .book-card,
  .merch-thumb {
    padding: 24px;
  }

  .price-wrap {
    margin-top: 12px;
  }

  .character-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .character-image {
    border-radius: 14px;
    font-size: 34px;
    min-height: 260px;
  }

  .character-card h3 {
    font-size: 20px;
  }

  .character-card p {
    font-size: 14px;
  }

  .social-button {
    min-height: 104px;
  }

  .inline-links a {
    width: 100%;
  }

  .faq-detail summary {
    font-size: 17px;
    padding: 19px 22px;
  }

  .faq-detail p {
    padding: 18px 22px 22px;
  }

  .publisher-button {
    height: 108px;
    width: min(100%, 220px);
  }

  .footer-brand {
    font-size: 23px;
  }

  .footer-logo {
    height: 78px;
    width: 78px;
  }

  .back-to-top {
    bottom: 16px;
    height: 50px;
    right: 16px;
    width: 50px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 360px) {
  :root {
    --h1-font-size: 32px;
    --h2-font-size: 24px;
  }

  .navbar .container {
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .brand-logo {
    height: 44px;
    width: 44px;
  }

  .section-icon {
    height: 44px;
    min-width: 44px;
    width: 44px;
  }

  .section-title-wrap h2 {
    font-size: 23px;
  }

  .hero-image {
    width: min(100%, 300px);
  }

  .site-footer .footer-copy {
    line-height: 1.5;
  }
}
