/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile Base Configuration */
@media only screen and (min-width: 0rem) {
  :root {
    /* Semantically Correct Dark Theme Engine for EsjemLabs */
    --bg-main: #0b0d11; /* Pure Canvas Background (Deep Slate Black) */
    --bg-card: #141820; /* Elevated Surfaces (The Workshop & Custom Cards) */
    --border-subtle: #222936; /* Subtle Outlines & Buttons */
    --text-muted: #7b8496; /* Category Tags & UI Descriptions */
    --text-light: #f5f7fa; /* High Contrast White Headers & Title text */

    /* Brand Accent Colors */
    --primary: #ff5e00; /* Your Main Signature Esjem Orange */
    --secondary: #ff5e00; /* Unified orange component indicator map */
    --accent-hover: #ff7e33; /* Hover state shifts */

    /* Legacy Variable Overrides (Forces old template blocks to adapt instantly) */
    --headerColor: #f5f7fa;
    --bodyTextColor: #7b8496;
    --bodyTextColorWhite: #f5f7fa;

    /* Typographic & Grid Constraints */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }

  /* Core Element Reset & Global Baseline Configuration */
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family:
      "Plus Jakarta Sans", Arial, sans-serif; /* Your verified Google Font */
    background-color: var(--bg-main); /* Forces the deep slate backdrop */
    color: var(--text-muted);
    overflow-x: hidden;
  }

  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    transition: background-color 0.3s;
  }

  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--text-light);
  }

  p,
  li,
  a {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
  }

  p,
  li {
    color: var(--text-muted);
  }

  a:hover,
  button:hover {
    cursor: pointer;
  }

  /* Modular Component Standardizations */
  .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }

  .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--text-light);
    position: relative;
  }

  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--text-muted);
  }

  /* The Premium Rectangle Action Button Style */
  .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(
      --primary
    ); /* Snaps seamlessly to your brand orange */
    display: inline-block;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
  }

  .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 0.15; /* Subtle dark tint shift layer over the orange on hover */
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  .cs-button-solid:hover:before {
    width: 100%;
  }

  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }

  /* Technical Developer UI Accents (Metrics, Category tags, Numbers) */
  .tech-metric,
  .tag,
  .code-readout,
  .cs-game-tag,
  .cs-number {
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile Layout overrides - Dark option locked native to core variables */
@media only screen and (min-width: 0em) {
  #dark-mode-toggle {
    display: none; /* Removed toggle visibility as site runs purely native dark mode */
  }
}

/*-- -------------------------- -->
<---      Mobile Navigation     -->
<--- -------------------------- -*/
/* Mobile - 1023px viewport boundaries */
@media only screen and (max-width: 1023.5px) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation:before {
    height: 100%;
  }
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background: rgba(
      11,
      13,
      17,
      0.75
    ); /* Deep slate navigation base transparency */
    position: fixed;
    z-index: 10000;
    transition: background-color 0.3s;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0%;
    background: var(--bg-card);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.3s;
  }
  #cs-navigation:after {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -1100;
    transition:
      height 0.5s,
      opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active {
    background-color: var(--bg-card);
  }
  #cs-navigation.cs-active:after {
    height: 150vw;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  /* Option 1: Mobile Logo Overflow Pop Configuration */
  #cs-navigation .cs-logo {
    width: auto;
    height: clamp(3.5rem, 5vw, 5rem);
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    position: relative;
    overflow: visible; /* Allows the image pop effect */
    text-decoration: none;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 140%; /* Enlarges character portrait cleanly */
    max-height: none;
    object-fit: contain;
    position: relative;
    top: 0;
    transform: none;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
  }
  #cs-navigation .cs-logo-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: var(--primary);
    border: none;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.6s;
  }
  #cs-navigation .cs-toggle.cs-active {
    transform: rotate(180deg);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #fafbfc;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition:
      transform 0.5s,
      top 0.3s,
      left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition:
      top 0.3s,
      left 0.3s,
      transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition:
      bottom 0.3s,
      opacity 0.3s;
  }
}

