/* =========================================================
   SHARED HERO / HEADER UI  (used by services, blog, prices)
   ========================================================= */

/* Breadcrumb */
.m-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(200, 228, 248, 0.9);
  flex-wrap: wrap;
}

.m-breadcrumb a {
  text-decoration: none;
  color: rgba(200, 228, 248, 0.9);
  transition: color 0.2s;
}

.m-breadcrumb a:hover {
  color: #fff;
}

.m-breadcrumb span.sep {
  color: rgba(200, 228, 248, 0.45);
}

.m-breadcrumb span.current {
  color: #fff;
}

/* Header row: title-area + buttons */
.m-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.m-title-area {
  flex: 1;
  min-width: min(100%, 480px);
}

.m-title-area h1 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.m-title-area p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(220, 238, 250, 0.9);
  max-width: 680px;
}

/* CTA button group */
.m-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.m-btn-solid {
  background: var(--brand, #4a8ea6);
  color: #fff;
  border: 2px solid var(--brand, #4a8ea6);
}

.m-btn-solid:hover {
  background: var(--brand-dark, #3a7a94);
  border-color: var(--brand-dark, #3a7a94);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74, 142, 166, 0.35);
}

.m-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.m-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .m-btn-group {
    max-width: 100%;
    flex-direction: column;
  }

  .m-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Page bodies ────────────────────────────────────────── */
.services-page-body {
  background: #fff;
}

.services-page-main .wrap {
  width: 100%;
  max-width: min(var(--layout-max, 1680px), calc(100vw - 2 * var(--layout-pad-x, clamp(14px, 4vw, 48px))));
  margin: 0 auto;
  padding-left: var(--layout-pad-x, clamp(14px, 4vw, 48px));
  padding-right: var(--layout-pad-x, clamp(14px, 4vw, 48px));
  box-sizing: border-box;
}

/* .services-hero / .service-detail-hero — gradiens, padding, cím: page-hero-pr.css */

.service-detail-hero--minimal {
  border-bottom: 0;
}

.service-detail-hero__inner {
  max-width: 920px;
}

.services-hero__kicker {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.services-hero h1,
.service-detail-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.18;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 12px;
  color: rgba(221, 238, 250, 0.88);
}

.service-breadcrumb-sep {
  color: rgba(186, 218, 237, 0.9);
  font-size: 10px;
  transform: translateY(-1px);
}

.service-breadcrumb a {
  color: #d8edf9;
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-breadcrumb strong {
  color: #fff;
  font-weight: 600;
}

.service-title-block .service-mini-title {
  font-size: 11px;
  color: #ffffff;
  max-width: 100%;
  margin: 0;
  margin-bottom: 15px;
  display: block;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}

.service-title-block {
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.service-title-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 6px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7fd0f0 0%, #c4ecff 100%);
}

.service-title-block h1 {
  margin: var(--page-hero-h1-margin, 0 0 14px);
  font-size: var(--page-hero-h1, clamp(34px, 4.2vw, 54px));
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.services-section {
  padding: 58px 0 48px;
}

.services-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
}

.services-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  background: #fff;
  border: 1px solid #dbe6f1;
  border-radius: 14px;
  padding: 14px;
}

.services-filters {
  display: grid;
  gap: 8px;
}

.services-filters__label {
  font-size: 12px;
  font-weight: 700;
  color: #28455f;
}

.services-filters input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #c9d7e5;
  border-radius: 10px;
  padding: 0 12px;
}

.services-filters button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: #1f8794;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.services-tags {
  margin-top: 14px;
}

.services-tags__title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #48627a;
  margin-bottom: 8px;
}

.services-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.services-tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  color: #28455f;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #cfe0ee;
  background: #f9fcff;
}

.services-tag.is-active {
  border-color: #1f8794;
  color: #1f8794;
  background: #eaf8fa;
}

.services-content {
  min-width: 0;
}

.services-content--full {
  width: 100%;
}

.services-headline {
  margin-bottom: 10px;
  font-size: 14px;
  color: #405a71;
}

.services-tag-clear {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #1f8794;
  text-decoration: none;
  white-space: nowrap;
}

.services-tag-clear:hover {
  text-decoration: underline;
}

.services-tags--bar {
  margin: 12px 0 20px;
}

.services-tag__n {
  font-weight: 600;
  opacity: 0.72;
}

.services-compact-link {
  display: flex;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  min-width: 0;
}

.services-compact-link:focus-visible {
  outline: 2px solid #1f8794;
  outline-offset: 2px;
}

.services-compact-link--nohref {
  cursor: default;
}

