/* ============================= */
/* Contact Center–style footer   */
/* (adapted from styles_* to cc-footer_*) */
/* ============================= */

/* Brand color variables (if you already define these elsewhere, you can drop this block) */
:root {
  --orange: #f79d00;
  --orange-hover: #f68e00;
  --orange-active: #e88500;
  --white-hover: #c6c7c9;
  --white-active: #dddedf;
  --deep-blue: #1e293c;
  --black: #12151a;
  --white: #ffffff;
}

/* Button (was .styles_button__hA4I3) */
.cc-footer__button {
  background-color: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  max-width: 260px;
  width: 100%;
  height: 48px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--black);
  border: none;
  outline: none;
  transition: background-color 50ms ease-out;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .cc-footer__button {
    max-width: 100%;
  }
}

/* Hover/active states (was .styles_button__hA4I3.styles_orange__RF6Do) */
.cc-footer__button:hover {
  background-color: var(--orange-hover);
}

.cc-footer__button:active {
  background-color: var(--orange-active);
}

/* Container (was .styles_container__b2bYx) */
.cc-footer {
  background: var(--deep-blue);
  padding: 0.3rem 0px 0px;
  overflow: hidden;
}

/* Wrapper (was .styles_wrapper__i6DUO) */
.cc-footer__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
}

/* Cubes image (was .styles_wrapper__i6DUO .styles_cubes__eGTJk) */
.cc-footer__wrapper .cc-footer__cubes {
  position: absolute;
  right: 0;
  top: -50px;
}

/* Medium breakpoint (was @media ... .styles_wrapper__i6DUO + cubes) */
@media screen and (max-width: 1320px) {
  .cc-footer__wrapper {
    max-width: 560px;
    padding: 20px 20px 0px 20px; /* add padding on top when the original footer cubes and section is removed (will be returned later) */

  }

  .cc-footer__wrapper .cc-footer__cubes {
    right: -550px;
    top: 0;
  }
}

/* Small breakpoint (was @media ... width/height/right for cubes) */
@media screen and (max-width: 600px) {
  .cc-footer__wrapper .cc-footer__cubes {
    width: 497px;
    height: auto;          /* keep SVG aspect ratio instead of hard 332px */
    right: -300px;
  }
}

/* Top side (was .styles_topSide__U3AOh) */
.cc-footer__top {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1320px) {
  .cc-footer__top {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .cc-footer__top {
    padding: 48px 0;
  }
}

/* Bottom side (was .styles_bottomSide__dEVVK) */
.cc-footer__bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  z-index: 1;
}

/* Links block (was .styles_bottomSide__dEVVK .styles_links__btR_Y) */
.cc-footer__bottom .cc-footer__links {
  display: flex;
  gap: 32px;
}

/* Link styles (was .styles_bottomSide__dEVVK .styles_links__btR_Y a) */
.cc-footer__bottom .cc-footer__links a {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
  transition: color 0.1s ease-out;
  text-decoration: none;
}

.cc-footer__bottom .cc-footer__links a:hover {
  color: var(--white-hover);
}

.cc-footer__bottom .cc-footer__links a:active {
  color: var(--white-active);
}

/* Text (was .styles_bottomSide__dEVVK p) */
.cc-footer__bottom p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
}

/* Bottom responsive (was @media ... .styles_bottomSide__dEVVK) */
@media screen and (max-width: 1320px) {
  .cc-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
    padding: 0 0 24px;
  }

  .cc-footer__bottom p {
    max-width: 440px;
  }
}

/* Bottom text/links sizes on small screens */
@media screen and (max-width: 600px) {
  .cc-footer__bottom .cc-footer__links a,
  .cc-footer__bottom p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Restore correct image behavior ONLY inside the Contact Center footer */

.cc-footer img,
.cc-footer svg,
.cc-footer video {
  max-width: none !important;      /* do not auto-scale unless WE define it */
  height: auto !important;
  display: inline-block !important; /* do not force "block" */
  vertical-align: initial !important;
}

.cc-header-btn {
  /*  padding: 0 14px; */
  height: 36px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: Sora, Sora Fallback;
}

html.dark .cc-header-btn {
    color: #1f130e;
}