.ch-footer-ux .chf-footer {
  background: #262626;
  color: #fff;
  padding: 30px 0 34px;
}

.ch-footer-ux .chf-container {
  width: min(1450px, calc(100% - 64px));
  margin: 0 auto;
}

.ch-footer-ux .chf-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(220px, 1.1fr) minmax(220px, 1.1fr) minmax(0, 1.45fr);
  gap: 48px;
  align-items: start;
}

.ch-footer-ux .chf-brand-col,
.ch-footer-ux .chf-nav-col,
.ch-footer-ux .chf-meta-col {
  min-width: 0;
}

.ch-footer-ux .chf-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 22px;
}

.ch-footer-ux .chf-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 52px;
}

.ch-footer-ux .chf-desc {
  max-width: 590px;
  margin: 0 0 24px;
  color: #c7cbd2;
  font-size: 17px;
  line-height: 1.72;
}

.ch-footer-ux .chf-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-footer-ux .chf-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}

.ch-footer-ux .chf-contact__icon {
  width: 14px;
  text-align: center;
  flex: 0 0 14px;
  color: #d8dde5;
  font-size: 15px;
  line-height: 1;
}

.ch-footer-ux .chf-contact a {
  color: #e3e7ed;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.45;
}

.ch-footer-ux .chf-contact strong {
  color: #fff;
  font-weight: 800;
}

.ch-footer-ux .chf-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.ch-footer-ux .chf-social a {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #363636;
  color: #efefef;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ch-footer-ux .chf-social a:hover {
  background: #444;
  color: #fff;
}

.ch-footer-ux .chf-nav-col h4,
.ch-footer-ux .chf-meta-col h4 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.ch-footer-ux .chf-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-footer-ux .chf-nav-col li {
  margin: 0 0 12px;
}

.ch-footer-ux .chf-nav-col a {
  color: #c3c8d0;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.45;
}

.ch-footer-ux .chf-nav-col a:hover {
  color: #fff;
}

.ch-footer-ux .chf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.ch-footer-ux .chf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 10px 14px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.ch-footer-ux .chf-badge--red {
  background: #df392f;
}

.ch-footer-ux .chf-badge--blue {
  background: #1f75d8;
}

.ch-footer-ux .chf-badge--green {
  background: #43943c;
}

.ch-footer-ux .chf-legal p {
  margin: 0 0 8px;
  color: #aeb4bd;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 1280px) {
  .ch-footer-ux .chf-container {
    width: min(1450px, calc(100% - 40px));
  }

  .ch-footer-ux .chf-grid {
    grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(220px, 1fr)) minmax(0, 1.3fr);
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .ch-footer-ux .chf-footer {
    padding: 28px 0 30px;
  }

  .ch-footer-ux .chf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .ch-footer-ux .chf-desc {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ch-footer-ux .chf-container {
    width: min(1450px, calc(100% - 28px));
  }

  .ch-footer-ux .chf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .ch-footer-ux .chf-brand-col,
  .ch-footer-ux .chf-meta-col {
    grid-column: 1 / -1;
  }

  .ch-footer-ux .chf-desc,
  .ch-footer-ux .chf-contact a,
  .ch-footer-ux .chf-nav-col a,
  .ch-footer-ux .chf-legal p {
    font-size: 16px;
  }

  .ch-footer-ux .chf-nav-col h4 {
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .ch-footer-ux .chf-nav-col li {
    margin-bottom: 10px;
  }

  .ch-footer-ux .chf-badges {
    gap: 10px;
  }

  .ch-footer-ux .chf-badge {
    white-space: normal;
  }
}
