.header-brand {
  max-width: none;
  gap: 10px;
  font-family: 'Georgia', 'Times New Roman', 'Palatino Linotype', serif;
}

.header-brand-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
}

.header-brand-name {
  font-family: inherit;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.header-1 .header-brand-name {
  color: #fff;
}

.header-floating:not(.header-white-bg) .header-brand-name {
  color: #fff;
}

.header-nav-headings .header-brand-name {
  color: var(--color-foreground-heading, #111);
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .header-menu > .nav-item > .menu-link-main.active {
    --color-foreground-heading: rgba(0, 183, 241, 1);
    color: var(--color-foreground-heading);
    position: relative;
  }

  .header-floating:not(.header-white-bg) .header-menu > .nav-item > .menu-link-main.active {
    --color-foreground-heading: rgba(255, 255, 255, 1);
    color: var(--color-foreground-heading);
  }

  .header-menu > .nav-item > .menu-link-main.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 26px;
    height: 2px;
    background: currentColor;
  }
}

@media (max-width: 991px) {
  .header-menu > .nav-item > .menu-link-main.active {
    font-weight: 600;
  }
}

.header-actions .button.active {
  box-shadow: inset 0 0 0 2px currentColor;
}

.header-region .dropdown-item.locale-btn {
  border: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
}

.mobile-menu-bottom .dropdown-item.locale-btn {
  border: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
}

html,
body.color-scheme {
  background-image: none;
}

body.color-scheme > footer {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.footer-main.footer-2 {
  background: transparent;
}

.recent-posts .recent-post-section {
  color: #8a8f94;
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
  line-height: 1.3;
}

.recent-posts .recent-post-section-link {
  color: inherit;
}

.recent-posts .recent-post-section-link:hover {
  color: rgba(0, 183, 241, 1);
}

.recent-posts .blog-card .content .blog-title {
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
}

.hero-bg-poster {
  isolation: isolate;
  z-index: 0;
  align-items: flex-end;
  padding-bottom: 14vh;
}

.hero-bg-poster .content {
  --color-foreground: rgba(255, 255, 255, 0.75);
  --color-foreground-heading: rgba(255, 255, 255, 0.75);
  max-width: 1090px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero-bg-poster .content .top-text {
  color: rgba(14, 23, 38, 0.75);
  border-bottom-color: rgba(14, 23, 38, 0.75);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow:
    0 2px 6px rgba(255, 255, 255, 1),
    0 4px 16px rgba(255, 255, 255, 0.95),
    0 8px 24px rgba(255, 255, 255, 0.85);
}

.hero-bg-poster .content .heading {
  -webkit-text-stroke: 1px #999999;
  paint-order: stroke fill;
  text-shadow: 0 0 8px #2e2820;
}

.hero-bg-poster .media.media-bg {
  z-index: 0;
}

.hero-bg-poster .media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.marquee__track {
  gap: 0;
  width: max-content;
  padding: 8px 0;
  -webkit-animation: marquee-scroll 100s linear infinite;
  animation: marquee-scroll 100s linear infinite;
}

.marquee .heading.text-30 {
  font-size: 24px;
  line-height: 1.1;
}

.marquee .icon-30 {
  width: 22px;
  height: 22px;
}

@-webkit-keyframes marquee-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.marquee-star svg {
  display: block;
}
