/*
Theme Name: Psychologist Rankings Theme
Theme URI: http://localhost/psycholodzy/
Author: Codex
Description: Dedykowany motyw dla rankingu psychologow.
Version: 0.1.0
Text Domain: psychologist-rankings-theme
*/

:root {
  --pr-bg: #f7f9fb;
  --pr-surface: rgba(255, 255, 255, 0.92);
  --pr-surface-solid: #ffffff;
  --pr-surface-alt: #edf3f6;
  --pr-surface-strong: #e3edf2;
  --pr-text: #2c3437;
  --pr-muted: #596064;
  --pr-border: rgba(33, 103, 125, 0.12);
  --pr-primary: #21677d;
  --pr-primary-dark: #0d5a70;
  --pr-primary-soft: #a4e3fd;
  --pr-highlight: #fff0ba;
  --pr-shadow: 0 12px 32px -4px rgba(44, 52, 55, 0.04);
  --pr-radius-xl: 32px;
  --pr-radius-lg: 24px;
  --pr-radius-md: 18px;
  --pr-shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pr-bg);
  color: var(--pr-text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.pr-site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--pr-shadow);
  border-bottom: 1px solid #e3e9ed;
}

.pr-shell {
  width: min(var(--pr-shell), calc(100% - 32px));
  margin: 0 auto;
}

.pr-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px 0;
}

.pr-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.pr-brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.pr-brand__icon,
.pr-topbar__avatar .material-symbols-outlined,
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.pr-brand__icon,
.pr-topbar__avatar .material-symbols-outlined {
  color: #164e63;
  font-size: 28px;
}

.pr-brand__text strong,
.pr-nav a {
  font-weight: 800;
}

.pr-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pr-nav a {
  text-decoration: none;
  color: var(--pr-muted);
  padding: 6px 12px;
  border-radius: 999px;
}

.pr-nav a.is-active,
.pr-nav a:hover {
  color: var(--pr-primary);
}

.pr-nav a.is-active {
  border-bottom: 2px solid var(--pr-primary);
  border-radius: 0;
}

.pr-topbar__avatar {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  background: var(--pr-surface-strong);
  color: var(--pr-primary);
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #e3e9ed;
}

.pr-topbar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-main {
  padding: 96px 0 120px;
}

.pr-hero,
.pr-section,
.pr-profile-wrap {
  margin-top: 22px;
}

.pr-hero__grid,
.pr-section__grid,
.pr-profile-grid,
.pr-archive-hero {
  display: grid;
  gap: 24px;
}

.pr-hero__grid,
.pr-archive-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.pr-panel,
.pr-card,
.pr-feature-card,
.pr-profile-card,
.pr-content-card,
.pr-sidebar-card {
  background: var(--pr-surface);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius-xl);
  box-shadow: var(--pr-shadow);
}

.pr-hero-card,
.pr-panel,
.pr-content-card,
.pr-sidebar-card {
  padding: 32px;
}

.pr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 95, 119, 0.09);
  color: var(--pr-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-title-xl,
.pr-title-lg {
  margin: 16px 0 12px;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.pr-title-xl {
  font-size: clamp(2.7rem, 7vw, 4.75rem);
}

.pr-title-lg {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.pr-lead {
  margin: 0 0 28px;
  color: var(--pr-muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.pr-search {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pr-search input,
.pr-search select {
  flex: 1 1 220px;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: var(--pr-surface-solid);
  box-shadow: inset 0 0 0 1px rgba(146, 166, 176, 0.28);
  padding: 16px 18px;
  font: inherit;
}

.pr-button,
.pr-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #17627a 0%, #0f4b5e 100%);
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.pr-button--ghost {
  background: rgba(22, 95, 119, 0.08);
  color: var(--pr-primary);
}

.pr-meta-list,
.pr-chip-list,
.pr-card__terms,
.pr-stats,
.pr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pr-chip,
.pr-pill,
.pr-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--pr-surface-alt);
  color: var(--pr-text);
  text-decoration: none;
  font-size: 14px;
}

.pr-chip strong,
.pr-pill strong {
  color: var(--pr-primary);
}

.pr-chip img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.pr-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pr-section-head h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.pr-section-head p,
.pr-section-head span {
  margin: 0;
  color: var(--pr-muted);
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pr-card,
.pr-feature-card {
  overflow: hidden;
}

.pr-specialization-card .pr-card__body {
  display: grid;
  gap: 12px;
}

.pr-card__media,
.pr-feature-card__media,
.pr-profile-card__media {
  position: relative;
  background: linear-gradient(135deg, #d9edf5 0%, #edf4f8 100%);
}

.pr-card__media {
  min-height: 270px;
}

.pr-card__media img,
.pr-feature-card__media img,
.pr-profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-card__body,
.pr-feature-card__body {
  padding: 24px;
}

.pr-card__body h3,
.pr-feature-card__body h2 {
  margin: 10px 0 8px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.pr-muted {
  color: var(--pr-muted);
}

.pr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--pr-primary);
  font-weight: 800;
}

.pr-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border-radius: 999px;
  background: var(--pr-highlight);
  color: #856100;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.pr-feature-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
}

.pr-profile-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  overflow: hidden;
}

.pr-profile-card__media {
  min-height: unset;
}

.pr-profile-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pr-profile-card__content {
  padding: 30px;
}

.pr-profile-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  align-items: start;
}

.pr-avatar-fallback {
  min-height: 100%;
  display: grid;
  place-items: center;
  color: var(--pr-primary);
  font-size: 4.8rem;
  font-weight: 900;
}

.pr-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--pr-muted);
  font-size: 14px;
}

