/* body .footer 比 .footer 多一層 specificity，不需要 !important */
body .footer {
  background: #f0ead9;
  border-top: 1px solid #d9d0bc;
}

/* 以下全是新 class，與 common.css 無衝突 */

.df {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 32px;
}

.df__locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.df__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}

.df__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  white-space: nowrap;
}

.df__name:hover {
  color: var(--color-primary-text);
}

.df__phone {
  font-size: 1.1rem;
  color: var(--color-primary-text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.df__copy {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 2;
}

@media (max-width: 1100px) {
  .df__locations {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .df__locations {
    grid-template-columns: 1fr;
  }
  .df {
    padding: 28px 16px 24px;
  }
}
