/* ============================================================
   Startseite: Fließtext-Links & Sekundär-Buttons
   Praxis am Hanseplatz
   ============================================================ */

/* Dezent aufgewertete Diagnosen-Sprungmarken im Fließtext */
.pah-inline-link {
  color: #2E5F8A;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(#2E5F8A, #2E5F8A);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.25s ease, color 0.2s ease;
  padding-bottom: 1px;
}

.pah-inline-link:hover,
.pah-inline-link:focus {
  color: #1c3f5c;
  background-size: 100% 2px;
}

/* Sekundär-Buttons für die externen Schwester-Praxen */
.pah-zusatzpraxen {
  margin-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pah-zusatzpraxis-block p.paragraph {
  margin-bottom: 10px;
}

.pah-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 10px 22px;
  border: 1.5px solid #2E5F8A;
  border-radius: 999px;
  color: #2E5F8A;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-family: 'Tenor Sans', sans-serif;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.pah-secondary-btn:hover {
  background-color: #2E5F8A;
  color: #ffffff;
  transform: translateX(2px);
}

@media screen and (max-width: 768px) {
  .pah-zusatzpraxen {
    margin-top: 16px;
    margin-bottom: 20px;
    gap: 14px;
  }

  .pah-secondary-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
}
