/* Athletic Carnivore — footer public global */
.ac-unified-footer{
  width:100%;
  margin:0;
  padding:0;
  border-top:1px solid #ddd3c1;
  background:#f4efe5;
  color:#788074;
  font-family:Inter,Arial,Helvetica,sans-serif;
  position:relative;
  z-index:1;
}
.ac-unified-footer-inner{
  width:min(1240px,calc(100% - 40px));
  margin:0 auto;
  padding:13px 0 14px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  grid-template-areas:
    "copy company"
    "links links";
  align-items:center;
  gap:8px 24px;
  font-size:12.5px;
  line-height:1.45;
}
.ac-unified-footer-copy{
  grid-area:copy;
  justify-self:start;
  min-width:0;
  white-space:normal;
}
.ac-unified-footer-company{
  grid-area:company;
  justify-self:end;
  min-width:0;
  text-align:right;
  white-space:normal;
}
.ac-unified-footer-links{
  grid-area:links;
  justify-self:center;
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:5px 8px;
  text-align:center;
  white-space:normal;
}
.ac-unified-footer-links a{
  display:inline-block;
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .15s ease,border-color .15s ease;
}
.ac-unified-footer-links a:hover,
.ac-unified-footer-links a:focus-visible{
  color:#6f7d35;
  border-bottom-color:#6f7d35;
  outline:none;
}
@media(max-width:760px){
  .ac-unified-footer-inner{
    width:min(100% - 24px,720px);
    grid-template-columns:1fr;
    grid-template-areas:
      "copy"
      "company"
      "links";
    gap:6px;
    padding:13px 0 15px;
    text-align:center;
  }
  .ac-unified-footer-copy,
  .ac-unified-footer-company,
  .ac-unified-footer-links{
    justify-self:center;
    text-align:center;
  }
}