.pr-breadcrumbs a {
  text-decoration: none;
  color: var(--pr-primary);
}

.pr-content-card > *:first-child,
.pr-sidebar-card > *:first-child {
  margin-top: 0;
}

.pr-sidebar-stack {
  display: grid;
  gap: 20px;
}

.pr-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pr-pagination {
  margin-top: 26px;
}

.pr-pagination .nav-links,
.pr-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-pagination a,
.pr-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pr-surface-solid);
  box-shadow: inset 0 0 0 1px rgba(146, 166, 176, 0.28);
  text-decoration: none;
}

.pr-blog-listing {
  padding-top: 12px;
}

.pr-blog-listing__hero {
  margin-bottom: 34px;
  max-width: 760px;
}

.pr-blog-listing__hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.pr-blog-listing__hero p {
  margin: 0;
  color: var(--pr-muted);
  font-size: 1.05rem;
}

.pr-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
  overflow: hidden;
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius-xl);
  background: var(--pr-surface-solid);
  box-shadow: var(--pr-shadow);
  margin-bottom: 26px;
}

.pr-blog-featured__media {
  min-height: 300px;
  background: linear-gradient(135deg, #d9edf5 0%, #edf4f8 100%);
}

.pr-blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-blog-featured__content {
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.pr-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--pr-muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.pr-blog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #cde6f4;
  color: #3e5560;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pr-blog-featured__content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.pr-blog-featured__content h2 a {
  text-decoration: none;
}

.pr-blog-featured__content p {
  margin: 0;
  color: var(--pr-muted);
}

.pr-blog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 24px;
}

.pr-blog-filter {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  background: #e3e9ed;
  color: #3e5560;
  font-size: 0.86rem;
  font-weight: 700;
}

.pr-blog-filter.is-active {
  background: var(--pr-primary);
  color: #f2faff;
}

.pr-grid--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pr-blog-list-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: var(--pr-surface-solid);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius-xl);
  box-shadow: var(--pr-shadow);
}

.pr-blog-list-card .pr-card__media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(135deg, #d9edf5 0%, #edf4f8 100%);
}