/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
@media only screen and (max-width: 1023.5px) {
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    opacity: 0;
    background-color: var(
      --bg-card
    ); /* Swaps out matching dark card layer background */
    box-shadow: inset rgba(0, 0, 0, 0.4) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition:
      transform 0.4s,
      opacity 0.3s;
  }
  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    width: 100%;
    text-align: center;
    list-style: none;
    margin-right: 0;
    transform: translateY(-4.375rem);
    opacity: 0;
    transition:
      transform 0.6s,
      opacity 0.9s;
  }
  /* Transitions delay structural configurations remain preserved */
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    color: var(--text-light);
    display: inline-block;
    position: relative;
    transition:
      color 0.3s,
      transform 0.3s;
  }
  #cs-navigation .cs-li-link.cs-active,
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
    transform: scale(1.05);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
@media only screen and (min-width: 1024px) {
  body.scroll #cs-navigation:before {
    height: 100%;
  }
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    background: rgba(11, 13, 17, 0.75);
    position: fixed;
    z-index: 10000;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0%;
    background: var(--bg-card);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.3s;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    height: 6.3125rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }

  /* Option 1: Desktop Logo Overflow Pop Configuration */
  #cs-navigation .cs-logo {
    width: auto;
    height: 3.75rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    z-index: 100;
    position: relative;
    overflow: visible; /* Key rule: Allows graphics to pop outside nav height */
    text-decoration: none;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 155%; /* Scales mascot cleanly over navigation borders */
    max-height: none;
    object-fit: contain;
    position: relative;
    top: 0;
    transform: none;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.6));
  }
  #cs-navigation .cs-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color 0.3s;
  }
  #cs-navigation .cs-logo:hover .cs-logo-text {
    color: var(--primary);
  }

  #cs-navigation .cs-ul-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2.5rem 0;
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: clamp(0.875rem, 0.6vw, 1rem);
    font-weight: 700;
    line-height: 1.5em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    padding: 0 1rem;
    color: var(--text-light);
    display: block;
    position: relative;
    z-index: 1;
    transition:
      color 0.3s,
      transform 0.3s;
  }
  #cs-navigation .cs-li-link:before {
    content: "";
    display: none;
  }
  #cs-navigation .cs-li-link:hover,
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
    transform: scale(1.05);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 2rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 6px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}

/*-- -------------------------- -->
<---           Banner           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #banner-712 {
    padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
    position: relative;
    background-color: var(--bg-main);
    z-index: 1;
  }
  #banner-712 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  #banner-712 .cs-int-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--text-light);
    position: relative;
  }
  #banner-712 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-712 .cs-background:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.85; /* Darkened further for layout crispness */
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-712 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 48rem) {
  #banner-712 .cs-background:before {
    opacity: 1;
    background: linear-gradient(
      90.01deg,
      rgba(11, 13, 17, 0.95) 16.86%,
      rgba(11, 13, 17, 0.4) 100%
    );
  }
}

/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/

