p.main-title {
  font-size: 70px;
}

.separate-containers.no-sidebar .site-main {
  margin-top: 0px;
}

.separate-containers .inside-article {
  padding-top: 0px !important;
}

#masthead .grid-container {
  max-width: none;
}

#page {
  margin-left: 0 !important;
  max-width: 70vw;
}

.nav-float-right #site-navigation {
  margin-left: 3rem !important;
}

.entry-title {
  padding-bottom: 2rem;
  padding-top: 1rem;
}

body.asm-overlay-open {
  overflow: hidden;
}



#animated-svg-menu.asm-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
  z-index: 9999;
}

.has-inline-mobile-toggle #site-navigation .inside-navigation>#animated-svg-menu.asm-container {
  display: flex !important;
}

#masthead.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#masthead .inside-header {
  transition: padding 0.3s ease, height 0.3s ease;
  justify-content: space-between;
}

#masthead .site-logo img,
#masthead .main-title a img,
.asm-logo img {
  height: 60px;
  transition: height 0.3s;
}

.asm-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  margin-right: 0.75rem;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  color: var(--asm-main-title-color, #263f92);
  border-radius: 4px;
}

.asm-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.asm-items-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.asm-items {
  display: flex;
  justify-content: space-around;
  flex-grow: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.asm-items-grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-grow: 1;
  width: 100%;
  gap: 1rem;
}

.asm-language-switcher {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.asm-language-switcher--mobile {
  display: none;
  justify-content: center;
  width: 100%;
  margin: 0 0 1rem;
}

.asm-language-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.asm-language-link {
  color: var(--asm-main-title-color, #263f92);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.85rem;
}

.asm-language-link:hover,
.asm-language-link:focus-visible {
  color: var(--asm-hover-color, #92263f);
  text-decoration: underline;
}

.asm-language-link.is-active {
  color: var(--asm-hover-color, #92263f);
}

.asm-language-sep {
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
}

.asm-language-switcher--desktop {
  margin-left: auto;
  align-self: flex-start;
  padding-top: 0.25rem;
}

.asm-item {
  flex: 1 1 auto;
  text-align: center;
  cursor: pointer;
  margin: 0 0.25rem;
}

.asm-icon {
  position: relative;
  display: inline-block;
  width: var(--asm-icon-size, 80px);
  height: var(--asm-icon-size, 80px);
  margin: 0 auto;
  --asm-base-stroke: #c4c4c4;
  --asm-active-stroke: #263f92;
  --asm-stroke-width: 14px;
}

.asm-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke-width: var(--asm-stroke-width, 4px);
  fill: none;
  --asm-stroke-duration: 0.6s;
  --asm-stroke-delay-step: 0.12s;
}

.asm-icon .asm-svg-base {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.asm-icon .asm-svg-base * {
  stroke: var(--asm-base-stroke, #c4c4c4) !important;
  stroke-width: var(--asm-stroke-width, 4px) !important;
  fill: none !important;
}

.asm-icon .asm-svg-animated {
  position: relative;
  z-index: 1;
}

.asm-icon .asm-svg-animated.asm-initializing [data-asm-stroke] {
  transition: none !important;
}

.asm-icon .asm-svg-animated [data-asm-stroke] {
  stroke-dasharray: var(--asm-stroke-length, 0);
  stroke-dashoffset: var(--asm-stroke-length, 0);
  transition: stroke-dashoffset var(--asm-stroke-duration) cubic-bezier(0.47, 0, 0.745, 0.715) var(--asm-stroke-delay, 0s);
  stroke: var(--asm-active-stroke, #263f92) !important;
  stroke-width: var(--asm-stroke-width, 4px) !important;
}

@media (min-width: 768px) {
  body {
    background: url("../img/background-ester3.png");
    background-size: auto 100vh;
    background-position: right 10rem;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

.asm-item:hover .asm-icon .asm-svg-animated [data-asm-stroke],
.asm-item:focus-visible .asm-icon .asm-svg-animated [data-asm-stroke],
.asm-icon .asm-svg-animated.active [data-asm-stroke] {
  stroke-dashoffset: 0;
}

.asm-title {
  margin-top: 8px;
  font-size: 1rem;
  transition: color 0.3s;
  font-weight: 700;
  color: #6f6f6f;
}

.asm-item:hover .asm-title {
  color: var(--asm-hover-color, #92263f);
}

.asm-item-active .asm-title,
.asm-item-active:hover .asm-title,
.asm-item-active:focus-visible .asm-title {
  color: var(--asm-main-title-color, #263f92);
}

@media (max-width: 768px) {

  .has-inline-mobile-toggle #site-navigation {
    flex-basis: auto !important;
  }

  .nav-float-right #site-navigation {
    margin-left: 0 !important;
  }

  #animated-svg-menu.asm-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-inline: 0.5rem;
  }

  #masthead .main-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .asm-toggle {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  .asm-toggle-box {
    position: relative;
    width: 24px;
    height: 18px;
    display: inline-block;
  }

  .asm-toggle-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .asm-toggle-bar:nth-child(1) {
    top: 0;
  }

  .asm-toggle-bar:nth-child(2) {
    top: 8px;
  }

  .asm-toggle-bar:nth-child(3) {
    bottom: 0;
  }

  .asm-toggle[aria-expanded="true"] .asm-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .asm-toggle[aria-expanded="true"] .asm-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .asm-toggle[aria-expanded="true"] .asm-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .asm-toggle-label {
    display: none;
  }

  .asm-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .asm-items-wrapper {
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .asm-items {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.98);
    z-index: 10000;
  }

  .asm-items-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    justify-items: center;
    align-items: start;
    gap: 0.5rem;
    width: 100%;
  }

  .asm-item {
    margin: 0;
    width: 100%;
    max-width: 220px;
  }

  .asm-language-switcher--desktop {
    display: none;
  }

  .asm-language-switcher--mobile {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    order: -1;
  }

  .asm-language-switcher--mobile .asm-language-nav {
    justify-content: center;
    width: 100%;
  }

  .asm-items.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
}