.pr-blog-list-card .pr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-blog-list-card .pr-card__body {
  padding: 20px 22px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.pr-blog-list-card .pr-card__meta {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--pr-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pr-blog-list-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pr-blog-list-card h3 a {
  text-decoration: none;
}

.pr-blog-list-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.pr-blog-list-card .pr-button,
.pr-blog-list-card .pr-button--ghost {
  justify-self: start;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.pr-specializations-page {
  padding-top: 8px;
}

.pr-breadcrumbs--centered {
  justify-content: center;
  margin-bottom: 16px;
}

.pr-specializations-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.pr-specializations-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.pr-specializations-hero p {
  margin: 0;
  color: var(--pr-muted);
  font-size: 1.05rem;
}

.pr-grid--specializations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pr-specialization-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-specialization-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -8px rgba(44, 52, 55, 0.08);
}

.pr-specialization-card .pr-card__body {
  display: grid;
  gap: 14px;
}

.pr-specialization-card__icon {
  width: 64px;
  height: 64px;
  margin: 28px 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #cde6f4;
  color: #3e5560;
}

.pr-specialization-card__icon .material-symbols-outlined {
  font-size: 30px;
}

.pr-specialization-card h3 {
  margin: 0;
}

.pr-specialization-card h3 a {
  text-decoration: none;
}

.pr-specialization-card p {
  margin: 0;
}

.pr-specialization-card__cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: var(--pr-primary);
  font-weight: 800;
}

.pr-specialization-card__cta .material-symbols-outlined {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e3e9ed;
  color: var(--pr-primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pr-specialization-card:hover .pr-specialization-card__cta .material-symbols-outlined {
  background: var(--pr-primary);
  color: #f2faff;
}

.pr-specializations-cta {
  margin: 6px 0 34px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f5a70 0%, #0f3f4d 100%);
  color: #f2faff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pr-specializations-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.pr-specializations-cta p {
  margin: 0;
  color: rgba(242, 250, 255, 0.86);
  max-width: 62ch;
}

.pr-specializations-cta .pr-button {
  background: #ffffff;
  color: #0f3f4d;
  white-space: nowrap;
}

.pr-grid--topics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pr-topic-card .pr-card__body {
  display: grid;
  gap: 12px;
  align-content: space-between;
  min-height: 160px;
}

.pr-topic-card h3 {
  margin: 0;
}

.pr-topic-card .pr-button {
  justify-self: start;
}

.pr-specialization-detail {
  padding-top: 8px;
}

.pr-breadcrumbs--specialization {
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.pr-specialization-detail__hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--pr-border);
  background: var(--pr-surface-solid);
  box-shadow: var(--pr-shadow);
  padding: 30px 24px;
}

.pr-specialization-detail__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #a4e3fd;
  color: #005469;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.pr-specialization-detail__icon .material-symbols-outlined {
  font-size: 34px;
}

.pr-specialization-detail__hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.pr-specialization-detail__hero p {
  margin: 0;
  max-width: 65ch;
  color: var(--pr-muted);
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}

.pr-specialization-detail__bg-icon {
  position: absolute;
  right: -30px;
  bottom: -48px;
  font-size: 200px;
  line-height: 1;
  color: rgba(33, 103, 125, 0.08);
}

.pr-specialization-detail__search-wrap {
  border-radius: 22px;
  padding: 18px;
  background: #f0f4f7;
}

.pr-specialization-detail__search-wrap label {
  display: block;
  margin: 0 0 10px;
  padding-left: 8px;
  color: #0f766e;
  font-size: 0.88rem;
  font-weight: 800;
}

.pr-specialization-detail__search {
  position: relative;
}

.pr-specialization-detail__search > .material-symbols-outlined {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #747c80;
  font-size: 22px;
}

.pr-specialization-detail__search input {
  width: 100%;
  min-height: 54px;
  padding: 0 50px 0 44px;
  border-radius: 999px;
  border: 1px solid #dce4e8;
  background: #ffffff;
  font: inherit;
  font-weight: 600;
  color: var(--pr-text);
}

.pr-specialization-detail__search input:focus {
  outline: none;
  border-color: #96d5ef;
  box-shadow: 0 0 0 3px rgba(164, 227, 253, 0.3);
}

.pr-specialization-detail__search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--pr-primary);
  color: #f2faff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pr-specialization-detail__search button .material-symbols-outlined {
  font-size: 18px;
}

.pr-section-head--specialization {
  align-items: center;
}

.pr-section-head--specialization h2 {
  margin-right: auto;
}

#pr-specialization-results-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e3e9ed;
  color: #3e5560;
  font-size: 0.82rem;
  font-weight: 800;
}

.pr-empty-card--hidden {
  display: none;
}

.pr-site-footer {
  background: #ffffff;
  color: var(--pr-muted);
  margin-top: 96px;
  border-top: 1px solid #e3e9ed;
}

.pr-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 0 32px;
}

.pr-footer-brand strong {
  display: block;
  margin-bottom: 20px;
  color: #0f3f4d;
  font-size: 1.25rem;
}

.pr-footer-brand p,
.pr-footer-column a {
  color: #64748b;
  text-decoration: none;
}

.pr-footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.pr-footer-column span {
  margin-bottom: 6px;
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pr-footer-column a:hover {
  color: #155e75;
}

.pr-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 36px;
  border-top: 1px solid #eef2f7;
  color: #94a3b8;
  font-size: 12px;
}

.pr-footer-icons {
  display: inline-flex;
  gap: 16px;
}

.pr-home-page {
  min-height: calc(100dvh - 104px);
}

.pr-home-hero {
  padding: 32px 0 0;
}

.pr-home-hero__shell {
  display: block;
}

.pr-home-hero__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 0 0;
  text-align: center;
}

