.common-footer {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  margin-top: 24px;
  background: #303030;
  color: #ffffff;
}

.common-footer__section {
  flex: 1 1 50%;
  margin: 16px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.common-footer__section--brand {
  text-align: left;
}

.common-footer__section--links {
  text-align: left;
}

.common-footer__logo-link {
  display: inline-block;
  text-decoration: none;
}

.common-footer__logo {
  width: 85.81px;
  height: 50px;
  margin-bottom: 20px;
}

.common-footer__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.common-footer__divider--vertical {
  width: 1px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 1);
}

.common-footer__divider--horizontal {
  display: none;
  width: calc(100% - 32px);
  height: 1px;
  margin: 0 16px;
  background: rgba(255, 255, 255, 1);
}

.common-footer__heading {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
}

.common-footer__city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.common-footer__city-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-decoration: none;
}

.common-footer__city-link:hover,
.common-footer__contact-link:hover {
  text-decoration: underline;
}

.common-footer__contact {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 1);
}

.common-footer__contact-link {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.common-footer__copyright {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.common-footer__cities-mobile {
  display: none;
}

.common-footer__dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  margin-top: 24px;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
}

.common-footer__dropdown-header::-webkit-details-marker {
  display: none;
}

.common-footer__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 1);
  border-bottom: 2px solid rgba(255, 255, 255, 1);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.common-footer__cities-mobile[open] .common-footer__arrow {
  transform: rotate(-135deg);
}

.common-footer__dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .common-footer {
    flex-direction: column;
    text-align: center;
    margin-top: 16px;
  }

  .common-footer__section {
    margin: 16px;
    text-align: center;
  }

  .common-footer__section--brand,
  .common-footer__section--links {
    text-align: center;
  }

  .common-footer__logo {
    margin-bottom: 16px;
  }

  .common-footer__description {
    text-align: center;
  }

  .common-footer__divider--vertical {
    display: none;
  }

  .common-footer__divider--horizontal {
    display: block;
  }

  .common-footer__cities-desktop {
    display: none;
  }

  .common-footer__cities-mobile {
    display: block;
    text-align: left;
  }

  .common-footer__dropdown-content {
    text-align: left;
  }

  .common-footer__city-link {
    display: block;
    font-size: 14px;
  }

  .common-footer__contact,
  .common-footer__copyright {
    margin-top: 16px;
    text-align: center;
  }
}
