/* KM Ubezpieczenia: wspólne drugorzędne linki i akcje */
a.action-link,
span.action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold, #c8a96e);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 0;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

a.action-link::after,
span.action-link::after {
  content: "→";
  flex: none;
  font-size: .95em;
  line-height: 1;
  transform: none;
  transition: none;
}

a.action-link.action-link--inline::after,
span.action-link.action-link--inline::after,
a.action-link.action-link--has-arrow::after,
span.action-link.action-link--has-arrow::after {
  content: none;
}

a.action-link:hover,
a:hover > span.action-link {
  color: #8f6f35;
  text-decoration: underline;
}

.ek-navy a.action-link:hover {
  color: #f0d8a7;
}

a.action-link:hover::after,
a:hover > span.action-link::after {
  transform: none;
}

a.action-link:focus-visible {
  outline: 2px solid var(--gold, #c8a96e);
  outline-offset: 3px;
  border-radius: 6px;
}

a.action-secondary {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(200, 169, 110, .5);
  border-radius: 11px;
  background: #fff;
  color: var(--navy, #0f1f3d);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transform: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

a.action-secondary::after {
  content: "→";
  flex: none;
  font-size: .95em;
  line-height: 1;
}

a.action-secondary.action-secondary--has-arrow::after {
  content: none;
}

a.action-secondary.action-secondary--block {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

a.action-secondary:hover {
  border-color: rgba(200, 169, 110, .78);
  background: #faf5e9;
  color: var(--navy, #0f1f3d);
  box-shadow: none;
  transform: none;
}

a.action-secondary:focus-visible {
  outline: 2px solid var(--gold, #c8a96e);
  outline-offset: 3px;
  border-radius: 11px;
}

@media (max-width: 480px) {
  a.action-link,
  span.action-link,
  a.action-secondary {
    font-size: 14px;
  }

  a.action-secondary {
    min-height: 42px;
    padding: 0 15px;
  }
}