.pr-home-hero__content h1 {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.pr-home-hero__content > p {
  margin: 0 auto 44px;
  max-width: 34ch;
  color: var(--pr-muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.pr-home-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 18px;
  padding: 8px;
  max-width: 980px;
  border-radius: 32px;
  background: #f0f4f7;
  border: 1px solid #e3e9ed;
  box-shadow: none !important;
  position: relative;
  z-index: 5;
  overflow: visible;
  isolation: isolate;
}

.pr-home-search__field {
  position: relative;
  flex: 1 1 0;
  padding: 8px;
  overflow: visible;
}

.pr-home-search__field--combo {
  display: flex;
  align-items: center;
  border: 1px solid #e5eaf0;
  border-radius: 22px;
  background: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.pr-home-search__field--combo.is-focused,
.pr-home-search__field--combo.is-open {
  border-color: #d9e2e8;
  background: #ffffff;
  box-shadow: none !important;
  z-index: 30;
}

.pr-home-search__field > .material-symbols-outlined {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  color: #747c80;
  font-size: 22px;
}

.pr-home-search__field input {
  width: 100%;
  min-width: 0;
  padding: 20px 20px 20px 68px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
  color: var(--pr-text);
}

.pr-home-search__field input:focus {
  outline: none;
}

.pr-home-search__field input::placeholder {
  color: #747c80;
}

.pr-home-autocomplete {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  padding: 8px 0;
  max-height: 360px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
  border: 1px solid #e7ebf0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: none !important;
  pointer-events: auto;
  gap: 0;
}

.pr-home-autocomplete.is-open {
  display: grid;
  grid-auto-rows: min-content;
}

.pr-home-autocomplete__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 58px;
  padding: 16px 30px 16px 32px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #24313a !important;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none !important;
  transition: background-color 0.18s ease, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.pr-home-autocomplete__item + .pr-home-autocomplete__item {
  border-top: 1px solid #edf1f4;
}

.pr-home-autocomplete__item:hover {
  background: #f6f8f9 !important;
}

.pr-home-autocomplete__item.is-highlighted {
  background: #f6f8f9 !important;
}

.pr-home-autocomplete__item:focus-visible,
.pr-home-autocomplete__item:active {
  background: #f6f8f9 !important;
  outline: none;
}

.pr-home-autocomplete__item.is-specialization {
  border-radius: 0;
}

.pr-home-autocomplete__item.is-city {
  border-radius: 0;
}

.pr-home-autocomplete__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border-radius: 0;
  background: transparent;
  color: #2f3b45;
  font-size: 22px;
  opacity: 0.88;
}

.pr-home-autocomplete__label {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  color: #24313a;
  letter-spacing: -0.02em;
}

.pr-home-autocomplete__empty {
  position: relative;
  z-index: 1;
  padding: 18px 22px;
  background: #ffffff;
  color: var(--pr-muted);
  font-size: 0.95rem;
}

.pr-home-autocomplete::-webkit-scrollbar {
  width: 10px;
}

.pr-home-autocomplete::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.pr-home-autocomplete::-webkit-scrollbar-track {
  background: transparent;
}

.pr-home-search__divider {
  width: 1px;
  height: 40px;
  background: rgba(116, 124, 128, 0.25);
}

.pr-home-search__button {
  padding: 8px;
}

.pr-home-search button {
  border: 0;
  border-radius: 24px;
  padding: 20px 40px;
  background: var(--pr-primary);
  color: #f2faff;
  font: inherit;
  font-weight: 800;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.pr-home-search button:hover:not(:disabled) {
  background: var(--pr-primary-dark);
}

.pr-home-search button:active:not(:disabled) {
  transform: scale(0.98);
}

.pr-home-search button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.pr-home-search__hint {
  margin: 0 auto 48px;
  max-width: 760px;
  color: #747c80;
  font-size: 0.95rem;
}

.pr-home-tags {
  margin-bottom: 48px;
}

.pr-home-tags p {
  margin: 0 0 22px;
  color: #747c80;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pr-home-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pr-home-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pr-home-pill:hover {
  transform: translateY(-1px);
}

.pr-home-pill.is-active {
  border-color: var(--pr-primary);
  background: rgba(33, 103, 125, 0.12);
  color: var(--pr-primary);
}

.pr-home-pill--specialization {
  background: rgba(205, 230, 244, 0.3);
  color: #3e5560;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid #cde6f4;
}

.pr-home-pill--specialization .material-symbols-outlined {
  font-size: 20px;
}

.pr-home-pill--city {
  background: #ffffff;
  color: var(--pr-muted);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid #e3e9ed;
}

.pr-home-hero__art {
  display: none;
}

.pr-home-fab {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 40;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--pr-primary);
  color: #f2faff;
  box-shadow: 0 24px 40px -12px rgba(33, 103, 125, 0.35);
  cursor: pointer;
}

.pr-home-fab .material-symbols-outlined {
  font-size: 28px;
}

.pr-empty {
  padding: 42px;
  text-align: center;
}

.pr-listing-page {
  min-height: max(884px, 100dvh);
}

.pr-listing-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 0 24px;
}

.pr-listing-hero {
  margin-bottom: 40px;
}

.pr-listing-hero h1 {
  margin: 0 0 16px;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.pr-listing-hero p {
  margin: 0 0 28px;
  color: var(--pr-muted);
  font-size: 0.92rem;
}

.pr-listing-search {
  position: relative;
  z-index: 6;
  display: grid;
  gap: 14px;
}

.pr-listing-search .pr-home-search__field {
  padding: 0;
  flex: none;
}

.pr-listing-search .pr-home-search__field--combo {
  min-height: 76px;
  border-radius: 22px;
}

.pr-listing-search .pr-home-search__field > .material-symbols-outlined {
  left: 24px;
}

.pr-listing-search .pr-home-search__field input {
  padding: 20px 20px 20px 64px;
  font-size: 1rem;
}

.pr-listing-search .pr-home-autocomplete {
  top: calc(100% + 10px);
  max-height: 320px;
}

.pr-listing-search__button button {
  width: 100%;
  border: 0;
  border-radius: 20px;
  padding: 18px 24px;
  background: var(--pr-primary);
  color: #f2faff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.pr-listing-search__button button:hover:not(:disabled) {
  background: var(--pr-primary-dark);
}

.pr-listing-search__button button:active:not(:disabled) {
  transform: scale(0.98);
}

.pr-listing-search__button button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pr-listing-results {
  display: grid;
  gap: 20px;
}

.pr-listing-card {
  background: var(--pr-surface-solid);
  border-radius: 18px;
  box-shadow: 0 8px 24px -4px rgba(44, 52, 55, 0.04);
  overflow: visible;
  border: 1px solid rgba(33, 103, 125, 0.06);
  position: relative;
}

.pr-listing-card__promo {
  position: absolute;
  top: -13px;
  left: 18px;
  z-index: 5;
  pointer-events: none;
}

.pr-listing-card__promo span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-primary-dark));
  color: #f2faff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px -10px rgba(15, 63, 77, 0.55);
}

