/**
 * @file
 * Store Locations contact page block styles.
 *
 * Compact design for sidebar display.
 */

.store-locations-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

/* Card - compact with subtle styling */
.store-locations-contact__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.75rem;
}

/* Location name - compact */
.store-locations-contact__name {
  margin: 0 0 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}

/* Details section - address and phone */
.store-locations-contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

/* Links - compact inline with icons */
.store-locations-contact__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.375rem;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.store-locations-contact__link:hover {
  color: #1f2937;
}

.store-locations-contact__link svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #9ca3af;
}

/* Hours section - very compact */
.store-locations-contact__hours {
  margin: 0;
}

.store-locations-contact__hours-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b7280;
}

.store-locations-contact__hours-title svg {
  color: #9ca3af;
}

/* Hours list - 2-column grid, top to bottom flow */
.store-locations-contact__hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 0 0.75rem;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.store-locations-contact__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
}

.store-locations-contact__hours-row dt {
  font-weight: 500;
  color: #374151;
}

.store-locations-contact__hours-row dd {
  margin: 0;
  text-align: right;
  color: #6b7280;
}

.store-locations-contact__hours-row--closed dt,
.store-locations-contact__hours-row--closed dd {
  color: #9ca3af;
}

/* When in main content area - use grid for larger displays */
.layout-content .store-locations-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.layout-content .store-locations-contact__card {
  padding: 1.25rem;
}

.layout-content .store-locations-contact__name {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.layout-content .store-locations-contact__details {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
}

.layout-content .store-locations-contact__link {
  font-size: 0.875rem;
}

.layout-content .store-locations-contact__hours-list {
  font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 639px) {
  .store-locations-contact {
    gap: 0.75rem;
  }

  .store-locations-contact__hours-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
  }
}

/* Touch targets */
.store-locations-contact__link {
  min-height: 32px;
  padding: 0.125rem 0;
}
