/* LUNQA v97 - Hakkımızda Yol Tarifi Al kalıcı düzeltme */

.directions-link {
  width: 100%;
  min-height: 44px;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(226, 215, 207, .95);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  color: #8a0711;
  background: rgba(255, 253, 250, .76);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(44, 25, 18, .04);
}

.directions-link span {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directions-link small {
  min-width: 0;
  overflow: hidden;
  color: #5e514b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.directions-link svg {
  flex: 0 0 auto;
}

.directions-link:hover {
  background: rgba(165, 14, 24, .055);
  border-color: rgba(165, 14, 24, .18);
}

@media (max-width: 520px) {
  .directions-link {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    margin-top: 10px;
  }
}