.pr-listing-card.is-sponsored {
  margin-top: 10px;
}

.pr-listing-card__inner {
  padding: 20px;
}

.pr-listing-card__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.pr-listing-card__identity {
  display: flex;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.pr-listing-card__photo-wrap {
  position: relative;
}

.pr-listing-card__photo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #fff;
  background: #dce4e8;
}

.pr-listing-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-listing-card__rank {
  position: absolute;
  top: -8px;
  left: -8px;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--pr-text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 1;
}

.pr-listing-card__content {
  min-width: 0;
}

.pr-listing-card__content h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.25;
}

.pr-listing-card__subtitle {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--pr-muted);
}

.pr-listing-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pr-listing-card__rating .material-symbols-outlined,
.material-symbols-outlined.is-filled {
  font-variation-settings: "FILL" 1;
  color: #4c5f84;
  font-size: 14px;
}

.pr-listing-card__rating-value {
  font-size: 12px;
  font-weight: 800;
}

.pr-listing-card__rating-count {
  font-size: 10px;
  color: var(--pr-muted);
}

.pr-rating-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 5px 8px 5px 6px;
  border: 1px solid #e3e9ed;
  border-radius: 999px;
  background: #ffffff;
  color: var(--pr-text);
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.pr-rating-source:hover {
  border-color: #d8e0e5;
  background: #f6f8f9;
}

.pr-rating-source .material-symbols-outlined {
  color: #4c5f84;
  font-size: 13px;
}

.pr-rating-source__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  overflow: hidden;
}

.pr-rating-source__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pr-rating-source__logo--znanylekarz {
  border: 1px solid #e4e8ec;
  background: #ffffff;
  padding: 2px;
}

.pr-rating-source__logo--google {
  border: 1px solid #e4e8ec;
  background: #ffffff;
  padding: 2px;
}

.pr-rating-source__score {
  color: var(--pr-text);
  font-size: 12px;
  font-weight: 900;
}

.pr-rating-source__reviews {
  color: var(--pr-muted);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.pr-listing-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--pr-primary);
  font-size: 14px;
  font-weight: 800;
}

.pr-listing-card__price .material-symbols-outlined {
  font-size: 18px;
}

.pr-listing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 100px;
}