.services-compact-link > .hosp-stat {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.svc-card-lead {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.95;
}

.services-page-main .hosp-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-empty {
  background: #fff;
  border: 1px solid #dbe6f1;
  border-radius: 14px;
  padding: 24px;
}

.services-empty h2 {
  margin: 0 0 8px;
}

.services-pagination,
.svc-pager {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.svc-pager__meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid, #5a6b7d);
  letter-spacing: 0.01em;
}
.svc-pager__meta strong {
  color: var(--navy, #1e3a50);
  font-weight: 700;
}
.svc-pager__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.svc-pager__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.svc-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border-soft, #e8ecf0);
  background: var(--white, #fff);
  color: var(--navy, #1e3a50);
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  line-height: 1;
  box-shadow: var(--shadow-xs, 0 1px 3px rgba(30, 58, 80, 0.04));
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.svc-pager__btn--nav {
  min-width: auto;
  padding: 0 14px;
  color: var(--brand-dark, #3a7a94);
}
.svc-pager__btn:hover {
  border-color: var(--brand, #4a8ea6);
  color: var(--brand-dark, #3a7a94);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(30, 58, 80, 0.06));
  transform: translateY(-1px);
}
.svc-pager__btn.is-active {
  background: linear-gradient(135deg, var(--brand, #4a8ea6) 0%, var(--brand-dark, #3a7a94) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(58, 122, 148, 0.28);
  pointer-events: none;
}
.svc-pager__btn.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}
.svc-pager__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--text-soft, #8a99a8);
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .svc-pager__btn--nav span { display: none; }
  .svc-pager__btn--nav { padding: 0 10px; min-width: 40px; }
}

.services-pagination a {
  text-decoration: none;
  color: #1f8794;
  font-weight: 700;
  background: #fff;
  border: 1px solid #cbe0ee;
  border-radius: 10px;
  padding: 8px 12px;
}

.services-pagination span {
  color: #405a71;
  font-size: 13px;
  font-weight: 700;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7e9fb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-back:hover {
  color: #fff;
}

.service-detail-section {
  padding: 28px 0 48px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
}

.service-detail-layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.service-detail-content {
  padding: 0;
}

.service-inline-media {
  margin: 8px 0 26px;
}

.service-inline-media img {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

.service-body {
  color: #253848;
  font-size: 1rem;
  line-height: 1.8;
}

.service-body.tpl-prose {
  margin-bottom: 0;
}

.service-body--lead {
  font-size: 1.08rem;
  color: #24455f;
  margin-bottom: 8px;
}

.service-body p:first-child {
  margin-top: 0;
}

.service-body p:last-child {
  margin-bottom: 0;
}

.service-body-empty {
  margin: 0;
  color: #597084;
}

.service-tags-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  padding-top: 2px;
}

.service-tags-label {
  font-size: 12px;
  color: rgba(199, 225, 240, 0.9);
}

.service-tags-line a {
  color: #fff;
  border: 1px solid rgba(195, 228, 245, 0.55);
  background: rgba(10, 30, 44, 0.18);
  border-radius: 999px;
  padding: 2px 8px;
  text-decoration: none;
  font-size: 12px;
  opacity: 1;
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-tags-line a:hover {
  background: rgba(10, 30, 44, 0.3);
  border-color: rgba(216, 237, 249, 0.85);
}

@media (max-width: 1024px) {
  .services-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .services-aside {
    position: static;
  }

  .service-detail-section {
    padding-top: 24px;
  }
}

/* .content-disclaimer — front-import-global.css-ben van (globális) */

/* =================================================================
   SERVICES OLDAL EGYEDI STÍLUSOK
   (Korábban inline <style> blokkban volt a template-ben — áthelyezve)
   ================================================================= */

/* Konténer utility */
.m-container {
  width: 100%;
  padding: 60px 0;
}
.m-wrap {
  width: 100%;
  max-width: min(var(--layout-max, 1680px), calc(100vw - 2 * var(--layout-pad-x, clamp(14px, 4vw, 48px))));
  margin: 0 auto;
  padding-left: var(--layout-pad-x, clamp(14px, 4vw, 48px));
  padding-right: var(--layout-pad-x, clamp(14px, 4vw, 48px));
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

/* Stat grid — 4 / 3 (<1200) / 2 (<900) / 1 (<640); soron belül egyenlő magasság */
.services-page-main .hosp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 16px;
}
.services-page-main .hosp-stat {
  min-height: 148px;
  align-items: center !important;
  min-width: 0;
  padding: 16px 18px 16px 12px !important;
  height: 100%;
  box-sizing: border-box;
  gap: 14px;
}
.services-page-main .hosp-stat-icon {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  flex-shrink: 0;
}
.services-page-main .services-compact-chev {
  align-self: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(74, 142, 166, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand, #4a8ea6);
  font-size: 12px;
  opacity: 0.7;
  transform: translateX(-2px);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.services-page-main .services-compact-link:hover .services-compact-chev,
.services-page-main .services-compact-link:focus-visible .services-compact-chev {
  transform: translateX(2px);
  opacity: 1;
  background: var(--brand, #4a8ea6);
  color: #fff;
  border-color: var(--brand, #4a8ea6);
}
.services-page-main .hosp-stats .hosp-stat-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy, #1e3a50);
  letter-spacing: -0.01em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.services-page-main .hosp-stats .hosp-stat-num span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin-left: 0;
}
.services-page-main .hosp-stats .hosp-stat-desc {
  overflow-wrap: break-word;
  word-break: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 6px;
  line-height: 1.45;
}

@media (max-width: 1199.98px) {
  .services-page-main .hosp-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 899.98px) {
  .services-page-main .hosp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .services-page-main .hosp-stats {
    grid-template-columns: 1fr !important;
  }
  .services-page-main .hosp-stat {
    min-height: 0;
  }
}

/* Hero kereső */
.m-search-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 800px;
  z-index: 10;
}
.m-search-bar {
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 20px 50px rgba(30, 58, 80, 0.15);
  border: 1px solid rgba(219, 226, 234, 0.5);
}
.m-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  background: transparent;
}
.m-search-btn-circle {
  background-image: radial-gradient(circle at 85% 20%, rgba(107, 179, 204, 0.22), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(74, 142, 166, 0.18), transparent 55%),
    linear-gradient(135deg, #142536 0%, #1E3A50 50%, #2A5A75 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  flex-shrink: 0;
}
.m-search-btn-circle:hover {
  background-color: #00769A;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .m-search-bar { padding-left: 20px; }
  .m-search-input { font-size: 14px; }
  .m-search-btn-circle { width: 40px; height: 40px; font-size: 16px; }
}

/* Hero banner */
.m-banner-section {
  position: relative;
  width: 100%;
}
.m-banner-section--search-only {
  height: clamp(24px, 3vw, 32px);
}
.services-page-main:has(.m-banner-section--search-only) .services-section {
  padding-top: clamp(24px, 3vw, 32px);
}
.services-page-main--gyermek-hub .services-section {
  padding-bottom: 20px;
}
.services-page-main--gyermek-hub .svc-hub-grid {
  margin-bottom: 0;
}

/* Hub hero — gyermek szakrendelések illusztráció a kék fejlécben */
.services-hero--with-art {
  --page-hero-pad-bottom: 24px;
  --page-hero-min-height: 0;
  min-height: auto;
  padding-bottom: 28px;
}
.services-hero--with-art .m-header-row--with-art {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px) !important;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
}
.services-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 260px;
  justify-self: end;
}
.services-hero__art {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(8, 24, 38, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 0;
}
.services-hero__art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 650 / 572;
  object-fit: cover;
  object-position: center top;
}
.services-hero--with-art .m-btn-group--solo {
  max-width: none;
  width: 100%;
}
@media (max-width: 900px) {
  .services-hero--with-art .m-header-row--with-art {
    grid-template-columns: 1fr !important;
  }
  .services-hero__aside {
    order: 2;
  }
}
.m-banner-img {
  width: 100%;
  height: clamp(250px, 30vw, 400px);
  overflow: hidden;
  display: block;
}
.m-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.m-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 80, 0.3), transparent);
  pointer-events: none;
}

/* Labor hub — telephely-stílusú 2 oszlopos terület/csomag rács */
.labor-hub-areas {
  margin-top: 8px;
}
.labor-hub-areas .tpd-attached__title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand, #4A8EA6);
}
.labor-hub-areas .prof-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.labor-hub-areas .prof-treatment-grid li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border, #DBE2EA);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  color: var(--text, #2C3E50);
  transition: border-color 0.2s, background 0.2s;
}
.labor-hub-areas .prof-treatment-grid li:hover {
  border-color: var(--brand, #4A8EA6);
  background: var(--brand-pale, #E8F4F8);
}
.labor-hub-areas .prof-treatment-grid li i {
  color: var(--brand, #4A8EA6);
  font-size: 14px;
  flex-shrink: 0;
}
.labor-hub-areas .prof-treatment-grid a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.labor-hub-areas .prof-treatment-grid a:hover {
  color: var(--brand-dark, #3A7A94);
}
@media (max-width: 640px) {
  .labor-hub-areas .prof-treatment-grid {
    grid-template-columns: 1fr;
  }
}

.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.svc-hub-tile {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 16px;
  min-height: 148px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #F4FAFC 0%, #E8F4F8 100%);
  border: 1px solid rgba(74, 142, 166, 0.18);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.svc-hub-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 16px 0 0 16px;
  opacity: 0.85;
  transition: width 0.25s ease, opacity 0.25s ease;
}
.svc-hub-tile:hover,
.svc-hub-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(74, 142, 166, 0.18);
  border-color: rgba(74, 142, 166, 0.45);
  background: linear-gradient(180deg, #FFFFFF 0%, #EAF6FA 100%);
  outline: none;
}
.svc-hub-tile:hover::before,
.svc-hub-tile:focus-visible::before {
  width: 6px;
  opacity: 1;
}
.svc-hub-tile--nohref {
  cursor: default;
}
.svc-hub-tile--nohref:hover {
  transform: none;
  box-shadow: 0 1px 3px rgba(30, 58, 80, 0.04);
}
.svc-hub-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  color: var(--brand);
  font-size: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-hub-tile__icon--ph {
  background: linear-gradient(145deg, #E8F4F8 0%, #D5EBF2 55%, #C5E2EC 100%);
  border-color: rgba(74, 142, 166, 0.28);
  color: #3A7388;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.svc-hub-tile__icon--ph i {
  font-size: 22px;
  line-height: 1;
  opacity: 0.92;
}
.svc-hub-tile:hover .svc-hub-tile__icon {
  transform: scale(1.05);
}
.svc-hub-tile:hover .svc-hub-tile__icon--ph {
  background: linear-gradient(145deg, #DFF1F6 0%, #C8E6EF 55%, #B5DBE8 100%);
  color: #2F6274;
}
.svc-hub-tile__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-hub-tile__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-hub-tile__title {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-hub-tile__desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-hub-tile__chev {
  align-self: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(74, 142, 166, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 12px;
  opacity: 0.7;
  transform: translateX(-2px);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.svc-hub-tile:hover .svc-hub-tile__chev,
.svc-hub-tile:focus-visible .svc-hub-tile__chev {
  transform: translateX(2px);
  opacity: 1;
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
@media (max-width: 1200px) {
  .svc-hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .svc-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .svc-hub-tile { padding: 18px; min-height: 132px; }
}
@media (max-width: 560px) {
  .svc-hub-grid { grid-template-columns: 1fr; }
  .svc-hub-tile { min-height: 0; }
}

/* Laborvizsgálatok típusai — live törzsszöveg a hub-lista alatt */
.lta {
  margin-top: 48px;
  padding-top: 8px;
  color: var(--text, #2c3e50);
}
.lta-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  margin: 0 0 22px;
  border-radius: 14px;
  background: #e8f4f8;
  border: 1px solid rgb(74 142 166 / .22);
}
.lta-note__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark, #3a7a94);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lta-note p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--navy, #1e3a50); }
.lta-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  margin: 0 0 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #19324a 0%, #204f75 62%, #248c99 100%);
  color: #fff;
}
.lta-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.lta-cta p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgb(255 255 255 / .82); max-width: 520px; }
.lta-cta__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.lta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.lta-btn--solid { background: #fff; color: var(--navy, #1e3a50); }
.lta-btn--solid:hover { background: #e8f4f8; }
.lta-btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgb(255 255 255 / .45); }
.lta-btn--ghost:hover { background: rgb(255 255 255 / .12); border-color: #fff; }
.lta-intro h2,
.lta-topic h3 {
  color: var(--navy, #1e3a50);
  letter-spacing: -0.02em;
}
.lta-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
}
.lta-intro > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid, #5a6b7d);
  max-width: 72ch;
}
.lta-chips {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.lta-chips li {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border, #dbe2ea);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text, #2c3e50);
  box-shadow: 0 1px 3px rgb(30 58 80 / .04);
}
.lta-chips strong { color: var(--navy, #1e3a50); }
.lta-topics { display: grid; gap: 16px; }
.lta-topic {
  padding: 22px 24px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border, #dbe2ea);
  box-shadow: 0 2px 8px rgb(30 58 80 / .05);
}
.lta-topic h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}
.lta-topic p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid, #5a6b7d);
}
.lta-topic p:last-of-type { margin-bottom: 14px; }
.lta-topic__warn {
  padding: 12px 14px;
  border-radius: 10px;
  background: #f7fafc;
  color: var(--navy, #1e3a50) !important;
}
.lta-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-dark, #3a7a94);
  text-decoration: none;
}
.lta-more::after { content: '→'; }
.lta-more:hover { color: var(--navy, #1e3a50); }
.lta-foot {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 14px;
  background: #f5f8fa;
  border: 1px solid var(--border, #dbe2ea);
}
.lta-foot p { margin: 0 0 8px; font-size: 15px; line-height: 1.6; color: var(--navy, #1e3a50); }
.lta-foot p:last-child { margin-bottom: 0; }
.lta-foot a { color: var(--brand-dark, #3a7a94); font-weight: 700; }
.lta-foot__muted { font-size: 13.5px !important; color: var(--text-mid, #5a6b7d) !important; }
@media (max-width: 800px) {
  .lta-chips { grid-template-columns: 1fr; }
  .lta-cta { padding: 18px; }
  .lta-topic { padding: 18px; }
}