/* ===== FooterColumn — one link column; accordion on mobile, open on desktop ===== */

/* Mobile: collapsible. A single hairline between columns (not around each)
   keeps the separator count low; the first column borrows the brand divider. */
.cc_pSmp65GtZr_HaiT5L2RGp .fcol {
  border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent);
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol__heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol__chevron {
  display: inline-flex;
  opacity: 0.65;
  transition: transform 220ms ease;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol[data-open="true"] .fcol__chevron {
  transform: rotate(180deg);
}

/* Collapsed by default on mobile */
.cc_pSmp65GtZr_HaiT5L2RGp .fcol__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol[data-open="true"] .fcol__list {
  display: flex;
  padding: 0 0 16px;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol__link {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-small);
  opacity: 0.8;
  transition: opacity 160ms ease;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol__link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc_pSmp65GtZr_HaiT5L2RGp .fcol__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Tablet up: no accordion chrome, always expanded, no separators */
@media (min-width: 768px) {
  .cc_pSmp65GtZr_HaiT5L2RGp .fcol {
    border-top: 0;
    /* grow into free space, shrink when the track is tight; 120px floor keeps
       headings readable while letting all columns fit on a portrait tablet */
    flex: 1 1 120px;
    min-width: 120px;
  }
  .cc_pSmp65GtZr_HaiT5L2RGp .fcol__summary {
    padding: 0 0 18px;
    cursor: default;
    pointer-events: none;
  }
  .cc_pSmp65GtZr_HaiT5L2RGp .fcol__chevron {
    display: none;
  }
  .cc_pSmp65GtZr_HaiT5L2RGp .fcol__list {
    display: flex;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_HaiT5L2RGp .fcol__chevron, .cc_pSmp65GtZr_HaiT5L2RGp .fcol__link {
    transition: none;
  }
}