.pr-listing-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pr-listing-card__book {
  background: var(--pr-primary);
  color: #f2faff;
}

.pr-listing-card__profile {
  background: var(--pr-surface-strong);
  color: #3e5560;
}

.pr-listing-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 4px 0;
}

.pr-listing-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #eaeff2;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pr-muted);
  font-size: 9px;
  font-weight: 600;
}

.pr-listing-tag .material-symbols-outlined {
  font-size: 12px;
}

.pr-listing-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 14px 4px 0;
  border-top: 1px solid #f0f4f7;
  color: var(--pr-muted);
  font-size: 12px;
}

.pr-listing-card__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pr-listing-card__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f0f4f7;
  color: var(--pr-primary);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.pr-listing-card__contact .material-symbols-outlined {
  font-size: 15px;
}

.pr-listing-card__location .material-symbols-outlined {
  font-size: 18px;
}

.pr-listing-seo {
  margin-top: 40px;
  background: #f0f4f7;
  padding: 32px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.pr-listing-seo h2 {
  margin: 0 0 20px;
  font-size: 1.75rem;
  line-height: 1.15;
}

.pr-listing-faq {
  display: grid;
  gap: 16px;
}

.pr-listing-faq__item {
  background: var(--pr-surface-solid);
  border: 1px solid #e3e9ed;
  border-radius: 16px;
  padding: 20px;
}

.pr-listing-faq__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.pr-listing-faq__title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pr-primary);
  font-size: 14px;
  font-weight: 800;
}

.pr-listing-faq__title .material-symbols-outlined {
  font-size: 22px;
}

.pr-listing-faq__item p {
  margin: 0;
  color: var(--pr-muted);
  font-size: 12px;
}

.pr-listing-seo-copy {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.pr-listing-seo-copy__card {
  background: var(--pr-surface-solid);
  border: 1px solid #e3e9ed;
  border-radius: 16px;
  padding: 20px;
}

.pr-listing-seo-copy__card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pr-listing-seo-copy__card p {
  margin: 0 0 12px;
  color: var(--pr-muted);
  font-size: 0.95rem;
}

.pr-listing-seo-copy__card p:last-child {
  margin-bottom: 0;
}

.pr-listing-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pr-listing-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e2e8;
  color: var(--pr-primary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.pr-listing-seo-links a:hover {
  background: #f7fbfd;
}

.pr-blog-post {
  padding-bottom: 24px;
}

.pr-blog-hero {
  margin-top: 0;
  margin-bottom: 72px;
}

.pr-blog-hero__media {
  position: relative;
  min-height: clamp(420px, 58vw, 560px);
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(135deg, #bfd2fd 0%, #a4e3fd 48%, #f0f4f7 100%);
  box-shadow: 0 28px 64px -20px rgba(44, 52, 55, 0.28);
}

.pr-blog-hero__media img,
.pr-blog-hero__fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.pr-blog-hero__media img {
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pr-blog-hero__media:hover img {
  transform: scale(1.04);
}

.pr-blog-hero__fallback {
  display: grid;
  place-items: center;
  color: rgba(33, 103, 125, 0.26);
}

.pr-blog-hero__fallback .material-symbols-outlined {
  font-size: clamp(7rem, 18vw, 16rem);
}

.pr-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0));
}

.pr-blog-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(28px, 6vw, 56px);
  color: #ffffff;
}

.pr-blog-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.pr-blog-category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--pr-primary-soft);
  color: #004051;
  text-decoration: none;
  font-weight: 800;
}

.pr-blog-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.65rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.pr-blog-content-wrap {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
}

.pr-blog-intro {
  margin-bottom: 54px;
  color: var(--pr-muted);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.8;
}

.pr-blog-intro p {
  margin: 0;
}

