.share-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.share-links a,
.share-links button {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--ink);
  padding: 8px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.share-links a:hover,
.share-links button:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.share-links span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.share-whatsapp span,
.share-line span { background: #22a75a; }
.share-facebook span { background: #1877f2; }
.share-threads span,
.share-x span { background: #111; }
.share-instagram span { background: #c13584; }
.share-copy span { background: #687b75; }

.share-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.source-name-note {
  max-width: 720px;
  margin: 14px 0 0;
  border-left: 3px solid var(--orange);
  padding-left: 12px;
  color: #667872;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.parking-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  border: 1px solid #d9e3e9;
  border-radius: 22px;
  background: white;
  padding: 18px;
}
.parking-card small { color: var(--blue); font-weight: 900; }
.parking-card h3 { margin: 7px 0 0; font-size: 17px; line-height: 1.3; }
.parking-card h3 a:hover { color: var(--coral); }
.parking-card p { margin: 9px 0 0; color: #687b75; font-size: 12px; line-height: 1.55; }
.parking-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 15px; }
.parking-actions a { color: var(--blue); font-size: 12px; font-weight: 900; }
.parking-actions a:hover { color: var(--coral); }

@media (min-width: 760px) {
  .share-links { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .share-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
