
.shared-bottombar {
  margin-top: 40px;
  background: #172f45;
  color: white;
  padding: 14px 24px;
}
.shared-bottombar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.shared-bottombar-logo {
  height: 32px;
  width: auto;
}
.shared-bottombar-text {
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 14px;
  opacity: 0.9;
  text-align: right;
}
@media (max-width: 700px) {
  .shared-bottombar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .shared-bottombar-text {
    text-align: left;
  }
}