.pr-blog-content {
  color: var(--pr-muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.pr-blog-content > * {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.pr-blog-content h2,
.pr-blog-content h3,
.pr-blog-content h4 {
  color: var(--pr-primary);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.pr-blog-content h2 {
  margin-top: 2.2em;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

.pr-blog-content h3 {
  margin-top: 2em;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.pr-blog-content strong {
  color: var(--pr-primary-dark);
}

.pr-blog-content ul,
.pr-blog-content ol {
  display: grid;
  gap: 14px;
  padding-left: 1.3em;
}

.pr-blog-content blockquote {
  margin: 44px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--pr-primary);
  border-radius: 24px;
  background: var(--pr-surface-strong);
  color: var(--pr-text);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 650;
}

.pr-blog-content .wp-block-columns {
  gap: 18px;
}

.pr-blog-content .wp-block-column {
  padding: 24px;
  border-radius: 24px;
  background: var(--pr-surface-strong);
}

.pr-blog-recommendation {
  position: relative;
  margin: 72px 0;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(33, 103, 125, 0.1);
  border-radius: 48px;
  background:
    radial-gradient(circle at 100% 0%, rgba(164, 227, 253, 0.34), transparent 38%),
    #ffffff;
  box-shadow: 0 24px 48px -8px rgba(44, 52, 55, 0.08);
}

.pr-blog-recommendation__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 26px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(33, 103, 125, 0.1);
  color: var(--pr-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pr-blog-recommendation__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.pr-blog-recommendation__photo {
  position: relative;
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--pr-surface-strong);
  box-shadow: 0 0 0 8px rgba(33, 103, 125, 0.08);
}

.pr-blog-recommendation__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-blog-recommendation__content {
  min-width: 0;
}

.pr-blog-recommendation__content h3 {
  margin: 0 0 6px;
  color: var(--pr-text);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.pr-blog-recommendation__subtitle {
  margin: 0 0 14px;
  color: var(--pr-primary);
  font-weight: 800;
}

.pr-blog-recommendation__meta,
.pr-blog-recommendation__terms,
.pr-blog-recommendation__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pr-blog-recommendation__meta {
  margin-bottom: 18px;
  color: var(--pr-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.pr-blog-recommendation__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pr-blog-recommendation__meta .material-symbols-outlined {
  color: var(--pr-primary);
  font-size: 18px;
}

.pr-blog-recommendation__terms {
  margin-bottom: 22px;
}

.pr-blog-recommendation__terms span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--pr-surface-strong);
  color: var(--pr-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.pr-blog-recommendation__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.pr-blog-recommendation__book {
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-primary-dark));
  color: #f2faff;
}

.pr-blog-recommendation__profile {
  background: var(--pr-surface-strong);
  color: #3e5560;
}

.pr-mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 6px;
  padding: 12px 12px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -12px 40px -10px rgba(0, 0, 0, 0.05);
}

.pr-mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #94a3b8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pr-mobile-nav a.is-active {
  background: #ecfeff;
  color: #155e75;
}

.pr-mobile-nav .material-symbols-outlined {
  font-size: 22px;
  margin-bottom: 4px;
}

.pr-pagination--listing {
  padding: 20px 0 0;
}

.pr-empty-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px -4px rgba(44, 52, 55, 0.04);
}

@media (max-width: 1100px) {
  .pr-grid,
  .pr-grid--blog,
  .pr-grid--specializations,
  .pr-grid--topics,
  .pr-hero__grid,
  .pr-archive-hero,
  .pr-profile-grid,
  .pr-profile-card,
  .pr-feature-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pr-shell {
    width: min(var(--pr-shell), calc(100% - 24px));
  }

  .pr-nav {
    display: none;
  }

  .pr-topbar {
    min-height: 64px;
  }

  .pr-main {
    padding-top: 96px;
  }

  .pr-hero-card,
  .pr-panel,
  .pr-content-card,
  .pr-sidebar-card,
  .pr-card__body,
  .pr-feature-card__body,
  .pr-profile-card__content {
    padding: 22px;
  }

  .pr-card__media,
  .pr-feature-card__media,
  .pr-profile-card__media {
    min-height: 240px;
  }

  .pr-profile-card__media {
    min-height: unset;
  }

  .pr-search,
  .pr-section-head,
  .pr-footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .pr-grid {
    grid-template-columns: 1fr;
  }

  .pr-footer-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .pr-home-hero {
    padding-top: 8px;
  }

  .pr-home-hero__shell {
    min-height: auto;
  }

  .pr-home-hero__content {
    padding-top: 18px;
  }

  .pr-home-hero__content h1 {
    font-size: 2.7rem;
  }

  .pr-home-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    gap: 0;
  }

  .pr-home-search__divider,
  .pr-home-hero__art {
    display: none;
  }

  .pr-home-search__field,
  .pr-home-search__button {
    padding: 0;
  }

  .pr-home-search__field + .pr-home-search__field {
    border-top: 1px solid rgba(172, 179, 183, 0.3);
  }

  .pr-home-autocomplete {
    left: 0;
    right: 0;
    max-height: 260px;
  }

  .pr-home-search button {
    width: 100%;
    border-radius: 18px;
  }

  .pr-blog-hero {
    margin-bottom: 44px;
  }

  .pr-blog-listing__hero {
    margin-bottom: 26px;
  }

  .pr-blog-featured {
    grid-template-columns: 1fr;
  }

  .pr-blog-featured__media {
    min-height: 220px;
  }

  .pr-blog-featured__content {
    padding: 22px;
  }

  .pr-blog-list-card {
    grid-template-columns: 1fr;
  }

  .pr-blog-list-card .pr-card__media {
    min-height: 180px;
  }

  .pr-blog-list-card .pr-card__body {
    padding: 18px 20px;
  }

  .pr-blog-filter {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .pr-specializations-hero {
    margin-bottom: 24px;
  }

  .pr-specialization-card__icon {
    margin-left: 22px;
  }

  .pr-specializations-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border-radius: 24px;
  }

  .pr-specializations-cta .pr-button {
    width: 100%;
  }

  .pr-specialization-detail__hero {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .pr-specialization-detail__bg-icon {
    font-size: 150px;
    right: -24px;
    bottom: -28px;
  }

  .pr-specialization-detail__search-wrap {
    padding: 14px;
  }

  .pr-section-head--specialization {
    gap: 10px;
  }

  .pr-section-head--specialization a {
    text-align: left;
  }

  .pr-blog-hero__media {
    min-height: 500px;
    border-radius: 28px;
  }

  .pr-blog-hero__content {
    padding: 28px;
  }

  .pr-blog-hero h1 {
    font-size: 2.65rem;
  }

  .pr-blog-recommendation {
    margin: 54px 0;
    padding: 26px;
    border-radius: 32px;
  }

  .pr-blog-recommendation__inner {
    flex-direction: column;
    text-align: center;
  }

  .pr-blog-recommendation__meta,
  .pr-blog-recommendation__terms,
  .pr-blog-recommendation__actions {
    justify-content: center;
  }

  .pr-blog-recommendation__actions a {
    width: 100%;
  }
}

@media (min-width: 761px) {
  .pr-mobile-nav {
    display: none;
  }

  .pr-listing-shell {
    width: min(var(--pr-shell), calc(100% - 32px));
  }

  .pr-listing-hero {
    max-width: 760px;
    margin-bottom: 48px;
  }

  .pr-listing-hero h1 {
    font-size: 3rem;
  }

  .pr-listing-results {
    gap: 24px;
  }

  .pr-listing-card__photo {
    width: 88px;
    height: 88px;
  }

  .pr-listing-card__content h3 {
    font-size: 1.2rem;
  }

  .pr-listing-card__subtitle {
    font-size: 14px;
  }

  .pr-listing-card__actions a {
    min-height: 40px;
    font-size: 11px;
  }

  .pr-home-fab {
    display: none;
  }
}

.pr-page {
  padding-bottom: 80px;
}

.pr-page-hero {
  padding: 72px 0 24px;
}

.pr-page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
}

.pr-page-hero__content h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--pr-primary);
}