/* Mobile Base Layout Configuration - 360px up */
@media only screen and (min-width: 0rem) {
  #cs-footer {
    padding: clamp(3rem, 6vw, 4rem) 1rem;
    background-color: #08090c; /* Dark background under main body variable */
    border-top: 1px solid var(--border-subtle);
  }
  #cs-footer .cs-container {
    width: 100%;
    max-width: 50rem;
    margin: auto;
  }
  #cs-footer .cs-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    column-gap: 2.25rem;
    row-gap: clamp(2.5rem, 5vw, 3rem);
  }
  #cs-footer .cs-logo-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #cs-footer .cs-logo-img {
    width: 9.875rem;
    height: auto;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
  #cs-footer .cs-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: center;
    max-width: 20.5rem;
    margin: 0;
    color: var(--text-muted);
  }
  #cs-footer .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered on mobile profiles */
    justify-content: flex-start;
    gap: 1.25rem;
  }
  #cs-footer .cs-sitemap {
    gap: 0.75rem;
  }
  #cs-footer .cs-li {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-footer .cs-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
  }
  #cs-footer .cs-link:hover {
    color: var(--primary); /* Snaps cleanly to accent orange */
  }
  #cs-footer .cs-header {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
  }
  #cs-footer .cs-subscribe-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-footer .cs-subscribe-p {
    font-size: 0.9rem;
    line-height: 1.5em;
    text-align: center;
    max-width: 22rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-muted);
  }

  /* The Dashboard Form Component Box */
  #cs-footer .cs-form {
    width: 100%;
    max-width: 26rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-card); /* Inner input panel elevation */
    padding: 4px;
    border-radius: 8px;
  }
  #cs-footer .cs-input {
    width: 100%;
    height: 2.75rem;
    padding-left: 1rem;
    background-color: transparent;
    color: var(--text-light);
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
  }
  #cs-footer .cs-input:focus {
    outline: none;
  }
  #cs-footer .cs-input::placeholder {
    color: #4a5262; /* Clear dark resting indicator */
  }

  /* Dynamic Submit Action Control Node */
  #cs-footer #cs-submit-487 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    height: 2.75rem;
    padding: 0 1.25rem;
    background-color: var(
      --primary
    ); /* Matches brand highlight rule variables */
    border: none;
    border-radius: 6px;
    color: #fff;
    white-space: nowrap;
    transition: background-color 0.2s;
  }
  #cs-footer #cs-submit-487:hover {
    background-color: var(--accent-hover);
    cursor: pointer;
  }

  #cs-footer .cs-bottom {
    width: 100%;
    margin-top: clamp(3rem, 6vw, 3.75rem);
    padding-top: clamp(2rem, 4vw, 2.5rem);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-footer .cs-copyright {
    font-size: 0.85rem;
    color: #4a5262;
    text-align: center;
  }
  #cs-footer .cs-copyright-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
  }
  #cs-footer .cs-copyright-link:hover {
    color: var(--primary);
  }
  #cs-footer .cs-social {
    display: inline-flex;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  /* Circular Dark Minimalist Social Asset Containers */
  #cs-footer .cs-social-link {
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
      border-color 0.2s,
      transform 0.2s;
  }
  #cs-footer .cs-social-link:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
  }
  #cs-footer .cs-social-img {
    height: 1rem;
    width: auto;
    display: block;
    filter: invert(56%) sepia(0%) saturate(31%) hue-rotate(180deg)
      brightness(96%) contrast(89%); /* Matches text gray icon values */
    transition: filter 0.2s;
  }
  #cs-footer .cs-social-link:hover .cs-social-img {
    /* Flips standard svg inline vectors to your high contrast brand orange on active hovers */
    filter: invert(47%) sepia(90%) saturate(2421%) hue-rotate(2deg)
      brightness(101%) contrast(105%);
  }
}

/* Tablet Layout Standardizations - 768px up */
@media only screen and (min-width: 48rem) {
  #cs-footer .cs-logo-group {
    align-items: flex-start;
  }
  #cs-footer .cs-text {
    text-align: left;
  }
  #cs-footer .cs-ul {
    align-items: flex-start;
  }
  #cs-footer .cs-li {
    justify-content: flex-start;
  }
  #cs-footer .cs-top {
    justify-content: space-between;
  }
  #cs-footer .cs-subscribe-group {
    width: auto;
    align-items: flex-start;
  }
  #cs-footer .cs-subscribe-p {
    text-align: left;
  }
  #cs-footer .cs-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #cs-footer .cs-copyright {
    text-align: left;
  }
}

/* Desktop Monitor Constraints - 1024px up */
@media only screen and (min-width: 64rem) {
  #cs-footer .cs-container {
    max-width: 80rem;
  }
  #cs-footer .cs-top {
    flex-wrap: nowrap;
  }
  #cs-footer .cs-logo-group {
    width: 24%;
    max-width: 19.0625rem;
  }
}
