/* Footer Nav Section */

.footer-nav-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--s-md);
  margin: var(--s-3xl) 0;
}

.footer-nav-block-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: var(--s-mn);
  text-align: left;
  padding: var(--s-lg) var(--s-md);
  border-top: 1px dotted hsla(0, 0%, 0%, 0.4);
  transition: all 0.2s ease;
}

.footer-nav-block-right {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: var(--s-mn);
  text-align: right;
  padding: var(--s-lg) var(--s-md);
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: hsla(0, 0%, 0%, 0.05);
  border-radius: var(--s-md) 0 0 var(--s-md);
  transition: all 0.2s ease;
}

.footer-nav-block-left:hover,
.footer-nav-block-right:hover {
  background-color: hsla(0, 0%, 0%, 0);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.footer-nav-row-left {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: var(--s-sm);
}

.footer-nav-row-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--s-sm);
}

.footer-nav-label {
  font-family: var(--text-font-family);
  font-size: var(--fs-sm);
  line-height: var(--lh-sm);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0em;
  width: 100%;
}

.footer-nav-title {
  font-family: "Libre Baskerville";
  font-size: var(--fs-md);
  line-height: var(--lh-md);
  width: 100%;
}

.footer-nav-image {
  height: 100%;
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}

.truncate-fix {
  flex: 1;
  min-width: 0;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.footer-nav-indent-left {
  padding-left: var(--s-lg);
}

.footer-nav-indent-right {
  padding-right: var(--s-lg);
}

.footer-nav-image-spacer {
  padding-top: var(--s-sm);
}

.footer-nav-icon {
  height: 16px;
  width: 16px;
}
