/**
 * @file
 * Store Locations footer block styles.
 *
 * 2x grid layout for location cards within the 50% footer section.
 */

/* Container - 2x grid for location cards */
.store-locations-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: inherit;
}

/* Individual location card */
.store-locations-footer__location {
  margin: 0;
  padding: 0;
}

/* Location name */
.store-locations-footer__name {
  margin: 0 0 0.25rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: inherit;
}

/* Address - with map icon */
.store-locations-footer__address {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
  font-style: normal;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.store-locations-footer__address:hover,
.store-locations-footer__address:focus {
  opacity: 1;
  text-decoration: underline;
}

.store-locations-footer__address svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  opacity: 0.7;
}

.store-locations-footer__address-text span {
  display: inline;
}

.store-locations-footer__address-text span:not(:last-child)::after {
  content: ", ";
}

/* Hours section */
.store-locations-footer__hours {
  margin-top: 0.25rem;
}

.store-locations-footer__hours-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.125rem;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.store-locations-footer__hours-title svg {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

/* Phone - displayed after hours */
.store-locations-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.375rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.6875rem;
  opacity: 0.85;
}

.store-locations-footer__phone:hover,
.store-locations-footer__phone:focus {
  opacity: 1;
  text-decoration: underline;
}

.store-locations-footer__phone svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Hours list - two column grid, flowing top to bottom */
.store-locations-footer__hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 0 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.625rem;
}

.store-locations-footer__hours-row {
  display: flex;
  gap: 0.25rem;
}

.store-locations-footer__hours-row dt {
  font-weight: 500;
  opacity: 0.9;
  min-width: 1.75rem;
}

.store-locations-footer__hours-row dd {
  margin: 0;
  opacity: 0.85;
}

/* Mobile - stack to single column */
@media (max-width: 576px) {
  .store-locations-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    font-size: 0.875rem;
  }

  .store-locations-footer__name {
    font-size: 1rem;
  }

  .store-locations-footer__hours-title {
    font-size: 0.75rem;
  }

  .store-locations-footer__phone {
    font-size: 0.75rem;
  }

  .store-locations-footer__hours-list {
    font-size: 0.8125rem;
  }
}