.pr-page-hero__lead {
  margin: 0;
  color: var(--pr-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.pr-page-content-wrap {
  max-width: 820px;
  margin: 32px auto 0;
}

.pr-page-content {
  color: var(--pr-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.pr-page-content > * {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.pr-page-content h2,
.pr-page-content h3,
.pr-page-content h4 {
  color: var(--pr-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 1.8em;
}

.pr-page-content h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
}

.pr-page-content h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
}

.pr-page-content a {
  color: var(--pr-accent, #1f6feb);
  text-decoration: underline;
}

.pr-page-content ul,
.pr-page-content ol {
  padding-left: 1.3em;
}

.pr-page-content li {
  margin-bottom: 0.6em;
}

.pr-page-content blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--pr-primary);
  background: rgba(0, 0, 0, 0.03);
  font-style: italic;
}

.pr-city-seo-description {
  color: var(--pr-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.pr-city-seo-description > * {
  margin-top: 0;
  margin-bottom: 1em;
}

.pr-city-seo-description h1,
.pr-city-seo-description h2,
.pr-city-seo-description h3,
.pr-city-seo-description h4 {
  color: var(--pr-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

.pr-city-seo-description h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.pr-city-seo-description h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
}

.pr-city-seo-description h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.pr-city-seo-description h4 {
  font-size: 1.1rem;
}

.pr-city-seo-description ul,
.pr-city-seo-description ol {
  padding-left: 1.3em;
}

.pr-city-seo-description li {
  margin-bottom: 0.4em;
}

.pr-city-seo-description a {
  color: var(--pr-accent, #1f6feb);
  text-decoration: underline;
}

.pr-city-seo-description blockquote {
  margin: 1.2em 0;
  padding: 12px 18px;
  border-left: 4px solid var(--pr-primary);
  background: rgba(0, 0, 0, 0.03);
  font-style: italic;
}
