/* Institutul Inimii — consolidated stylesheet */

:root {
      --background: #ffffff;
      --foreground: #171717;
      --brand-red: #cc2e40;
      --brand-red-hover: #a82534;
      --brand-blue: #0c7ea8;
      --brand-blue-hover: #0a6d92;
      --brand-black: #020617;
      --brand-blue-soft: #e6f4f9;
      --nav-admin-color: #1e293b;
      --nav-admin-soft: #f1f5f9;
      --site-header-height: 5rem;
      --header-accent: #cc2e40;
      --header-accent-soft: #fce8eb;
      --nav-hover-bg: #f1f5f9;
      --section-tint-bg: #fef7f8;
      --hero-column-blue-bg: #ffffff;
      --hero-column-blue-bg-hover: #f8fafc;
      --hero-column-admin-bg: var(--brand-black);
      --hero-column-admin-bg-hover: #0f172a;
    }

*, *::before, *::after { box-sizing: border-box; }

body {
      margin: 0;
      background: #fff;
      color: var(--foreground);
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

@media (max-width: 1023px) {
      html {
        overflow-x: hidden;
      }
    }

/* ?? Site header (institutional mega) ?? */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
      max-width: 100%;
      background: #fff;
      border-bottom: 1px solid #e2e8f0;
      box-shadow:
        0 1px 2px rgb(15 23 42 / 0.06),
        0 8px 24px -8px rgb(15 23 42 / 0.18);
      isolation: isolate;
      overflow-x: clip;
      /* Mega-menu colors must stay consistent on all page types (e.g. page-administratie overrides --brand-blue-* on body). */
      --brand-blue: #0c7ea8;
      --brand-blue-hover: #0a6d92;
      --brand-blue-soft: #e6f4f9;
    }

.site-header__row {
      position: relative;
      max-width: min(80rem, 100%);
      margin: 0 auto;
      padding: 0 1.5rem;
      min-height: var(--site-header-height);
      display: grid;
      align-items: center;
      gap: 0.75rem 1.25rem;
      box-sizing: border-box;
    }

.site-header__logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: inherit;
    }

.site-header__logo img {
      height: 2.75rem;
      width: auto;
      max-height: 2.75rem;
    }

.site-header__logoText {
      display: none;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
      color: var(--brand-blue);
      max-width: 11rem;
    }

@media (min-width: 640px) {
      .site-header__logoText { display: block; }
    }

.site-header__nav {
      display: none;
      align-items: center;
    }

@media (min-width: 1024px) {
      .site-header__row {
        grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
        grid-template-areas: "logo nav actions";
        align-items: stretch;
      }
      .site-header__logo,
      .site-header__actions {
        align-self: center;
      }
      .site-header__logo { grid-area: logo; }
      .site-header__nav {
        grid-area: nav;
        justify-self: center;
        display: flex;
        align-self: stretch;
        align-items: stretch;
      }
      .site-header__actions--mobile {
        display: none;
      }
      .site-header__actions {
        grid-area: actions;
        justify-self: end;
      }
      .site-header__navList {
        height: 100%;
        align-items: stretch;
      }
      .site-header__navList > li {
        display: flex;
        align-items: stretch;
      }
      .mh-mega {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 100%;
      }
    }

.site-header__navList {
      display: flex;
      gap: 0.125rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

.mh-link {
      display: inline-flex;
      align-items: center;
      padding: 0.75rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #020617;
      text-decoration: none;
      transition: background 0.15s ease, color 0.15s ease;
    }

.mh-link:hover {
      background: var(--nav-hover-bg);
      color: var(--brand-black);
    }

.mh-link:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 2px;
    }

.mh-link[aria-current="page"] {
      color: var(--header-accent);
      background: var(--header-accent-soft);
    }

.mh-mega {
      position: static;
      list-style: none;
      margin: 0;
      padding: 0;
    }

.mh-mega__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.75rem 1rem;
      border-radius: 9999px;
      border: none;
      background: transparent;
      cursor: pointer;
      font: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #020617;
      transition: background 0.15s ease, color 0.15s ease;
    }

.mh-mega__btn:hover {
      background: var(--nav-hover-bg);
      color: var(--brand-black);
    }

.mh-mega__btn:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 2px;
    }

.mh-mega__btn[aria-current="page"] {
      color: var(--header-accent);
      background: var(--header-accent-soft);
    }

.mh-mega__chev {
      font-size: 0.6rem;
      opacity: 0.65;
      letter-spacing: 0;
      text-transform: none;
      transition: transform 0.2s ease;
    }

@media (max-width: 1023px) {
      .mh-mega.mh-mega--open .mh-mega__chev {
        transform: rotate(180deg);
      }
    }

@media (min-width: 1024px) {
      .mh-mega__chev { display: none; }
    }

.mh-mega__panel {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background: #fff;
      border-top: 1px solid #e2e8f0;
      box-shadow: 0 24px 50px -12px rgb(15 23 42 / 0.18);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.18s ease, visibility 0.18s ease;
      max-height: min(85vh, 44rem);
      overflow-y: auto;
    }

@media (min-width: 1024px) {
      /* Panel anchored to <li> (position relative) ? no dead zone between trigger and dropdown. */
      .mh-mega {
        position: relative;
      }
      /* Invisible hit area: pointer crosses header strip from pill to full-bleed panel without closing. */
      .mh-mega::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 1.25rem;
        z-index: 98;
      }
      .mh-mega__panel {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        top: var(--site-header-height);
        transform: none;
        z-index: 99;
        box-sizing: border-box;
      }
      .mh-mega:hover .mh-mega__panel,
      .mh-mega:focus-within .mh-mega__panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      /* After base .mh-link / .mh-mega__btn so border-radius and flex win on desktop. */
      .mh-mega__btn {
        border-radius: 0;
        flex: 1 1 auto;
        justify-content: center;
      }
      .mh-link {
        display: flex;
        width: auto;
        height: 100%;
        min-height: 100%;
        border-radius: 0;
        align-self: stretch;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
      }
    }

.mh-mega__inner {
      max-width: 80rem;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding: 2rem 1.5rem;
      box-sizing: border-box;
    }

.mega-frame {
      display: grid;
      gap: 1.75rem 2rem;
      grid-template-columns: 1fr;
      min-width: 0;
    }

@media (min-width: 1024px) {
      .mega-frame {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 2rem 2.5rem;
      }
    }

.mega-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 1.5rem;
      border-radius: 0.875rem;
      box-shadow: 0 4px 14px rgb(15 23 42 / 0.08);
      text-decoration: none;
      color: inherit;
      border: 1px solid transparent;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

.mega-card:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgb(15 23 42 / 0.12);
    }

.mega-card:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 3px;
    }

.mega-card--dark {
      background: #020617;
      color: #fff;
      border-color: #0f172a;
    }

.mega-card--dark .mega-card__eyebrow { color: #f87171; }

.mega-card--dark .mega-card__cta { color: #fecaca; }

.mega-card--lightAccent {
      background: #fef2f2;
      color: #020617;
      border-color: #fecaca;
    }

.mega-card--lightAccent .mega-card__eyebrow { color: var(--header-accent); }

.mega-card--lightAccent .mega-card__cta { color: var(--header-accent); }

/* Featured mega cards (desktop hover panels) */
    .mega-card--featured-pacienti {
      background: var(--brand-red);
      color: #fff;
      border-color: rgba(0, 0, 0, 0.12);
    }

.mega-card--featured-pacienti .mega-card__eyebrow {
      color: rgba(255, 255, 255, 0.9);
    }

.mega-card--featured-pacienti .mega-card__title {
      color: #fff;
    }

.mega-card--featured-pacienti .mega-card__text {
      color: rgba(255, 255, 255, 0.92);
      opacity: 1;
    }

.mega-card--featured-pacienti .mega-card__cta {
      color: #fff;
    }

.mega-card--featured-institut {
      background: var(--brand-blue);
      color: #fff;
      border-color: rgba(0, 0, 0, 0.12);
    }

.mega-card--featured-institut .mega-card__eyebrow {
      color: rgba(255, 255, 255, 0.85);
    }

.mega-card--featured-institut .mega-card__title {
      color: #fff;
    }

.mega-card--featured-institut .mega-card__text {
      color: rgba(255, 255, 255, 0.78);
      opacity: 1;
    }

.mega-card--featured-institut .mega-card__cta {
      color: #fff;
    }

.mega-card--featured-institut:focus-visible {
      outline-color: var(--brand-blue);
    }

.mega-card--featured-admin {
      background: var(--brand-black);
      color: #fff;
      border-color: rgb(255 255 255 / 0.2);
    }

.mega-card--featured-admin .mega-card__eyebrow {
      color: #94a3b8;
    }

.mega-card--featured-admin .mega-card__title {
      color: #fff;
    }

.mega-card--featured-admin .mega-card__text {
      color: #cbd5e1;
      opacity: 1;
    }

.mega-card--featured-admin .mega-card__cta {
      color: #f8fafc;
    }

.mega-card--featured-admin:focus-visible {
      outline-color: var(--nav-admin-color);
    }

.mega-card__eyebrow {
      margin: 0 0 0.5rem;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

.mega-card__title {
      margin: 0 0 0.75rem;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

.mega-card__text {
      margin: 0 0 1.25rem;
      font-size: 0.9375rem;
      line-height: 1.55;
      opacity: 0.92;
    }

.mega-card--dark .mega-card__text { color: #e2e8f0; }

.mega-card__cta {
      margin-top: auto;
      font-size: 0.875rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

.mega-groups {
      display: grid;
      gap: 1.5rem 2rem;
      grid-template-columns: 1fr;
      min-width: 0;
    }

@media (min-width: 640px) {
      .mega-groups--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .mega-groups--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

@media (min-width: 1024px) {
      .mega-groups--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .mega-groups--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

.mega-gr h3 {
      margin: 0 0 1rem;
      font-size: 0.6875rem;
      font-weight: 900;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--header-accent);
      line-height: 1.3;
    }

#mh-panel-institut .mega-gr h3 {
      color: var(--brand-blue);
    }

#mh-panel-admin .mega-gr h3 {
      color: var(--nav-admin-color);
    }

.mega-gr ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

.mega-gr a {
      font-size: 0.9375rem;
      font-weight: 500;
      line-height: 1.45;
      color: #020617;
      text-decoration: none;
      border-radius: 4px;
      transition: color 0.15s ease;
    }

.mega-gr a:hover { color: var(--header-accent); }

.mega-gr a:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 2px;
    }

#mh-panel-institut .mega-gr a:hover {
      color: var(--brand-blue-hover);
    }

#mh-panel-institut .mega-gr a:focus-visible {
      outline-color: var(--brand-blue);
    }

#mh-panel-admin .mega-gr a:hover {
      color: var(--brand-black);
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

#mh-panel-admin .mega-gr a:focus-visible {
      outline-color: var(--nav-admin-color);
    }

#mh-panel-admin .mega-gr a[aria-current="page"] {
      color: var(--nav-admin-color);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

#mh-panel-institut .mega-gr a[aria-current="page"] {
      color: var(--brand-blue-hover);
      font-weight: 700;
    }

#mh-panel-pacienti .mega-gr a[aria-current="page"] {
      color: var(--header-accent);
      font-weight: 700;
    }

.site-header__actions {
      display: none;
      align-items: center;
      gap: 0.65rem;
      justify-self: end;
    }

@media (min-width: 1024px) {
      .site-header__actions { display: flex; }
    }

.btn-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.65rem 1.35rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

.btn-pill--primary {
      background: var(--header-accent);
      color: #fff;
      border: 1px solid var(--header-accent);
    }

.btn-pill--primary:hover {
      background: #991b1b;
      border-color: #991b1b;
      color: #fff;
    }

.btn-pill--primary:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 3px;
    }

.btn-pill--ghost {
      background: #fff;
      color: #020617;
      border: 1px solid #e2e8f0;
    }

.btn-pill--ghost:hover {
      border-color: #cbd5e1;
      background: #f8fafc;
    }

.btn-pill--ghost:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 3px;
    }

.btn-pill__icon {
      flex-shrink: 0;
      font-size: 0.95em;
      line-height: 1;
    }

.site-header__menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      margin: 0;
      padding: 0;
      border: 1px solid #e2e8f0;
      border-radius: 0.5rem;
      background: #fff;
      color: #020617;
      cursor: pointer;
      justify-self: end;
    }

@media (min-width: 1024px) {
      .site-header__menu-toggle { display: none; }
    }

.site-header__menu-toggle:hover {
      border-color: #cbd5e1;
      background: #f8fafc;
    }

.site-header__menu-toggle:focus-visible {
      outline: 2px solid var(--header-accent);
      outline-offset: 3px;
    }

.site-header__menu-toggle .icon-close { display: none; }

.site-header--nav-open .site-header__menu-toggle .icon-open { display: none; }

.site-header--nav-open .site-header__menu-toggle .icon-close { display: inline-block; }

@media (max-width: 1023px) {
      :root {
        /* Matches logo row: vertical padding + ~2.75rem control height (fixed drawer top). */
        --site-header-height: 4.5rem;
      }
      .site-header__row {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "logo toggle"
          "nav nav";
        padding: 0.75rem 1.5rem;
        min-height: 0;
        align-items: center;
      }
      .site-header__logo { grid-area: logo; }
      .site-header__menu-toggle { grid-area: toggle; align-self: center; }
      .site-header__nav {
        grid-area: nav;
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        top: var(--site-header-height);
        bottom: 0;
        z-index: 96;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0 2rem;
        background: #fff;
        border-top: 1px solid #e2e8f0;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-0.35rem);
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
      .site-header--nav-open .site-header__nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .site-header__navList {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
      }
      .site-header__actions--mobile {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        padding: 0 0 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #e2e8f0;
      }
      .site-header__actions--mobile .btn-pill { width: 100%; }
      .mh-link {
        width: 100%;
        border-radius: 0;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .mh-mega__btn {
        width: 100%;
        border-radius: 0;
        justify-content: space-between;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .mh-mega__chev { display: inline-block; }
      .mh-mega__panel {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none;
        border: none;
        max-height: none;
        display: none;
        overflow: visible;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        z-index: auto;
        transform: none;
        box-sizing: border-box;
      }
      .mh-mega.mh-mega--open .mh-mega__panel {
        display: block;
      }
      .mh-mega__inner {
        padding: 0.75rem 1rem 1rem;
        max-width: 100%;
        box-sizing: border-box;
      }
      .mega-frame {
        grid-template-columns: 1fr;
        min-width: 0;
      }
      .mega-card {
        margin-bottom: 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
      }
      .mega-groups {
        min-width: 0;
      }
    }

@keyframes hero-pulse-ring {
      0% { transform: scale(0.85); opacity: 0.45; }
      70% { transform: scale(1.25); opacity: 0; }
      100% { transform: scale(1.25); opacity: 0; }
    }

@keyframes hero-rule-grow {
      from { width: 0; }
      to { width: 6rem; }
    }

@keyframes hero-icon-pop {
      0% {
        opacity: 0;
        transform: scale(0.88);
        animation-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
      }
      52% {
        opacity: 1;
        transform: scale(1.018);
        animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

@keyframes hero-cta-slide {
      from {
        opacity: 0;
        transform: translateX(-1.15rem);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

@keyframes hero-text-in {
      from {
        opacity: 0;
        transform: translateX(-1rem);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

/* Replay versions (different name so hover restarts animation) */
    @keyframes hero-rule-hover {
      0% {
        width: 0;
      }
      70.833% {
        width: 6rem;
      }
      100% {
        width: 10rem;
      }
    }

@keyframes hero-icon-pop-hover {
      0% {
        opacity: 0;
        transform: scale(0.88);
        animation-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
      }
      52% {
        opacity: 1;
        transform: scale(1.018);
        animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

/* ?? Hero columns (matches HeroColumnsBlock) ?? */
    .hero-columns {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, minmax(0, 1fr));
      width: 100%;
      overflow: hidden;
      border-bottom: 1px solid #e4e4e7;
      min-height: calc(100svh - var(--site-header-height));
      height: calc(100svh - var(--site-header-height));
    }

@media (min-width: 1024px) {
      .hero-columns {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
      }
    }

.hero-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 0;
      align-items: stretch;
      overflow: hidden;
      padding: 2rem 2.5rem;
      text-decoration: none;
      transition: background-color 0.5s ease, color 0.5s ease;
    }

@media (min-width: 640px) {
      .hero-panel { padding: 2.5rem; }
    }

.hero-panel--red {
      background: var(--brand-red);
      color: #fff;
    }

.hero-panel--red:hover { background: var(--brand-red-hover); }

.hero-panel--blue {
      background: var(--hero-column-blue-bg);
      color: var(--brand-blue);
    }

.hero-panel--blue:hover {
      background: var(--hero-column-blue-bg-hover);
    }

@media (min-width: 1024px) {
      .hero-panel--blue {
        border-left: 1px solid #e2e8f0;
        border-right: 1px solid #e2e8f0;
      }
    }

.hero-panel--dark {
      background: var(--hero-column-admin-bg);
      color: #fff;
    }

.hero-panel--dark:hover {
      background: var(--hero-column-admin-bg-hover);
    }

/* Hero decorations */
    .hero-deco { position: absolute; pointer-events: none; }

.hero-deco--red-gradient {
      inset: 0;
      background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.22), transparent 34%);
    }

.hero-ecg-strip {
      width: 100%;
      height: 4rem;
      max-width: 28rem;
      flex-shrink: 0;
      margin: 0;
      animation: hero-ecg-pulse 2.8s ease-in-out infinite;
    }

.hero-ecg-strip svg {
      display: block;
      width: 100%;
      height: 100%;
    }

@keyframes hero-ecg-pulse {
      0%, 100% { opacity: 0.52; }
      14% { opacity: 0.92; }
      24% { opacity: 0.58; }
      38% { opacity: 0.88; }
      52% { opacity: 0.55; }
      66% { opacity: 0.82; }
      80% { opacity: 0.52; }
    }

.hero-deco--pulse {
      right: 3rem;
      top: 3rem;
      width: 10rem;
      height: 10rem;
      border-radius: 9999px;
      border: 1px solid rgba(255,255,255,.2);
      animation: hero-pulse-ring 3.5s infinite ease-out;
    }

.hero-deco--ring {
      right: 5rem;
      top: 5rem;
      width: 6rem;
      height: 6rem;
      border-radius: 9999px;
      border: 1px solid rgba(255,255,255,.2);
    }

.hero-deco--red-svg {
      top: 3rem;
      right: 2.5rem;
      width: 8rem;
      height: 8rem;
      color: rgba(255,255,255,.1);
      transition: color 0.65s ease;
      transform-origin: 85% 35%;
      opacity: 0;
      animation: hero-icon-pop 1.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red:hover .hero-deco--red-svg { color: rgba(255,255,255,.2); }

.hero-deco--blue-gradient {
      inset: 0;
      background: radial-gradient(circle at 28% 18%, rgb(248 250 252 / 0.85), transparent 44%);
    }

.hero-deco--blue-grid {
      right: 0;
      top: 0;
      height: 100%;
      width: 50%;
      opacity: 0.55;
      background-image:
        linear-gradient(to right, rgb(15 23 42 / 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(15 23 42 / 0.06) 1px, transparent 1px);
      background-size: 32px 32px;
    }

.hero-deco--blue-svg {
      top: 3rem;
      right: 2.5rem;
      width: 8rem;
      height: 8rem;
      color: rgb(12 126 168 / 0.45);
      transition: color 0.65s ease;
      transform-origin: 85% 35%;
      opacity: 0;
      animation: hero-icon-pop 1.22s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
    }

.hero-panel--blue:hover .hero-deco--blue-svg {
      color: var(--brand-blue-hover);
    }

.hero-panel--blue .hero-deco--pulse {
      border-color: rgb(12 126 168 / 0.3);
    }

.hero-deco--dark-gradient {
      inset: 0;
      background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.12), transparent 35%);
    }

.hero-admin-lines {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.55rem;
      margin: 0;
      flex-shrink: 0;
      max-width: min(100%, 17rem);
    }

.hero-admin-lines__bar {
      display: block;
      height: 3px;
      border-radius: 9999px;
      background: rgb(255 255 255 / 0.28);
    }

.hero-admin-lines__bar--1 {
      width: 4.25rem;
    }

.hero-admin-lines__bar--2 {
      width: 7.25rem;
    }

.hero-admin-lines__bar--3 {
      width: 11.5rem;
    }

@media (min-width: 640px) {
      .hero-admin-lines__bar--1 {
        width: 5rem;
      }
      .hero-admin-lines__bar--2 {
        width: 8.5rem;
      }
      .hero-admin-lines__bar--3 {
        width: 13.25rem;
      }
    }

.hero-deco--dark-svg {
      right: 3rem;
      top: 4rem;
      width: 9rem;
      height: 9rem;
      color: rgba(255,255,255,.1);
      transition: color 0.65s ease;
      transform-origin: 70% 40%;
      opacity: 0;
      animation: hero-icon-pop 1.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--dark:hover .hero-deco--dark-svg { color: rgba(255,255,255,.22); }

.hero-deco--dark-floor {
      bottom: 0;
      left: 0;
      width: 100%;
      height: 9rem;
      background: linear-gradient(to top, rgba(255,255,255,.08), transparent);
    }

.hero-panel__inner {
      position: relative;
      z-index: 10;
      display: flex;
      width: 100%;
      min-height: 0;
      flex: 1;
      flex-direction: column;
    }

.hero-panel__top {
      flex-shrink: 0;
    }

.hero-panel__middle {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

.hero-panel__middle-well {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
    }

.hero-panel__middle-spacer {
      flex: 1;
      min-height: 0;
    }

.hero-panel__middle-well .hero-panel__middle {
      flex: none;
      justify-content: flex-start;
    }

.hero-panel__decor-slot {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

.hero-rule {
      height: 1px;
      width: 0;
      transition: width 0.5s ease;
      animation: hero-rule-grow 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red .hero-rule {
      background: rgba(255,255,255,.4);
      animation-delay: 0.08s;
    }

.hero-panel--blue .hero-rule {
      background: var(--brand-blue);
      animation-delay: 0.2s;
    }

.hero-panel--dark .hero-rule {
      background: rgba(255,255,255,.35);
      animation-delay: 0.32s;
    }

.hero-panel--red .hero-deco--red-svg { animation-delay: 0.2s; }

.hero-panel--dark .hero-deco--dark-svg { animation-delay: 0.52s; }

.hero-label {
      margin: 0 0 1.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.32em;
      opacity: 0;
      animation: hero-text-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red .hero-label { color: rgba(255,255,255,.85); animation-delay: 0.1s; }

.hero-panel--blue .hero-label { animation-delay: 0.14s; }

.hero-panel--dark .hero-label { color: rgba(255,255,255,.85); animation-delay: 0.18s; }

.hero-title {
      margin: 0;
      max-width: 28rem;
      font-size: clamp(2.25rem, 4vw, 3.75rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.025em;
      opacity: 0;
      animation: hero-text-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red .hero-title { animation-delay: 0.22s; }

.hero-panel--blue .hero-title { animation-delay: 0.26s; }

.hero-panel--dark .hero-title { color: #fff; animation-delay: 0.3s; }

.hero-footer {
      display: flex;
      flex-shrink: 0;
      min-height: 2.5rem;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

.hero-footer__actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex-shrink: 0;
      opacity: 0;
      animation: hero-cta-slide 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red .hero-footer__actions { animation-delay: 0.72s; }

.hero-panel--blue .hero-footer__actions { animation-delay: 0.92s; }

.hero-panel--dark .hero-footer__actions { animation-delay: 1.08s; }

.hero-details-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      padding: 0.55rem 1.2rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: 1px solid transparent;
      transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

.hero-panel--red .hero-details-btn {
      background: rgb(255 255 255 / 0.16);
      border-color: rgb(255 255 255 / 0.42);
      color: #fff;
    }

.hero-panel--red:hover .hero-details-btn {
      background: rgb(255 255 255 / 0.26);
      border-color: rgb(255 255 255 / 0.55);
    }

.hero-panel--blue .hero-details-btn {
      background: transparent;
      border-color: var(--brand-blue);
      color: var(--brand-blue);
    }

.hero-panel--blue:hover .hero-details-btn {
      background: var(--brand-blue-soft);
      border-color: var(--brand-blue-hover);
      color: var(--brand-blue-hover);
    }

.hero-panel--dark .hero-details-btn {
      background: rgb(255 255 255 / 0.14);
      border-color: rgb(255 255 255 / 0.4);
      color: #fff;
    }

.hero-panel--dark:hover .hero-details-btn {
      background: rgb(255 255 255 / 0.24);
      border-color: rgb(255 255 255 / 0.52);
    }

.hero-sub {
      font-size: 0.875rem;
      font-weight: 500;
      opacity: 0;
      animation: hero-text-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red .hero-sub { color: rgba(255,255,255,.85); animation-delay: 0.34s; }

.hero-panel--blue .hero-sub { animation-delay: 0.38s; }

.hero-panel--dark .hero-sub { color: rgba(255,255,255,.78); animation-delay: 0.42s; }

/* Hover: replay intro motion (rule line + SVG icons only; copy stays static).
       Use --red/--blue/--dark, not :nth-child ? whitespace text nodes break sibling indices. */
    .hero-panel--red:hover .hero-rule,
    .hero-panel--blue:hover .hero-rule,
    .hero-panel--dark:hover .hero-rule {
      animation: hero-rule-hover 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

.hero-panel--red:hover .hero-rule { animation-delay: 0.08s; }

.hero-panel--blue:hover .hero-rule { animation-delay: 0.2s; }

.hero-panel--dark:hover .hero-rule { animation-delay: 0.32s; }

.hero-panel--red:hover .hero-deco--red-svg {
      animation: hero-icon-pop-hover 1.08s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
    }

.hero-panel--blue:hover .hero-deco--blue-svg {
      animation: hero-icon-pop-hover 1.08s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
    }

.hero-panel--dark:hover .hero-deco--dark-svg {
      animation: hero-icon-pop-hover 1.08s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
    }

.hero-details-btn__arrow {
      display: inline-block;
      flex-shrink: 0;
      font-size: 1.15em;
      font-weight: 500;
      line-height: 1;
      transition: transform 0.5s ease;
    }

.hero-panel:hover .hero-details-btn__arrow { transform: translateX(0.35rem); }

/* ?? Scroll reveal (homepage card grids) ?? */
    .scroll-reveal .scroll-reveal__item {
      opacity: 0;
      transform: translateX(2.75rem);
      transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item {
      opacity: 1;
      transform: translateX(0);
    }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(1) { transition-delay: 0ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(2) { transition-delay: 75ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(3) { transition-delay: 150ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(4) { transition-delay: 225ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(5) { transition-delay: 300ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(6) { transition-delay: 375ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(7) { transition-delay: 450ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(8) { transition-delay: 525ms; }

.scroll-reveal .scroll-reveal__item.quick-access__card,
    .scroll-reveal .scroll-reveal__item.research-gateway__card,
    .scroll-reveal .scroll-reveal__item.eu-projects__card {
      transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s ease;
    }

@media (prefers-reduced-motion: reduce) {
      .scroll-reveal .scroll-reveal__item {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

/* ?? Quick access (under hero) ?? */
    .quick-access {
      width: 100%;
      background: #fff;
    }

.quick-access__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3.25rem 1.25rem 3.75rem;
    }

@media (min-width: 768px) {
      .quick-access__inner {
        padding: 4rem 2rem 4.25rem;
      }
    }

.quick-access__header {
      margin: 0 auto 2.75rem;
      max-width: 42rem;
      text-align: center;
    }

@media (min-width: 768px) {
      .quick-access__header {
        margin-bottom: 3rem;
      }
    }

.quick-access__label {
      margin: 0 0 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-red);
    }

.quick-access__title {
      margin: 0 0 1rem;
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #0f172a;
    }

.quick-access__lead {
      margin: 0;
      font-size: 1rem;
      line-height: 1.65;
      color: #475569;
    }

@media (min-width: 768px) {
      .quick-access__lead { font-size: 1.0625rem; }
    }

.quick-access__grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .quick-access__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

@media (min-width: 1024px) {
      .quick-access__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.85rem;
      }
      .quick-access__card {
        padding: 1rem 0.6rem 1.1rem;
      }
      .quick-access__card-title {
        font-size: 0.98rem;
      }
      .quick-access__card-text {
        font-size: 0.8rem;
        line-height: 1.4;
      }
      .quick-access__card .quick-access__icon {
        font-size: 1.45rem;
      }
    }

.quick-access__card {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      padding: 1.25rem 1.35rem;
      border-radius: 1rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
      text-decoration: none;
      color: #0f172a;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

.quick-access__grid.scroll-reveal--inview .quick-access__card:hover {
      transform: translateX(0) translateY(-3px);
      box-shadow: 0 10px 25px -5px rgb(15 23 42 / 0.12);
    }

.quick-access__card:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
    }

.quick-access__icon {
      margin-bottom: 0.65rem;
      font-size: 1.75rem;
      line-height: 1;
      color: var(--brand-red);
    }

@media (min-width: 1024px) {
      .quick-access__icon { font-size: 1.9rem; }
    }

.quick-access__icon i { line-height: 1; }

.quick-access__card-title {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.3;
      color: #0f172a;
    }

.quick-access__card-text {
      margin: 0.45rem 0 0;
      font-size: 0.875rem;
      line-height: 1.45;
      color: #64748b;
    }

/* ?? News ?? */
    .news-section {
      max-width: 80rem;
      margin-left: auto;
      margin-right: auto;
      padding: 2.5rem 1.5rem;
      margin-top: 2.5rem;
      margin-bottom: 2.5rem;
    }

.news-intro {
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

@media (min-width: 768px) {
      .news-section { padding-left: 2rem; padding-right: 2rem; }
    }

.news-intro-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #b91c1c;
    }

.news-intro h2 {
      margin: 0.75rem 0 0;
      font-size: 2.25rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: #020617;
    }

.news-intro p {
      margin: 1rem 0 0;
      font-size: 1rem;
      line-height: 1.75;
      color: #475569;
    }

.news-grid {
      display: grid;
      gap: 2rem;
      margin-top: 2.5rem;
    }

@media (min-width: 768px) {
      .news-grid { grid-template-columns: repeat(2, 1fr); }
    }

@media (min-width: 1024px) {
      .news-grid { grid-template-columns: repeat(3, 1fr); }
    }

.news-card {
      overflow: hidden;
      border-radius: 1rem;
      background: #fff;
      box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
      border: 1px solid #e2e8f0;
      transition: box-shadow 0.2s;
    }

.news-card:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }

.news-card__img {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #e2e8f0;
    }

.news-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

.news-card:hover .news-card__img img { transform: scale(1.05); }

.news-card__body { padding: 1.5rem; }

.news-card__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
    }

.news-pill {
      border-radius: 9999px;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

.news-pill--red { background: #fef2f2; color: #b91c1c; }

.news-pill--slate { background: #f1f5f9; color: #334155; }

.news-pill--emerald { background: #ecfdf5; color: #047857; }

.news-card time { font-size: 0.875rem; color: #64748b; }

.news-card h3 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.375;
      color: #020617;
    }

.news-card__excerpt {
      margin: 0.75rem 0 0;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #475569;
    }

.news-card__more {
      display: inline-flex;
      margin-top: 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #b91c1c;
      text-decoration: none;
    }

.news-card__more:hover { color: #991b1b; }

/* ?? Despre institut (homepage teaser) ?? */
    .about-institute {
      width: 100%;
      background: var(--section-tint-bg);
      border-top: 1px solid #f1e5e5;
    }

.about-institute__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3rem 1.5rem 3.25rem;
    }

@media (min-width: 768px) {
      .about-institute__inner {
        padding: 3.5rem 2rem 3.75rem;
      }
    }

.about-institute__layout {
      display: grid;
      gap: 2.25rem 2.5rem;
      grid-template-columns: 1fr;
      align-items: start;
    }

@media (min-width: 1024px) {
      .about-institute__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem 3.5rem;
        align-items: center;
      }
    }

.about-institute__eyebrow {
      margin: 0 0 0.65rem;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-red);
    }

.about-institute__title {
      margin: 0 0 1rem;
      font-size: clamp(1.5rem, 2.8vw, 2.25rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: #0f172a;
    }

.about-institute__lead {
      margin: 0 0 1rem;
      font-size: 1rem;
      line-height: 1.65;
      color: #334155;
      max-width: 40rem;
    }

@media (min-width: 768px) {
      .about-institute__lead {
        font-size: 1.0625rem;
      }
    }

.about-institute__support {
      margin: 0 0 1.75rem;
      font-size: 0.9375rem;
      line-height: 1.65;
      color: #475569;
      max-width: 40rem;
    }

.about-institute__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.35rem;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      background: transparent;
      color: var(--brand-red);
      border: 2px solid var(--brand-red);
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

.about-institute__btn:hover {
      background: var(--header-accent-soft);
      border-color: var(--brand-red-hover);
      color: var(--brand-red-hover);
    }

.about-institute__btn:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
    }

.about-institute__cards {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

.about-institute__card {
      margin: 0;
      padding: 1.25rem 1.25rem 1.35rem 1.15rem;
      border-radius: 0.875rem;
      background: #fff;
      border: 1px solid #e8d4d6;
      border-left: 3px solid var(--brand-red);
      box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
    }

.about-institute__card-head {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

.about-institute__card-body {
      min-width: 0;
    }

.about-institute__card-icon {
      flex-shrink: 0;
      width: 2.25rem;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background: rgb(181 48 64 / 0.1);
      color: var(--brand-red);
      font-size: 0.95rem;
    }

.about-institute__card-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #0f172a;
      line-height: 1.3;
    }

.about-institute__card-text {
      margin: 0.45rem 0 0;
      font-size: 0.875rem;
      line-height: 1.55;
      color: #64748b;
    }

/* ?? Proiecte europene (gateway) ?? */
    .eu-projects {
      width: 100%;
      background: linear-gradient(
        165deg,
        #f8fafc 0%,
        #f1f5f9 42%,
        #e8ecf1 100%
      );
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
    }

.eu-projects__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3rem 1.5rem 3.25rem;
    }

@media (min-width: 768px) {
      .eu-projects__inner {
        padding: 3.5rem 2rem 3.75rem;
      }
    }

.eu-projects__intro {
      max-width: none;
      margin: 0 0 1.35rem;
    }

.eu-projects__eyebrow {
      margin: 0 0 0.65rem;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--brand-red);
    }

.eu-projects__title {
      margin: 0 0 0.85rem;
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #020617;
    }

.eu-projects__subtitle {
      margin: 0;
      font-size: 1rem;
      line-height: 1.65;
      color: #475569;
    }

@media (min-width: 768px) {
      .eu-projects__subtitle {
        font-size: 1.0625rem;
      }
    }

.eu-projects__layout {
      display: grid;
      gap: 2.25rem 2.5rem;
      grid-template-columns: 1fr;
      align-items: start;
    }

@media (min-width: 1024px) {
      .eu-projects__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem 3.5rem;
      }
    }

.eu-projects__copy-text {
      margin: 0 0 1.5rem;
      font-size: 1rem;
      line-height: 1.65;
      color: #334155;
    }

.eu-projects__actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

.eu-projects__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.35rem;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      background: transparent;
      color: var(--brand-red);
      border: 2px solid var(--brand-red);
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

.eu-projects__btn:hover {
      background: var(--header-accent-soft);
      border-color: var(--brand-red-hover);
      color: var(--brand-red-hover);
    }

.eu-projects__btn:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
    }

.eu-projects__meta {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #64748b;
    }

.eu-projects__cards {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .eu-projects__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

.eu-projects__card {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      height: 100%;
      margin: 0;
      padding: 1.25rem 1.25rem 1.35rem;
      border-radius: 0.875rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

.eu-projects__cards.scroll-reveal--inview .eu-projects__card:hover {
      transform: translateX(0) translateY(-3px);
      box-shadow: 0 10px 25px -5px rgb(15 23 42 / 0.12);
    }

.eu-projects__card:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
    }

.eu-projects__card-icon {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background: rgb(181 48 64 / 0.1);
      color: var(--brand-red);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

.eu-projects__card h3 {
      margin: 0;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #020617;
      line-height: 1.3;
    }

.eu-projects__card p {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #64748b;
    }

.eu-projects__trust {
      margin: 2.5rem 0 0;
      padding: 1.75rem 0 0;
      border-top: 1px solid #e2e8f0;
      list-style: none;
      margin-left: 0;
      padding-left: 0;
      display: grid;
      gap: 1.25rem 1.5rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .eu-projects__trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

.eu-projects__trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

.eu-projects__trust-icon {
      flex-shrink: 0;
      width: 2.25rem;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: #fff;
      border: 1px solid #e2e8f0;
      color: var(--brand-red);
      font-size: 0.85rem;
    }

.eu-projects__trust-item p {
      margin: 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      font-weight: 500;
      color: #475569;
    }

/* ?? Cercetare (aligned with Acces rapid: header centrat, gri subtile, 3 c?r?i jos) ?? */
    .research-gateway {
      width: 100%;
      background: #fff;
      border-top: 1px solid #f1e5e5;
    }

.research-gateway__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3.25rem 1.25rem 3.75rem;
    }

@media (min-width: 768px) {
      .research-gateway__inner {
        padding: 4rem 2rem 4.25rem;
      }
    }

.research-gateway__header {
      margin: 0 auto 1.75rem;
      max-width: 70rem;
      text-align: center;
    }

@media (min-width: 768px) {
      .research-gateway__header {
        margin-bottom: 2rem;
      }
    }

.research-gateway__label {
      margin: 0 0 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-red);
    }

.research-gateway__title {
      margin: 0 0 1rem;
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #0f172a;
    }

.research-gateway__lead {
      margin: 0;
      font-size: 1rem;
      line-height: 1.65;
      color: #475569;
    }

@media (min-width: 768px) {
      .research-gateway__lead {
        font-size: 1.0625rem;
      }
    }

.research-gateway__meta {
      margin: 1.25rem 0 0;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #64748b;
    }

.research-gateway__note {
      margin: 1rem 0 0;
      font-size: 1rem;
      line-height: 1.65;
      color: #475569;
    }

.research-gateway__cta-wrap {
      display: flex;
      justify-content: center;
      margin: 0 0 2.5rem;
    }

@media (min-width: 768px) {
      .research-gateway__cta-wrap {
        margin-bottom: 3rem;
      }
    }

.research-gateway__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.35rem;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      background: var(--brand-red);
      color: #fff;
      border: 1px solid var(--brand-red);
      transition: background 0.15s ease, border-color 0.15s ease;
    }

.research-gateway__btn:hover {
      background: var(--brand-red-hover);
      border-color: var(--brand-red-hover);
      color: #fff;
    }

.research-gateway__btn:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
    }

.research-gateway__grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
      max-width: 56rem;
      margin: 0 auto;
    }

@media (min-width: 640px) {
      .research-gateway__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 1.1rem;
      }
    }

@media (min-width: 1024px) {
      .research-gateway__grid {
        gap: 1.25rem;
      }
    }

.research-gateway__card {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      margin: 0;
      padding: 1.25rem 1.35rem;
      border-radius: 1rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

.research-gateway__grid.scroll-reveal--inview .research-gateway__card:hover {
      transform: translateX(0) translateY(-3px);
      box-shadow: 0 10px 25px -5px rgb(15 23 42 / 0.12);
    }

.research-gateway__card:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
    }

.research-gateway__icon {
      margin-bottom: 0.65rem;
      font-size: 1.75rem;
      line-height: 1;
      color: var(--brand-red);
    }

@media (min-width: 1024px) {
      .research-gateway__icon {
        font-size: 1.9rem;
      }
    }

.research-gateway__icon i {
      line-height: 1;
    }

.research-gateway__card h3 {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.3;
      color: #0f172a;
    }

.research-gateway__card p {
      margin: 0.45rem 0 0;
      font-size: 0.875rem;
      line-height: 1.45;
      color: #64748b;
    }

@media (prefers-reduced-motion: reduce) {
      .hero-rule {
        animation: none !important;
        width: 6rem !important;
      }
      .hero-panel:hover .hero-rule {
        animation: none !important;
        width: 6rem !important;
      }
      .hero-ecg-strip {
        animation: none !important;
        opacity: 0.78 !important;
      }
      .hero-deco--red-svg,
      .hero-deco--blue-svg,
      .hero-deco--dark-svg,
      .hero-footer__actions,
      .hero-label,
      .hero-title,
      .hero-sub {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
      .hero-panel:hover .hero-deco--red-svg,
      .hero-panel:hover .hero-deco--blue-svg,
      .hero-panel:hover .hero-deco--dark-svg,
      .hero-panel:hover .hero-footer__actions,
      .hero-panel:hover .hero-label,
      .hero-panel:hover .hero-title,
      .hero-panel:hover .hero-sub {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

:root {
      --background: #ffffff;
      --foreground: #171717;
      --brand-red: #cc2e40;
      --brand-red-hover: #a82534;
      --brand-blue: #0c7ea8;
      --brand-blue-hover: #0a6d92;
      --brand-black: #020617;
      --brand-blue-soft: #e6f4f9;
      --nav-admin-color: #1e293b;
      --nav-admin-soft: #f1f5f9;
      --site-header-height: 5rem;
      --header-accent: #cc2e40;
      --header-accent-soft: #fce8eb;
      --nav-hover-bg: #f1f5f9;
      --section-tint-bg: #f8fafc;
      --contact-accent: #7b1113;
      --contact-accent-hover: #8d171a;
    }

html {
      scroll-behavior: smooth;
    }

body {
      margin: 0;
      background: #fff;
      color: var(--foreground);
    }

.mh-link[aria-current="page"] {
      color: var(--brand-black);
      background: var(--nav-admin-soft);
    }

.mh-mega__btn[aria-current="page"] {
      color: var(--brand-black);
      background: var(--nav-admin-soft);
    }

.patient-hero {
      position: relative;
      isolation: isolate;
      overflow-x: clip;
      color: #fff;
      min-height: calc(100dvh - var(--site-header-height));
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: rgb(44 26 30);
      background-image: url("https://www.institutulinimii.ro/fileadmin/_processed_/9/2/csm_Spitalizare_de_zi_21e136bbc2.jpg");
      background-size: cover;
      background-position: center;
    }

.patient-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        165deg,
        rgb(190 72 88 / 0.4) 0%,
        rgb(168 62 80 / 0.36) 20%,
        rgb(145 52 72 / 0.34) 42%,
        rgb(122 44 62 / 0.3) 65%,
        rgb(98 38 54 / 0.26) 82%,
        rgb(82 34 48 / 0.22) 100%
      );
      pointer-events: none;
    }

.patient-hero__circles {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

.patient-hero__circle {
      position: absolute;
      border-radius: 50%;
      filter: blur(45px);
      transform: translateZ(0);
    }

/* Large warm circle ? upper right, cropped (like reference) */
    .patient-hero__circle--1 {
      width: min(110vw, 48rem);
      height: min(110vw, 48rem);
      right: -20%;
      top: -18%;
      background: radial-gradient(
        circle at 42% 48%,
        rgb(255 165 175 / 0.5) 0%,
        rgb(235 120 130 / 0.36) 38%,
        rgb(200 85 98 / 0.2) 62%,
        transparent 72%
      );
    }

/* Mid accent ? center-right */
    .patient-hero__circle--2 {
      width: min(85vw, 36rem);
      height: min(85vw, 36rem);
      right: -8%;
      top: 28%;
      background: radial-gradient(
        circle at 35% 45%,
        rgb(255 145 155 / 0.32) 0%,
        rgb(205 88 102 / 0.24) 45%,
        transparent 65%
      );
      filter: blur(52px);
    }

/* Bottom-left soft curve */
    .patient-hero__circle--3 {
      width: min(95vw, 40rem);
      height: min(95vw, 40rem);
      left: -28%;
      bottom: -32%;
      background: radial-gradient(
        circle at 65% 32%,
        rgb(255 185 192 / 0.22) 0%,
        rgb(210 95 108 / 0.16) 48%,
        transparent 68%
      );
      filter: blur(56px);
    }

/* Small depth ? top left */
    .patient-hero__circle--4 {
      width: min(55vw, 24rem);
      height: min(55vw, 24rem);
      left: -12%;
      top: 8%;
      background: radial-gradient(
        circle at 50% 50%,
        rgb(220 100 112 / 0.18) 0%,
        transparent 55%
      );
      filter: blur(38px);
    }

@media (min-width: 1024px) {
      .patient-hero__circle--1 {
        right: -14%;
        top: -14%;
      }
      .patient-hero__circle--2 {
        right: 4%;
        top: 22%;
      }
    }

.patient-hero__inner {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 80rem;
      margin-left: auto;
      margin-right: auto;
      padding: 2rem 1rem 3rem;
    }

@media (min-width: 640px) {
      .patient-hero__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

@media (min-width: 1024px) {
      .patient-hero__inner {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

.patient-hero--subpage {
      min-height: 0;
      justify-content: flex-start;
    }

.patient-hero--subpage .patient-hero__inner {
      padding-top: 1.5rem;
      padding-bottom: 1.75rem;
    }

@media (min-width: 768px) {
      .patient-hero--subpage .patient-hero__inner {
        padding-top: 1.75rem;
        padding-bottom: 2rem;
      }
    }

.patient-hero--subpage .patient-hero__circles {
      opacity: 0.55;
    }

/* ?? Appointments page (pacienti/programari.php) ?? */
.appointments-page .patient-page-section,
.appointments-page .appointments-actions,
.appointments-page .appointments-process {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.appointments-page .appointments-intro {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.appointments-page .appointments-directory,
.appointments-page .appointments-protocols,
.appointments-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .appointments-page .patient-page-section,
  .appointments-page .appointments-actions,
  .appointments-page .appointments-process,
  .appointments-page .appointments-directory,
  .appointments-page .appointments-protocols {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .appointments-page .appointments-intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .appointments-page .appointments-protocols,
  .appointments-page .patient-page-section--end {
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .appointments-page .patient-page-section,
  .appointments-page .appointments-actions,
  .appointments-page .appointments-process,
  .appointments-page .appointments-directory,
  .appointments-page .appointments-protocols {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .appointments-page .appointments-intro {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .appointments-page .appointments-protocols,
  .appointments-page .patient-page-section--end {
    padding-bottom: 5rem;
    margin-bottom: 2rem;
  }
}

.appointments-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .appointments-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.appointments-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.appointments-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.appointments-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.appointments-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.appointments-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.appointments-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.appointments-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.appointments-hero__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .appointments-hero__title {
    font-size: 2.25rem;
  }
}

.appointments-hero__lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .appointments-hero__lead {
    font-size: 1.0625rem;
  }
}

.appointments-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b91c1c;
}

.appointments-heading {
  margin: 0;
  max-width: 40rem;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

@media (min-width: 768px) {
  .appointments-heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .appointments-heading {
    font-size: 2.25rem;
  }
}

.appointments-time {
  font-weight: 700;
  color: #0f172a;
}

.appointments-meta-label {
  margin: 0 0 0.4rem;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #475569;
}

.appointments-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.appointments-contact-link > i {
  flex-shrink: 0;
  font-size: 0.85em;
  line-height: 1;
}

.appointments-inline-link {
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.appointments-inline-link:hover {
  color: #991b1b;
}

.appointments-inline-link:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-intro {
  background: #fff;
  color: #0f172a;
}

.appointments-intro__prose {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-intro__prose > * + * {
  margin-top: 1.1rem;
}

.appointments-intro__prose p {
  margin: 0;
}

.appointments-intro__signoff {
  margin-top: 1.5rem !important;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: #475569;
}

.appointments-actions {
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 48%, #f8fafc 100%);
  color: #0f172a;
}

.appointments-actions__header {
  margin-inline: auto;
  text-align: center;
}

.appointments-actions__header .appointments-heading {
  max-width: none;
  margin-inline: auto;
}

.appointments-actions__lead {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-actions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .appointments-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.appointments-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 0.9rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.appointments-action__icon {
  display: inline-flex;
  font-size: 1.15rem;
  line-height: 1;
}

.appointments-action--primary {
  background: #b91c1c;
  color: #fff;
  box-shadow: 0 1px 2px rgb(185 28 28 / 0.18);
}

.appointments-action--primary:hover {
  background: #991b1b;
}

.appointments-action--primary:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-action--secondary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.18);
}

.appointments-action--secondary:hover {
  background: #1e293b;
}

.appointments-action--secondary:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 3px;
}

.appointments-phone-panel {
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 52rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.15rem;
  background: rgb(255 255 255 / 0.92);
  text-align: left;
}

@media (min-width: 768px) {
  .appointments-phone-panel {
    margin-top: 3rem;
    padding: 2rem 2.15rem;
  }
}

.appointments-phone-panel__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.appointments-phone-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 1.25rem;
}

.appointments-phone-panel__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

@media (min-width: 768px) {
  .appointments-phone-panel__title {
    font-size: 1.5rem;
  }
}

.appointments-phone-panel__subtitle {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #475569;
}

.appointments-phone-panel__lead {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-phone-panel__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .appointments-phone-panel__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
  }
}

.appointments-phone-panel__meta-text {
  margin: 0.7rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.appointments-phone-panel__hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  font-size: 1.25rem;
  line-height: 1.35;
}

.appointments-phone-panel__phones {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.appointments-phone-panel__phones a {
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.appointments-phone-panel__phones a:hover {
  color: #991b1b;
}

.appointments-phone-panel__phones a:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-process {
  background: #fff;
  color: #0f172a;
}

.appointments-process .appointments-heading {
  max-width: none;
}

.appointments-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 1.75rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #fecaca;
  border-radius: 1rem;
  background: #fef2f2;
}

@media (min-width: 640px) {
  .appointments-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
}

.appointments-highlight__phone {
  display: inline-flex;
  margin-top: 0.15rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: #b91c1c;
  text-decoration: none;
}

.appointments-highlight__phone:hover {
  color: #991b1b;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.appointments-highlight__phone:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-highlight__hours {
  margin: 0.15rem 0 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0f172a;
}

.appointments-process__prose {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-process__prose p {
  margin: 0;
}

.appointments-process__prose p + p {
  margin-top: 1.25rem;
}

.appointments-process .appointments-pathway.institut-pathway {
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
  margin-inline: 0;
}

.appointments-pathway .institut-pathway__step {
  align-items: flex-start;
  gap: 1.15rem;
  padding-bottom: 2.15rem;
}

.appointments-pathway .institut-pathway__step:last-child {
  padding-bottom: 0;
}

.appointments-pathway .institut-pathway__step:not(:last-child)::before {
  left: 1.15rem;
  top: 2.55rem;
  bottom: 0.1rem;
  background: rgb(185 28 28 / 0.38);
}

.appointments-pathway .institut-pathway__marker {
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.1rem;
}

.appointments-pathway .institut-pathway__body {
  padding-top: 0.2rem;
}

.appointments-pathway .institut-pathway__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-process__note {
  margin: 2.25rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-directory,
.service-contact-directory {
  background: #f8fafc;
  color: #0f172a;
}

.service-contact-directory__header {
  max-width: 42.5rem;
}

.service-contact-directory__lead {
  margin: 0.85rem 0 0;
  max-width: 42.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.service-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .service-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .service-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  background: #fff;
}

@media (min-width: 768px) {
  .service-contact-card {
    padding: 1.5rem;
  }
}

.service-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 1.1rem;
}

.service-contact-card__header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.service-contact-card__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #64748b;
}

.service-contact-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-contact-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.service-contact-card__detail:first-child {
  padding-top: 0;
  border-top: none;
}

.service-contact-card__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #64748b;
}

.service-contact-card__value {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #334155;
}

.service-contact-card__schedule-days {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
}

.service-contact-card__schedule-hours {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
}

.service-contact-card__department + .service-contact-card__department {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.service-contact-card__department-name {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.service-contact-card__phone,
.service-contact-card__email {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: #b91c1c;
  text-decoration: none;
}

.service-contact-card__phone i,
.service-contact-card__email i {
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.service-contact-card__phone:hover,
.service-contact-card__email:hover {
  color: #991b1b;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.service-contact-card__phone:focus-visible,
.service-contact-card__email:focus-visible,
.service-contact-card__more:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.service-contact-card__email {
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-contact-card__footer {
  margin-top: auto;
  padding-top: 0.25rem;
}

.service-contact-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.service-contact-card__more:hover {
  color: #b91c1c;
  border-bottom-color: #b91c1c;
}

/* Shared icon/email helpers still used by protocol cards */
.appointments-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 1.15rem;
}

.appointments-contact-card__email {
  overflow-wrap: anywhere;
  word-break: normal;
}

.appointments-protocols {
  background: #fff;
  color: #0f172a;
}

.appointments-protocols__header .appointments-heading {
  max-width: none;
}

.appointments-protocols__lead {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.appointments-protocols__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .appointments-protocols__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.appointments-protocol-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  padding: 1.35rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .appointments-protocol-card {
    padding: 1.5rem 1.4rem;
  }
}

.appointments-protocol-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

@media (min-width: 768px) {
  .appointments-protocol-card__title {
    font-size: 1.1875rem;
  }
}

.appointments-protocol-card__meta {
  flex: 1 1 auto;
  margin: 1.15rem 0 0;
  padding: 0;
}

.appointments-protocol-card__row {
  padding: 0.8rem 0;
  border-top: 1px solid #e2e8f0;
}

.appointments-protocol-card__row:first-child {
  border-top: none;
  padding-top: 0;
}

.appointments-protocol-card__row dt {
  margin: 0 0 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #475569;
}

.appointments-protocol-card__row dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.appointments-protocol-card__row .appointments-contact-link {
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.appointments-protocol-card__row .appointments-contact-link:hover {
  color: #991b1b;
}

.appointments-protocol-card__row .appointments-contact-link:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-protocol-card__providers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.appointments-protocol-card__providers li + li {
  margin-top: 0.45rem;
}

.appointments-protocol-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.75rem;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border: 1px solid #b91c1c;
  border-radius: 0.85rem;
  background: transparent;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.appointments-protocol-card__meta + .appointments-protocol-card__btn {
  margin-top: 1.35rem;
}

.appointments-protocol-card__btn:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.appointments-protocol-card__btn:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-back {
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid #e2e8f0;
}

.appointments-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.appointments-back__link:hover {
  color: #0f172a;
}

.appointments-back__link:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.appointments-back__link i {
  font-size: 0.9rem;
}

/* Patient subpages ? intro text & section spacing (programari.php reference) */
    .patient-page-inner {
      width: 100%;
      max-width: 80rem;
      margin-inline: auto;
      padding-inline: 32px;
    }

.patient-page-prose {
      margin-top: 1.5rem;
      font-size: 1.125rem;
      line-height: 1.625;
      color: #475569;
    }

.patient-page-prose > * + * {
      margin-top: 1.25rem;
    }

@media (min-width: 768px) {
      .patient-page-prose {
        font-size: 1.25rem;
      }
    }

.patient-page-section {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

@media (min-width: 1024px) {
      .patient-page-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
      }
    }

.patient-page-section--end {
      padding-bottom: 3.5rem;
    }

@media (min-width: 1024px) {
      .patient-page-section--end {
        padding-bottom: 4rem;
      }
    }

/* ?? Emergency / serviciul de gard? page ?? */
.emergency-page .emergency-quick-info,
.emergency-page .emergency-process-section,
.emergency-page .emergency-faq-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: #fff;
  color: #0f172a;
}

.emergency-page .emergency-preparation,
.emergency-page .emergency-schedules {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: #f8fafc;
  color: #0f172a;
}

.emergency-page .emergency-back-section {
  padding-top: 0;
  padding-bottom: 2.75rem;
  margin-bottom: 2rem;
  background: #fff;
}

@media (min-width: 768px) {
  .emergency-page .emergency-quick-info,
  .emergency-page .emergency-preparation,
  .emergency-page .emergency-process-section,
  .emergency-page .emergency-schedules,
  .emergency-page .emergency-faq-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .emergency-page .emergency-back-section {
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .emergency-page .emergency-quick-info,
  .emergency-page .emergency-preparation,
  .emergency-page .emergency-process-section,
  .emergency-page .emergency-schedules,
  .emergency-page .emergency-faq-section {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .emergency-page .emergency-back-section {
    padding-bottom: 4rem;
  }
}

.emergency-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .emergency-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.emergency-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.emergency-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.emergency-hero__breadcrumb a:hover {
  color: #fff;
}

.emergency-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.emergency-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.emergency-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.emergency-hero__content {
  max-width: 42rem;
}

.emergency-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.emergency-hero__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .emergency-hero__title {
    font-size: 2.25rem;
  }
}

.emergency-hero__lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

.emergency-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b91c1c;
}

.emergency-heading {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

.emergency-heading--md {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .emergency-heading {
    font-size: 2rem;
  }

  .emergency-heading--md {
    font-size: 1.75rem;
  }
}

.emergency-lead,
.emergency-body {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.emergency-inline-link {
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.emergency-inline-link:hover {
  color: #991b1b;
}

.emergency-inline-link:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.emergency-alert {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid #fecaca;
  background: #fef2f2;
}

@media (min-width: 768px) {
  .emergency-alert {
    padding: 1.75rem 2rem;
  }
}

.emergency-alert__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .emergency-alert__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
}

.emergency-alert__intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.emergency-alert__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 1.35rem;
}

.emergency-alert h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
}

@media (min-width: 768px) {
  .emergency-alert h3 {
    font-size: 1.5rem;
  }
}

.emergency-alert__lead {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.emergency-alert__note {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(254 202 202 / 0.85);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.emergency-alert__action {
  flex-shrink: 0;
}

.emergency-alert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.85rem;
  background: #b91c1c;
  color: #fff;
  font-size: 0.975rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

@media (min-width: 768px) {
  .emergency-alert__btn {
    width: auto;
  }
}

.emergency-alert__btn:hover {
  background: #991b1b;
}

.emergency-alert__btn:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.emergency-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .emergency-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .emergency-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.emergency-quick-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  padding: 1.35rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
}

.emergency-quick-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 1.1rem;
}

.emergency-quick-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.emergency-quick-card p {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.emergency-quick-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.emergency-quick-card__link:hover {
  color: #991b1b;
}

.emergency-quick-card__link:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.emergency-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.emergency-split__col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.emergency-split__col + .emergency-split__col {
  padding-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 1024px) {
  .emergency-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }

  .emergency-split__col + .emergency-split__col {
    padding-top: 0;
    border-top: none;
  }

  .emergency-split__col:first-child {
    padding-right: 2rem;
  }

  .emergency-split__col:last-child {
    padding-left: 2rem;
    border-left: 1px solid #e2e8f0;
  }
}

.emergency-checklist {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.emergency-checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.45rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.emergency-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #b91c1c;
}

.emergency-callout {
  margin-top: auto;
  padding: 1.15rem 1.25rem;
  border: 1px solid #fecaca;
  border-radius: 0.9rem;
  background: #fef2f2;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #7f1d1d;
}

.emergency-split__col .emergency-checklist {
  margin-bottom: 1.25rem;
}

.emergency-process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .emergency-process-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
    gap: 2.5rem;
  }
}

.emergency-page .emergency-process.institut-pathway {
  width: 100%;
  max-width: none;
  margin: 0;
}

.emergency-process .institut-pathway__step {
  align-items: flex-start;
  gap: 1.15rem;
  padding-bottom: 2.15rem;
}

.emergency-process .institut-pathway__step:last-child {
  padding-bottom: 0;
}

.emergency-process .institut-pathway__step:not(:last-child)::before {
  left: 1.15rem;
  top: 2.55rem;
  bottom: 0.1rem;
  background: rgb(185 28 28 / 0.38);
}

.emergency-process .institut-pathway__marker {
  margin-top: 0.05rem;
  background: #b91c1c;
}

.emergency-process .institut-pathway__body {
  padding-top: 0.15rem;
}

.emergency-process .institut-pathway__body h3 {
  font-size: 1.0625rem;
}

.emergency-process .institut-pathway__body p {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.emergency-info-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
}

@media (min-width: 1024px) {
  .emergency-info-card {
    position: sticky;
    top: 6rem;
    padding: 1.75rem 1.5rem;
  }
}

.emergency-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  color: #475569;
  font-size: 1.15rem;
}

.emergency-info-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.emergency-info-card p {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.emergency-schedules__updated {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #475569;
}

.emergency-schedules__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.emergency-schedules__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

@media (min-width: 768px) {
  .emergency-schedules__item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.25rem;
  }
}

.emergency-schedules__item:hover {
  border-color: #fecaca;
  background: #fef2f2;
}

.emergency-schedules__item:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.emergency-schedules__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 1.05rem;
}

.emergency-schedules__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.emergency-schedules__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
}

.emergency-schedules__period {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #475569;
}

.emergency-schedules__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  grid-column: 1 / -1;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.75rem;
  background: #b91c1c;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.15s ease;
}

@media (min-width: 768px) {
  .emergency-schedules__btn {
    grid-column: auto;
    width: auto;
  }
}

.emergency-schedules__item:hover .emergency-schedules__btn {
  background: #991b1b;
}

.emergency-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .emergency-faq {
    gap: 1rem;
  }
}

.emergency-faq__item {
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  background: #fff;
  overflow: hidden;
}

.emergency-faq__question {
  margin: 0;
}

.emergency-faq__button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
}

.emergency-faq__button:hover {
  background: #f8fafc;
}

.emergency-faq__button:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: -2px;
}

.emergency-faq__question-text {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.emergency-faq__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.75rem;
}

.emergency-faq__icon-minus {
  display: none;
}

.emergency-faq__button[aria-expanded="true"] .emergency-faq__icon-plus {
  display: none;
}

.emergency-faq__button[aria-expanded="true"] .emergency-faq__icon-minus {
  display: inline-block;
}

.emergency-faq__answer {
  padding: 0 1.15rem 1.15rem;
}

.emergency-faq__answer p {
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid #f1f5f9;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.emergency-faq--ready .emergency-faq__answer[hidden] {
  display: none;
}

.emergency-back {
  margin-top: 0.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid #e2e8f0;
}

.emergency-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.emergency-back__link:hover {
  color: #0f172a;
}

.emergency-back__link:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
}

.patient-pathway .institut-pathway__marker {
  background: #b91c1c;
}

.patient-pathway .institut-pathway__step:not(:last-child)::before {
  background: rgb(185 28 28 / 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .emergency-alert__btn,
  .emergency-schedules__item,
  .emergency-schedules__btn,
  .emergency-back__link {
    transition: none;
  }
}

.patient-hero__quick-icon {
      margin-bottom: 0.5rem;
      font-size: 1.75rem;
      line-height: 1;
      color: var(--brand-red);
    }

@media (min-width: 1024px) {
      .patient-hero__quick-icon {
        font-size: 1.95rem;
      }
    }

.patient-hero__quick-icon i {
      line-height: 1;
    }

.patient-hero__quick-grid {
      margin-top: 2.5rem;
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .patient-hero__quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
      }
    }

@media (min-width: 1024px) {
      .patient-hero__quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
      }
      .patient-hero__quick-card {
        padding: 1rem 0.6rem 1.1rem;
      }
      .patient-hero__quick-card h2 {
        font-size: 0.98rem;
      }
      .patient-hero__quick-card p {
        font-size: 0.8rem;
        line-height: 1.4;
      }
      .patient-hero__quick-card .patient-hero__quick-icon {
        font-size: 1.45rem;
      }
    }

.patient-hero__quick-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.25rem 1.15rem 1.35rem;
      border-radius: 1rem;
      background: #fff;
      color: #0f172a;
      text-decoration: none;
      box-shadow: 0 4px 16px rgb(0 0 0 / 0.14);
      border: 1px solid #e2e8f0;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      scroll-margin-top: 7rem;
      min-height: 100%;
    }

.patient-hero__quick-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgb(0 0 0 / 0.2);
    }

.patient-hero__quick-card:focus-visible {
      outline: 3px solid var(--brand-red);
      outline-offset: 3px;
    }

.patient-hero__quick-card .patient-hero__quick-icon {
      margin-bottom: 0.5rem;
    }

.patient-hero__quick-card h2 {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.3;
    }

.patient-hero__quick-card p {
      margin: 0.45rem 0 0;
      font-size: 0.875rem;
      line-height: 1.45;
      color: #64748b;
    }

/* Hero: load ? slide in left ? right (Acces rapid + quick cards) */
    @keyframes patient-hero-enter-ltr {
      from {
        opacity: 0;
        transform: translateX(-2rem);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

@media (prefers-reduced-motion: no-preference) {
      html.motion-ready .patient-intro-ltr {
        animation: patient-hero-enter-ltr 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      html.motion-ready .patient-hero__quick-card:nth-child(1) {
        animation: patient-hero-enter-ltr 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.22s;
      }
      html.motion-ready .patient-hero__quick-card:nth-child(2) {
        animation: patient-hero-enter-ltr 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.36s;
      }
      html.motion-ready .patient-hero__quick-card:nth-child(3) {
        animation: patient-hero-enter-ltr 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.5s;
      }
      html.motion-ready .patient-hero__quick-card:nth-child(4) {
        animation: patient-hero-enter-ltr 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.64s;
      }
      html.motion-ready .patient-hero__quick-card:nth-child(5) {
        animation: patient-hero-enter-ltr 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.78s;
      }
    }

@media (prefers-reduced-motion: reduce) {
      html.motion-ready .patient-intro-ltr,
      html.motion-ready .patient-hero__quick-card {
        animation: none !important;
      }
    }

/* Parcurs / tips: scroll ? alternate from right vs left */
    @media (prefers-reduced-motion: no-preference) {
      html.motion-ready .parcurs-reveal--from-right > * {
        opacity: 0;
        transform: translateX(2.25rem);
        transition:
          opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
          transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
      }
      html.motion-ready .parcurs-reveal--from-right.is-inview > * {
        opacity: 1;
        transform: translateX(0);
      }
      html.motion-ready .parcurs-reveal--from-left > * {
        opacity: 0;
        transform: translateX(-2.25rem);
        transition:
          opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
          transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
      }
      html.motion-ready .parcurs-reveal--from-left.is-inview > * {
        opacity: 1;
        transform: translateX(0);
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(1) {
        transition-delay: 0.1s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(2) {
        transition-delay: 0.22s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(3) {
        transition-delay: 0.34s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(4) {
        transition-delay: 0.46s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(5) {
        transition-delay: 0.58s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(6) {
        transition-delay: 0.7s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(7) {
        transition-delay: 0.82s;
      }
      html.motion-ready .parcurs-reveal.is-inview > *:nth-child(8) {
        transition-delay: 0.94s;
      }

      html.motion-ready .parcurs-reveal-cta--from-left {
        opacity: 0;
        transform: translateX(-2.25rem);
        transition:
          opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
          transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
          background-color 0.2s ease,
          box-shadow 0.2s ease;
      }
      html.motion-ready .parcurs-reveal-cta--from-right {
        opacity: 0;
        transform: translateX(2.25rem);
        transition:
          opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
          transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
          background-color 0.2s ease,
          box-shadow 0.2s ease;
      }
      html.motion-ready .parcurs-reveal-cta.is-inview {
        opacity: 1;
        transform: translateX(0);
      }
    }

@media (prefers-reduced-motion: reduce) {
      html.motion-ready .parcurs-reveal > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      html.motion-ready .parcurs-reveal-cta,
      html.motion-ready .parcurs-reveal-cta--from-left,
      html.motion-ready .parcurs-reveal-cta--from-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

/* Informa?ii pe etape ? icons & link lists */
    .parcurs-card__icon {
      margin: 0 auto 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--brand-red);
      font-size: 2.75rem;
      line-height: 1;
    }

@media (min-width: 1024px) {
      .parcurs-card__icon {
        font-size: 3.35rem;
      }
    }

.parcurs-card__icon i {
      line-height: 1;
    }

.parcurs-card__list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

.parcurs-card__list li + li {
      margin-top: 0.65rem;
    }

.parcurs-card__list li {
      text-align: center;
    }

.parcurs-card__link {
      font-size: 0.9375rem;
      font-weight: 500;
      line-height: 1.45;
      color: #0f172a;
      text-decoration: underline;
      text-decoration-color: #94a3b8;
      text-underline-offset: 0.18em;
      text-decoration-thickness: 1px;
    }

.parcurs-card__link:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 2px;
    }

.patient-bg-slate-gradient {
      border-top: none;
      border-bottom: none;
      background: linear-gradient(
        165deg,
        #f8fafc 0%,
        #f1f5f9 42%,
        #fff 100%
      );
    }

/* ?? Contact box (legacy CMS blocks — not global footer) ?? */
    .contact-section {
      width: 100%;
      background: transparent;
      color: inherit;
      box-sizing: border-box;
      border-top: none;
      padding-top: 0;
    }

.patient-page-section.contact-section {
      padding-top: 2.5rem;
    }

.contact-section .fa-solid,
    .contact-section .fa-regular,
    .contact-section .fa-brands {
      color: inherit;
    }

.contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      box-sizing: border-box;
    }

@media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
      }
    }

.contact-col__partners {
      margin-top: 1.35rem;
      width: 100%;
      min-width: 0;
      padding-top: 0;
    }

.contact-col {
      position: relative;
      overflow: hidden;
      background: transparent;
      padding: 1.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

@media (min-width: 1024px) {
      .contact-col--a {
        min-height: 360px;
        justify-content: flex-start;
      }
      .contact-col--b {
        border-top: none;
        border-left: none;
        justify-content: flex-start;
      }
      .contact-col--b::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: min(70%, 18rem);
        min-height: 11rem;
        max-height: 20rem;
        background: rgb(255 255 255 / 0.14);
        pointer-events: none;
        z-index: 1;
      }
      .contact-col--c {
        border-top: none;
        border-left: 1px solid rgb(255 255 255 / 0.12);
      }
    }

@media (max-width: 1023px) {
      .contact-col--b,
      .contact-col--c { border-top: 1px solid rgb(255 255 255 / 0.12); }
    }

.contact-col__stack {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
    }

@media (min-width: 1024px) {
      .contact-col__stack { min-height: 0; }
    }

.contact-label {
      margin: 0 0 0.65rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: #fff;
    }

.contact-address-heading {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin: 0;
    }

.contact-address-heading strong {
      font-size: 1.0625rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
    }

.contact-address-heading i {
      color: #fff;
      font-size: 1.05rem;
    }

.contact-mail-line {
      display: flex;
      align-items: flex-start;
      gap: 0.45rem;
    }

.contact-mail-line i {
      color: #fff;
      font-size: 0.85rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

.contact-h1 {
      margin: 0;
      max-width: 28rem;
      font-size: clamp(1.35rem, 2.1vw, 1.75rem);
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -0.02em;
      color: #fff;
    }

.contact-lower { margin-top: 0; display: flex; flex-direction: column; gap: 0; }

@media (max-width: 1023px) {
      .contact-col--b > .contact-footer-box {
        padding-top: 1.25rem;
      }
    }

.contact-col-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.5rem;
    }

.contact-col--b > .contact-col-inner {
      justify-content: flex-start;
    }

.contact-col-inner--stacked {
      gap: 0;
      width: 100%;
    }

.contact-col-block {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

.contact-col-block--divider {
      margin-top: 2rem;
      padding-top: 2rem;
    }

.contact-col.contact-col--map {
      padding: 0;
      justify-content: stretch;
    }

@media (min-width: 1024px) {
      .contact-col.contact-col--map {
        min-height: 360px;
      }
    }

.contact-map-wrap {
      position: relative;
      flex: 1;
      width: 100%;
      min-height: 240px;
      margin: 0;
      overflow: hidden;
      border: none;
      border-radius: 0;
      background: transparent;
    }

@media (min-width: 1024px) {
      .contact-col.contact-col--map .contact-map-wrap {
        min-height: 0;
      }
    }

.contact-map-wrap iframe {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      border: 0;
      vertical-align: top;
    }

/* CMS-style HTML (globals.css) */
    .cms-html { color: var(--foreground); }

.cms-html :where(h1, h2, h3, h4, h5, h6) { color: var(--brand-blue); }

.cms-html :where(a) {
      color: var(--brand-red);
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

.contact-box-col1-html.cms-html { color: #f1f5f9; }

.contact-box-col1-html.cms-html > p.contact-address-heading + p {
      margin-top: 1rem;
    }

.contact-box-col1-html.cms-html .contact-mail-line {
      margin-top: 1.25rem;
    }

.contact-box-col1-html.cms-html .contact-mail-line a {
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

.contact-box-col1-html.cms-html .contact-mail-line a:hover {
      color: #e2e8f0;
    }

.contact-box-column-html.cms-html { color: #f1f5f9; }

.contact-box-column-html.cms-html :where(h1, h2, h3, h4, h5, h6) { color: #fff; }

.contact-box-column-html.cms-html :where(h2) {
      font-size: 1.5rem;
      line-height: 2rem;
      font-weight: 600;
      margin: 0;
    }

.contact-box-column-html.cms-html :where(h3) {
      font-size: 0.8125rem;
      line-height: 1.35;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      margin: 0;
    }

.contact-box-column-html.cms-html :where(p) { margin: 0; }

.contact-box-column-html.cms-html > * + * { margin-top: 1rem; }

.contact-box-column-html.cms-html > :where(h2, h3) + p { margin-top: 0.45rem; }

.contact-box-column-html.cms-html :where(a[href^="tel:"]) {
      color: #fff;
      font-size: 1.1875rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

.contact-box-column-html.cms-html :where(a[href^="tel:"])::before {
      content: "";
      display: inline-block;
      width: 0.85em;
      height: 0.85em;
      flex-shrink: 0;
      background-color: #fff;
      opacity: 0.85;
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
      mask-size: contain;
      mask-repeat: no-repeat;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
    }

.contact-box-column-html.cms-html :where(a:not([href^="tel:"])) {
      color: #fff;
    }

.contact-box-column-html.cms-html :where(a:not([href^="tel:"])):hover {
      color: #e2e8f0;
    }

/* Override global .cms-html heading/link colors inside dark contact */
    .contact-section .cms-html :where(h1, h2, h3, h4, h5, h6) {
      color: #fff;
    }

.contact-phone-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0;
      padding: 1rem 1.75rem;
      background: var(--contact-accent);
      color: #fff;
      font-size: 1.125rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }

.contact-phone-btn:hover { background: var(--contact-accent-hover); }

.contact-phone-btn svg {
      width: 1.125rem;
      height: 1.125rem;
      flex-shrink: 0;
      color: #fff;
      fill: currentColor;
    }

.news-card--featured {
      border-left: 4px solid var(--brand-red);
      box-shadow: 0 4px 18px rgb(181 48 64 / 0.1);
    }

.news-card--featured:hover {
      box-shadow: 0 6px 22px rgb(181 48 64 / 0.14);
    }

.news-card__more:focus-visible {
      outline: 2px solid var(--brand-red);
      outline-offset: 3px;
      border-radius: 2px;
    }

.partners-strip {
      width: 100%;
      border-top: 1px solid #e2e8f0;
      background: #fff;
    }

.partners-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.partners-grid > * {
      border-right: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
    }

.partners-grid > *:nth-child(2n) { border-right: none; }

@media (min-width: 768px) {
      .partners-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
      .partners-grid > * {
        border-bottom: none;
        border-right: 1px solid #e2e8f0;
      }
      .partners-grid > *:nth-child(2n) { border-right: 1px solid #e2e8f0; }
      .partners-grid > *:nth-child(5n) { border-right: none; }
    }

.partner-cell {
      display: flex;
      min-height: 150px;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

.partner-cell img {
      max-height: 6rem;
      max-width: 100%;
      object-fit: contain;
      opacity: 0.8;
    }

.partner-link {
      display: flex;
      min-height: 150px;
      flex-direction: column;
      justify-content: space-between;
      padding: 2rem;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }

.partner-link:hover { background: #f7f4ef; }

.partner-link__eyebrow {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: #7b1113;
    }

.partner-link__row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
    }

.partner-link h3 {
      margin: 0;
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1.25;
    }

.partner-link__arrow {
      font-size: 1.5rem;
      color: #7b1113;
      transition: transform 0.2s;
    }

.partner-link:hover .partner-link__arrow { transform: translateX(0.25rem); }

/* Partners block nested in contact columns: logos (A), links (B) */
    .contact-section .partners-strip {
      width: 100%;
      max-width: none;
      margin: 0;
      border: none;
      background: transparent;
    }

.contact-section .contact-col--a .partners-grid,
    .contact-section .partners-grid--partner-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem 0.75rem;
      max-width: none;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

.contact-section .contact-col--b .partners-grid,
    .contact-section .partners-grid--partner-links {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 0.5rem;
      max-width: none;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

.contact-section .partners-grid > * {
      border: none;
      border-right: none;
      border-bottom: none;
    }

.contact-section .partner-cell {
      min-height: 0;
      padding: 0.45rem 0.55rem;
    }

.contact-section .partner-cell img {
      max-height: 3.25rem;
      opacity: 0.92;
    }

.contact-section .partner-link {
      min-height: 0;
      display: flex;
      flex-direction: column;
      padding: 0.4rem 0.55rem;
      gap: 0.2rem;
      border-radius: 0.3rem;
      color: #e2e8f0;
      text-decoration: none;
      transition: background 0.15s ease;
    }

.contact-section .contact-col--b .partner-link {
      flex: 1 1 0;
      min-width: 0;
      max-width: none;
      justify-content: flex-start;
      align-items: flex-start;
      text-align: left;
    }

.contact-section .contact-col--b .partner-link__row {
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

.contact-section .partner-link__row {
      align-items: center;
      gap: 0.35rem;
    }

.contact-section .partner-link:hover {
      background: rgb(255 255 255 / 0.06);
    }

.contact-section .partner-link h3 {
      margin: 0;
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.25;
      color: #f8fafc;
      overflow-wrap: anywhere;
    }

.contact-section .partner-link__eyebrow {
      font-size: 0.5625rem;
      letter-spacing: 0.12em;
      color: #fca5a5;
    }

.contact-section .partner-link__arrow {
      font-size: 0.8rem;
      flex-shrink: 0;
      color: #fca5a5;
    }

.site-footer {
      width: 100%;
    }

.footer-mega__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3rem 1.5rem 2.5rem;
    }

@media (min-width: 1024px) {
      .footer-mega__inner {
        padding: 3.5rem 2rem 3rem;
      }
    }

.footer-mega__grid {
      display: grid;
      gap: 2.5rem 2rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .footer-mega__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

@media (min-width: 1024px) {
      .footer-mega__grid {
        grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
        gap: 2.5rem 2.5rem;
      }
    }

.footer-mega__brand {
      margin: 0;
      font-size: 1.125rem;
      font-weight: 700;
      color: #f8fafc;
      line-height: 1.35;
      letter-spacing: -0.02em;
    }

.footer-mega__text {
      margin: 1rem 0 0;
      font-size: 0.9375rem;
      line-height: 1.65;
      color: #94a3b8;
    }

.footer-mega__heading {
      margin: 0 0 1.25rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #f1f5f9;
    }

.footer-mega__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

.footer-mega__list a {
      font-size: 0.9375rem;
      font-weight: 400;
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.15s ease;
    }

.footer-mega__list a:hover {
      color: #fff;
    }

.footer-mega__list a:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
      border-radius: 2px;
    }

.footer-mega__bottom {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 1.5rem 1rem;
      border-top: 1px solid rgb(255 255 255 / 0.08);
      text-align: center;
    }

.footer-mega__bottom p {
      margin: 0;
      font-size: 0.8125rem;
      color: #94a3b8;
    }

/*
     * Root typography aligned with index2.html (system font stack, normal line-height).
     * Kept last so it overrides Tailwind Preflight (html line-height: 1.5) regardless of stylesheet order.
     */
    html {
      font-size: 16px;
      line-height: normal !important;
      -webkit-text-size-adjust: 100%;
    }

body {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
      font-size: 1rem;
      line-height: normal !important;
    }

/* Tailwind-friendly aliases (Play CDN has no theme extension) */
    .text-brand-red {
      color: #cc2e40;
    }

.text-brand-blue {
      color: var(--brand-blue);
    }

.border-brand-blue-tint {
      border-color: rgb(12 126 168 / 0.22);
    }

.bg-brand-blue-soft {
      background: var(--brand-blue-soft);
    }

.text-brand-darkred {
      color: #7b1113;
    }

.shadow-card {
      box-shadow: 0 4px 14px rgb(15 23 42 / 0.08);
    }

.shadow-soft {
      box-shadow: 0 12px 40px -16px rgb(15 23 42 / 0.15);
    }

.grid-bg {
      background-image:
        linear-gradient(to right, rgb(148 163 184 / 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(148 163 184 / 0.12) 1px, transparent 1px);
      background-size: 28px 28px;
    }

.patient-hero {
      position: relative;
      isolation: isolate;
      overflow-x: clip;
      color: #fff;
      min-height: calc(100dvh - var(--site-header-height));
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: var(--brand-red);
      background-image: url("https://www.institutulinimii.ro/fileadmin/_processed_/9/2/csm_Spitalizare_de_zi_21e136bbc2.jpg");
      background-size: cover;
      background-position: center;
    }

.patient-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: color-mix(in srgb, var(--brand-red) 82%, transparent);
      pointer-events: none;
    }

/* Large warm circle ? upper right, cropped (like reference) */
    .patient-hero__circle--1 {
      width: min(110vw, 48rem);
      height: min(110vw, 48rem);
      right: -20%;
      top: -18%;
      background: radial-gradient(
        circle at 42% 48%,
        rgb(255 140 150 / 0.55) 0%,
        rgb(220 90 100 / 0.4) 38%,
        rgb(181 48 64 / 0.22) 62%,
        transparent 72%
      );
    }

/* Mid accent ? center-right */
    .patient-hero__circle--2 {
      width: min(85vw, 36rem);
      height: min(85vw, 36rem);
      right: -8%;
      top: 28%;
      background: radial-gradient(
        circle at 35% 45%,
        rgb(255 120 132 / 0.35) 0%,
        rgb(181 48 64 / 0.28) 45%,
        transparent 65%
      );
      filter: blur(52px);
    }

/* Bottom-left soft curve */
    .patient-hero__circle--3 {
      width: min(95vw, 40rem);
      height: min(95vw, 40rem);
      left: -28%;
      bottom: -32%;
      background: radial-gradient(
        circle at 65% 32%,
        rgb(255 160 168 / 0.2) 0%,
        rgb(181 48 64 / 0.18) 48%,
        transparent 68%
      );
      filter: blur(56px);
    }

/* Small depth ? top left */
    .patient-hero__circle--4 {
      width: min(55vw, 24rem);
      height: min(55vw, 24rem);
      left: -12%;
      top: 8%;
      background: radial-gradient(
        circle at 50% 50%,
        rgb(200 70 85 / 0.2) 0%,
        transparent 55%
      );
      filter: blur(38px);
    }

/* Subpage hero ? compact banner (must follow duplicate .patient-hero above) */
    .patient-hero.patient-hero--subpage {
      min-height: auto;
      height: auto;
      justify-content: flex-start;
    }

.patient-hero.patient-hero--subpage .patient-hero__inner {
      padding-top: 1.25rem;
      padding-bottom: 1.5rem;
    }

@media (min-width: 768px) {
      .patient-hero.patient-hero--subpage .patient-hero__inner {
        padding-top: 1.5rem;
        padding-bottom: 1.75rem;
      }
    }

.patient-hero.patient-hero--subpage .patient-hero__circles {
      opacity: 0.55;
    }

/* ?? Institut page hero (brand blue column, like homepage) ?? */
    .institut-hero {
      position: relative;
      isolation: isolate;
      overflow-x: clip;
      color: #fff;
      min-height: calc(100dvh - var(--site-header-height));
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: var(--brand-blue);
    }

.institut-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        105deg,
        color-mix(in srgb, var(--brand-blue) 58%, transparent) 0%,
        color-mix(in srgb, var(--brand-blue) 38%, transparent) 40%,
        color-mix(in srgb, var(--brand-blue) 14%, transparent) 100%
      );
      pointer-events: none;
    }

.institut-hero__media {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-color: var(--brand-blue);
      background-image: url("https://www.institutulinimii.ro/fileadmin/user_upload/slideshow/Sala_Cardio3_2022.JPG");
      background-size: cover;
      background-position: center right;
    }

.institut-hero__inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 80rem;
      margin-left: auto;
      margin-right: auto;
      padding: 2rem 1rem 3rem;
    }

@media (min-width: 640px) {
      .institut-hero__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

@media (min-width: 1024px) {
      .institut-hero__inner {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

.institut-hero__quick-grid {
      margin-top: 2.5rem;
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .institut-hero__quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
      }
    }

@media (min-width: 1024px) {
      .institut-hero__quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
      }
    }

@media (min-width: 1280px) {
      .institut-hero__quick-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }

.institut-hero__quick-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.25rem 1rem 1.35rem;
      border-radius: 1rem;
      background: #fff;
      color: #0f172a;
      text-decoration: none;
      box-shadow: 0 4px 16px rgb(0 0 0 / 0.08);
      border: 1px solid #e2e8f0;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      scroll-margin-top: 7rem;
      min-height: 100%;
    }

.institut-hero__quick-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgb(0 0 0 / 0.12);
      border-color: rgb(12 126 168 / 0.4);
    }

.institut-hero__quick-card.institut-reveal:not(.institut-reveal--in):hover {
      transform: translate(-3.25rem, -4px);
    }

.institut-hero__quick-card:focus-visible {
      outline: 3px solid var(--brand-blue);
      outline-offset: 3px;
    }

.institut-hero__quick-icon {
      margin-bottom: 0.6rem;
      font-size: 1.75rem;
      line-height: 1;
      color: var(--brand-blue);
    }

.institut-hero__quick-card h2 {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.3;
    }

@media (min-width: 1024px) {
      .institut-hero__quick-card h2 {
        font-size: 0.98rem;
      }
    }

.institut-hero__quick-desc {
      margin: 0.5rem 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: #64748b;
      font-weight: 400;
    }

.institut-hero.institut-hero--subpage {
      min-height: auto;
      height: auto;
      justify-content: flex-start;
    }

.institut-hero.institut-hero--subpage .institut-hero__inner {
      padding-top: 1.25rem;
      padding-bottom: 1.5rem;
    }

@media (min-width: 768px) {
      .institut-hero.institut-hero--subpage .institut-hero__inner {
        padding-top: 1.5rem;
        padding-bottom: 1.75rem;
      }
    }

.institut-values-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 768px) {
      .institut-values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

.institut-value-card {
      border-radius: 1.5rem;
      border: 1px solid rgb(12 126 168 / 0.25);
      background: #fff;
      padding: 1.75rem 1.5rem;
      box-shadow: 0 2px 12px rgb(15 23 42 / 0.04);
      height: 100%;
    }

.institut-value-card__icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.875rem;
      background: var(--brand-blue-soft);
      color: var(--brand-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 1rem;
    }

.institut-value-card h3 {
      margin: 0 0 0.75rem;
      font-size: 1.125rem;
      font-weight: 800;
      color: #0f172a;
    }

.institut-value-card p,
    .institut-value-card ul {
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
      color: #475569;
    }

.institut-value-card ul {
      padding-left: 1.15rem;
      list-style: disc;
    }

.institut-value-card li + li {
      margin-top: 0.5rem;
    }

/* ?? Scroll / load reveal (institut page) ?? */
    .institut-reveal {
      opacity: 0;
      transform: translateX(-3.25rem);
      transition:
        opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--institut-reveal-delay, 0ms);
    }

.institut-reveal--from-right {
      transform: translateX(3.25rem);
    }

.institut-reveal--in {
      opacity: 1;
      transform: translateX(0);
    }

.institut-reveal-stagger > .institut-reveal:nth-child(1) {
      --institut-reveal-delay: 0s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(2) {
      --institut-reveal-delay: 0.15s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(3) {
      --institut-reveal-delay: 0.3s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(4) {
      --institut-reveal-delay: 0.45s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(5) {
      --institut-reveal-delay: 0.6s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(6) {
      --institut-reveal-delay: 0.75s;
    }

.institut-istoric-intro .institut-reveal:nth-child(1) {
      --institut-reveal-delay: 0s;
    }

.institut-istoric-intro .institut-reveal:nth-child(2) {
      --institut-reveal-delay: 0.18s;
    }

.institut-istoric-intro .institut-reveal:nth-child(3) {
      --institut-reveal-delay: 0.34s;
    }

@media (prefers-reduced-motion: reduce) {
      .institut-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        --institut-reveal-delay: 0ms !important;
      }
    }

/* Box titles in medical-structure sections (blue, not red/wine) */
    #laboratoare .grid.gap-4 h3.font-black,
    #ambulatoriu article h3.text-xl {
      color: var(--brand-blue);
    }

.institut-section-block {
      border-radius: 1.5rem;
      border: 1px solid #e2e8f0;
      background: #fff;
      padding: 1.75rem;
      margin-bottom: 1.25rem;
      box-shadow: 0 1px 3px rgb(15 23 42 / 0.05);
    }

.institut-section-block:last-child {
      margin-bottom: 0;
    }

.institut-section-block h3 {
      margin: 0 0 0.75rem;
      font-size: 1.125rem;
      font-weight: 800;
      color: var(--brand-blue);
    }

.institut-section-block p {
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.65;
      color: #475569;
    }

.institut-section-block p + p {
      margin-top: 0.85rem;
    }

.institut-link-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
    }

.institut-link-pills a {
      display: inline-flex;
      align-items: center;
      padding: 0.55rem 1rem;
      border-radius: 9999px;
      background: var(--brand-blue-soft);
      color: var(--brand-blue);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid rgb(12 126 168 / 0.28);
      transition: background 0.15s ease, color 0.15s ease;
    }

.institut-link-pills a:hover {
      background: rgb(12 126 168 / 0.12);
      color: var(--brand-blue-hover);
    }

.institut-counters {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .institut-counters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

@media (min-width: 1024px) {
      .institut-counters {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

.institut-counter {
      text-align: center;
      padding: 1.75rem 1.25rem;
      border-radius: 1.25rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 2px 8px rgb(15 23 42 / 0.05);
    }

.institut-counter__value {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--brand-blue);
      line-height: 1.1;
    }

.institut-counter__label {
      margin-top: 0.65rem;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #64748b;
      line-height: 1.45;
    }

#statistici,
#cardio-ii-capacitate,
#cardio-iii-capacitate,
#chirurgie-capacitate,
#ati-capacitate,
#analize-capacitate,
#cateterism-capacitate,
#nucleara-capacitate,
#radiologie-capacitate,
#anatomie-capacitate,
#electro-capacitate,
#micro-capacitate,
#cpu-capacitate,
#amb-capacitate,
#spital-zi-capacitate,
#inovatie-capacitate,
#proiecte-capacitate,
#cercetare-capacitate {
      background: var(--brand-blue);
      color: #fff;
    }

#statistici .institut-counter,
#cardio-ii-capacitate .institut-counter,
#cardio-iii-capacitate .institut-counter,
#chirurgie-capacitate .institut-counter,
#ati-capacitate .institut-counter,
#analize-capacitate .institut-counter,
#cateterism-capacitate .institut-counter,
#nucleara-capacitate .institut-counter,
#radiologie-capacitate .institut-counter,
#anatomie-capacitate .institut-counter,
#electro-capacitate .institut-counter,
#micro-capacitate .institut-counter,
#cpu-capacitate .institut-counter,
#amb-capacitate .institut-counter,
#spital-zi-capacitate .institut-counter,
#inovatie-capacitate .institut-counter,
#proiecte-capacitate .institut-counter,
#cercetare-capacitate .institut-counter {
      padding: 1.25rem 0.75rem;
      border-radius: 0;
      background: transparent;
      border: none;
      box-shadow: none;
    }

#statistici .institut-counter__value,
#cardio-ii-capacitate .institut-counter__value,
#cardio-iii-capacitate .institut-counter__value,
#chirurgie-capacitate .institut-counter__value,
#ati-capacitate .institut-counter__value,
#analize-capacitate .institut-counter__value,
#cateterism-capacitate .institut-counter__value,
#nucleara-capacitate .institut-counter__value,
#radiologie-capacitate .institut-counter__value,
#anatomie-capacitate .institut-counter__value,
#electro-capacitate .institut-counter__value,
#micro-capacitate .institut-counter__value,
#cpu-capacitate .institut-counter__value,
#amb-capacitate .institut-counter__value,
#spital-zi-capacitate .institut-counter__value,
#inovatie-capacitate .institut-counter__value,
#proiecte-capacitate .institut-counter__value,
#cercetare-capacitate .institut-counter__value {
      color: #fff;
    }

#statistici .institut-counter__label,
#cardio-ii-capacitate .institut-counter__label,
#cardio-iii-capacitate .institut-counter__label,
#chirurgie-capacitate .institut-counter__label,
#ati-capacitate .institut-counter__label,
#analize-capacitate .institut-counter__label,
#cateterism-capacitate .institut-counter__label,
#nucleara-capacitate .institut-counter__label,
#radiologie-capacitate .institut-counter__label,
#anatomie-capacitate .institut-counter__label,
#electro-capacitate .institut-counter__label,
#micro-capacitate .institut-counter__label,
#cpu-capacitate .institut-counter__label,
#amb-capacitate .institut-counter__label,
#spital-zi-capacitate .institut-counter__label,
#inovatie-capacitate .institut-counter__label,
#proiecte-capacitate .institut-counter__label,
#cercetare-capacitate .institut-counter__label {
      color: rgb(248 250 252 / 0.85);
    }

/* Informa?ii pe etape ? icons & link lists */
    .parcurs-card__icon {
      margin: 0 auto 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--brand-blue);
      font-size: 2.75rem;
      line-height: 1;
    }

.parcurs-card__link:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 2px;
    }

/* ?? Scroll reveal (research & EU projects cards) ?? */
    .scroll-reveal .scroll-reveal__item {
      opacity: 0;
      transform: translateX(3rem);
      transition:
        opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
    }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(2) { transition-delay: 130ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(3) { transition-delay: 260ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(4) { transition-delay: 390ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(5) { transition-delay: 520ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(6) { transition-delay: 650ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(7) { transition-delay: 780ms; }

.scroll-reveal.scroll-reveal--inview .scroll-reveal__item:nth-child(8) { transition-delay: 910ms; }

.scroll-reveal .scroll-reveal__item.research-gateway__card,
    .scroll-reveal .scroll-reveal__item.eu-projects__card {
      transition:
        opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s ease;
    }

/* ?? Proiecte europene (gateway) ?? */
    .eu-projects {
      width: 100%;
      background: linear-gradient(
        165deg,
        #f8fafc 0%,
        #f1f5f9 42%,
        #fff 100%
      );
      border-top: none;
      border-bottom: none;
    }

.eu-projects__eyebrow {
      margin: 0 0 0.65rem;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--brand-blue);
    }

.eu-projects__title {
      margin: 0 0 0.85rem;
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: var(--brand-blue);
    }

.eu-projects__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.35rem;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      background: transparent;
      color: var(--brand-blue);
      border: 2px solid var(--brand-blue);
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

.eu-projects__btn:hover {
      background: var(--brand-blue-soft);
      border-color: var(--brand-blue-hover);
      color: var(--brand-blue-hover);
    }

.eu-projects__btn:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
    }

.eu-projects__card:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
    }

.eu-projects__card-icon {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background: color-mix(in srgb, var(--brand-blue) 14%, transparent);
      color: var(--brand-blue);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

.eu-projects__card h3 {
      margin: 0;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--brand-blue);
      line-height: 1.3;
    }

/* ?? Cercetare ?? */
    .research-gateway {
      width: 100%;
      background: #fff;
    }

.research-gateway__label {
      margin: 0 0 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-blue);
    }

.research-gateway__title {
      margin: 0 0 1rem;
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: var(--brand-blue);
    }

.research-gateway__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.35rem;
      border-radius: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      background: var(--brand-blue);
      color: #fff;
      border: 1px solid var(--brand-blue);
      transition: background 0.15s ease, border-color 0.15s ease;
    }

.research-gateway__btn:hover {
      background: var(--brand-blue-hover);
      border-color: var(--brand-blue-hover);
      color: #fff;
    }

.research-gateway__btn:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
    }

.research-gateway__card:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
    }

.research-gateway__icon {
      margin-bottom: 0.65rem;
      font-size: 1.75rem;
      line-height: 1;
      color: var(--brand-blue);
    }

.research-gateway__card h3 {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--brand-blue);
    }

.news-intro-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--brand-blue);
    }

.news-card--featured {
      border-left: 4px solid var(--brand-blue);
      box-shadow: 0 4px 18px rgb(12 126 168 / 0.12);
    }

.news-card--featured:hover {
      box-shadow: 0 6px 22px rgb(12 126 168 / 0.18);
    }

.news-pill--red { background: var(--brand-blue-soft); color: var(--brand-blue); }

.news-card__more {
      display: inline-flex;
      margin-top: 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--brand-blue);
      text-decoration: none;
    }

.news-card__more:hover { color: var(--brand-blue-hover); }

.news-card__more:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
      border-radius: 2px;
    }

.scroll-reveal .scroll-reveal__item {
        opacity: 1 !important;
        transform: none !important;
      }

body.page-administratie {
      --background: #ffffff;
      --foreground: #171717;
      --brand-red: #cc2e40;
      --brand-red-hover: #a82534;
      --brand-blue: #1e293b;
      --brand-blue-hover: #0f172a;
      --brand-black: #020617;
      --brand-blue-soft: #e2e8f0;
      --nav-admin-color: #1e293b;
      --nav-admin-soft: #f1f5f9;
      --site-header-height: 5rem;
      --header-accent: #cc2e40;
      --header-accent-soft: #fce8eb;
      --nav-hover-bg: #f1f5f9;
      --section-tint-bg: #f8fafc;
      --contact-accent: #7b1113;
      --contact-accent-hover: #8d171a;
    }

body.page-administratie .border-brand-blue-tint {
      border-color: rgb(30 41 59 / 0.18);
    }

/* ?? Administra?ie page hero (photo + dark overlay) ?? */
    body.page-administratie .institut-hero {
      position: relative;
      isolation: isolate;
      overflow-x: clip;
      color: #fff;
      min-height: calc(100dvh - var(--site-header-height));
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #0f172a;
    }

body.page-administratie .institut-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        105deg,
        rgb(15 23 42 / 0.78) 0%,
        rgb(15 23 42 / 0.52) 42%,
        rgb(15 23 42 / 0.28) 100%
      );
      pointer-events: none;
    }

body.page-administratie .institut-hero__media {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-color: #1e293b;
      background-image: url("https://www.institutulinimii.ro/fileadmin/user_upload/Imagini_slideshow_homepage/Cardiologie-2.png");
      background-size: cover;
      background-position: center center;
    }

body.page-administratie .institut-value-card {
      border-radius: 1.5rem;
      border: 1px solid rgb(30 41 59 / 0.2);
      background: #fff;
      padding: 1.75rem 1.5rem;
      box-shadow: 0 2px 12px rgb(15 23 42 / 0.04);
      height: 100%;
    }

/* ?? Administra?ie: raport?ri (two-column, gray accents) ?? */
    .admin-raportari {
      box-sizing: border-box;
    }

.admin-raportari__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 4rem 1rem 4.5rem;
    }

@media (min-width: 640px) {
      .admin-raportari__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

@media (min-width: 1024px) {
      .admin-raportari__inner {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

.admin-raportari__grid {
      display: grid;
      gap: 2.5rem 3rem;
      align-items: start;
      grid-template-columns: 1fr;
    }

@media (min-width: 1024px) {
      .admin-raportari__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 3rem 4rem;
      }
    }

.admin-raportari__label {
      margin: 0 0 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #64748b;
    }

.admin-raportari__title {
      margin: 0;
      font-size: clamp(1.875rem, 3.2vw, 2.75rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.12;
      color: #0f172a;
    }

.admin-raportari__lead {
      margin: 1.25rem 0 0;
      max-width: 34rem;
      font-size: 1rem;
      line-height: 1.65;
      color: #475569;
    }

.admin-raportari__callout {
      margin-top: 2rem;
      padding: 1.35rem 1.5rem;
      border-radius: 1.25rem;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
    }

.admin-raportari__callout-title {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.35;
      color: #334155;
    }

.admin-raportari__callout-text {
      margin: 0.5rem 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: #64748b;
      font-weight: 400;
    }

.admin-raportari__cards {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.admin-raportari__card {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.35rem 1.35rem 1.4rem;
      border-radius: 1.5rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
    }

.admin-raportari__num {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 2.75rem;
      padding: 0.5rem 0.45rem;
      border-radius: 0.65rem;
      border: 1px solid #cbd5e1;
      background: #f8fafc;
      font-size: 0.8125rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.02em;
      color: #475569;
    }

.admin-raportari__card h3 {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.3;
      color: #0f172a;
    }

.admin-raportari__card p {
      margin: 0.5rem 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: #64748b;
      font-weight: 400;
    }

/* ?? Administra?ie: calitate (grid bg, three cards, gray accents) ?? */
    .admin-calitate {
      box-sizing: border-box;
    }

.admin-calitate__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 4rem 1rem 4.5rem;
    }

@media (min-width: 640px) {
      .admin-calitate__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

@media (min-width: 1024px) {
      .admin-calitate__inner {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

.admin-calitate__header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 2.75rem;
    }

.admin-calitate__label {
      margin: 0 0 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #64748b;
    }

.admin-calitate__title {
      margin: 0;
      font-size: clamp(1.875rem, 3.2vw, 2.75rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.12;
      color: #0f172a;
    }

.admin-calitate__lead {
      margin: 1.25rem 0 0;
      font-size: 1rem;
      line-height: 1.65;
      color: #475569;
    }

.admin-calitate__grid {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 640px) {
      .admin-calitate__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

@media (min-width: 1024px) {
      .admin-calitate__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
      }
    }

.admin-calitate__card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      min-height: 100%;
      padding: 1.5rem 1.5rem 1.45rem;
      border-radius: 1.5rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
    }

.admin-calitate__badge {
      display: inline-block;
      margin-bottom: 1rem;
      padding: 0.35rem 0.55rem;
      border-radius: 0.5rem;
      border: 1px solid #cbd5e1;
      background: #f1f5f9;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1;
      text-transform: uppercase;
      color: #334155;
    }

.admin-calitate__card h3 {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.3;
      color: #0f172a;
    }

.admin-calitate__card p {
      margin: 0.5rem 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: #64748b;
      font-weight: 400;
      flex: 1 1 auto;
    }

.admin-calitate__link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: auto;
      padding-top: 1.25rem;
      font-size: 0.8125rem;
      font-weight: 700;
      line-height: 1.3;
      color: #334155;
      text-decoration: none;
      transition: color 0.15s ease;
    }

.admin-calitate__link:hover {
      color: #0f172a;
    }

.admin-calitate__link:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
      border-radius: 2px;
    }

/* ?? Administra?ie: carier? (dark panel + light cards, gray accents) ?? */
    .admin-cariera {
      box-sizing: border-box;
      background: #fff;
    }

.admin-cariera__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 4rem 1rem 4.5rem;
    }

@media (min-width: 640px) {
      .admin-cariera__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

@media (min-width: 1024px) {
      .admin-cariera__inner {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

.admin-cariera__grid {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
      align-items: stretch;
    }

@media (min-width: 1024px) {
      .admin-cariera__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 1.5rem;
      }
    }

.admin-cariera__panel {
      position: relative;
      isolation: isolate;
      border-radius: 1.25rem;
      padding: 2rem 1.75rem 2.35rem;
      color: #f8fafc;
      background: #0f172a;
      overflow: hidden;
    }

.admin-cariera__panel::after {
      content: "";
      position: absolute;
      top: -22%;
      right: -18%;
      width: 70%;
      height: 70%;
      border-radius: 50%;
      background: radial-gradient(circle, rgb(148 163 184 / 0.2) 0%, transparent 68%);
      pointer-events: none;
      z-index: 0;
    }

.admin-cariera__panel-inner {
      position: relative;
      z-index: 1;
    }

.admin-cariera__label {
      margin: 0 0 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #94a3b8;
    }

.admin-cariera__title {
      margin: 0;
      font-size: clamp(1.5rem, 2.6vw, 2.125rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: #fff;
    }

.admin-cariera__lead {
      margin: 1.15rem 0 0;
      font-size: 0.9375rem;
      line-height: 1.6;
      color: rgb(248 250 252 / 0.88);
    }

.admin-cariera__steps {
      margin: 1.85rem 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

.admin-cariera__step {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

.admin-cariera__step-num {
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8125rem;
      font-weight: 700;
      line-height: 1;
      background: rgb(51 65 85 / 0.9);
      color: #e2e8f0;
      border: 1px solid rgb(148 163 184 / 0.35);
    }

.admin-cariera__step-body h3 {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.3;
      color: #f1f5f9;
    }

.admin-cariera__step-body p {
      margin: 0.35rem 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      font-weight: 400;
      color: rgb(226 232 240 / 0.82);
    }

.admin-cariera__cards {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.admin-cariera__card {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.35rem 1.35rem 1.4rem;
      border-radius: 1.25rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
    }

.admin-cariera__card--tint {
      background: #f1f5f9;
      border-color: #e2e8f0;
    }

.admin-cariera__num {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 2.75rem;
      min-height: 2.75rem;
      padding: 0.5rem;
      border-radius: 0.65rem;
      border: 1px solid #cbd5e1;
      background: #f1f5f9;
      font-size: 0.8125rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.02em;
      color: #475569;
    }

.admin-cariera__card h3 {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.3;
      color: #0f172a;
    }

.admin-cariera__card p {
      margin: 0.5rem 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: #64748b;
      font-weight: 400;
    }

.admin-cariera__card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      min-height: 2.75rem;
      margin-top: 0.65rem;
      color: #1e293b;
      font-size: 0.8125rem;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

.admin-cariera__card-link:hover {
      color: #0f172a;
    }

.admin-cariera__card-link:focus-visible {
      outline: 2px solid #1e293b;
      outline-offset: 3px;
      border-radius: 2px;
    }

/* ?? Administra?ie: achizi?ii (dark) ?? */
    .admin-achizitii {
      width: 100%;
      background: #0a0e1a;
      color: #f8fafc;
      box-sizing: border-box;
      border-top: 1px solid rgb(255 255 255 / 0.08);
    }

.admin-achizitii__inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3.5rem 1rem 4rem;
    }

@media (min-width: 640px) {
      .admin-achizitii__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

@media (min-width: 1024px) {
      .admin-achizitii__inner {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

.admin-achizitii__label {
      margin: 0 0 1rem;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #fca5a5;
    }

.admin-achizitii__title {
      margin: 0;
      max-width: 40rem;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: #fff;
    }

.admin-achizitii__lead {
      margin: 1.25rem 0 0;
      max-width: 48rem;
      font-size: 1.0625rem;
      line-height: 1.6;
      color: rgb(248 250 252 / 0.88);
    }

.admin-achizitii__grid {
      margin-top: 2.5rem;
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

@media (min-width: 768px) {
      .admin-achizitii__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
      }
    }

.admin-achizitii__card {
      border-radius: 1rem;
      border: 1px solid rgb(255 255 255 / 0.12);
      background: rgb(255 255 255 / 0.04);
      padding: 1.5rem 1.35rem;
      min-height: 100%;
      color: inherit;
      text-decoration: none;
      display: block;
      transition: border-color 0.15s ease, background-color 0.15s ease;
    }

a.admin-achizitii__card:hover {
      border-color: rgb(255 255 255 / 0.28);
      background: rgb(255 255 255 / 0.08);
    }

a.admin-achizitii__card:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 3px;
    }

.admin-achizitii__card h3 {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 800;
      line-height: 1.3;
      color: #fff;
    }

.admin-achizitii__card p {
      margin: 0.65rem 0 0;
      font-size: 0.9375rem;
      line-height: 1.55;
      color: rgb(226 232 240 / 0.9);
    }

.institut-reveal-stagger > .institut-reveal:nth-child(7) {
      --institut-reveal-delay: 0.9s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(8) {
      --institut-reveal-delay: 1.05s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(9) {
      --institut-reveal-delay: 1.2s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(10) {
      --institut-reveal-delay: 1.35s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(11) {
      --institut-reveal-delay: 1.5s;
    }

.institut-reveal-stagger > .institut-reveal:nth-child(12) {
      --institut-reveal-delay: 1.65s;
    }

.institut-link-pills a {
      display: inline-flex;
      align-items: center;
      padding: 0.55rem 1rem;
      border-radius: 9999px;
      background: var(--brand-blue-soft);
      color: var(--brand-blue);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid rgb(30 41 59 / 0.22);
      transition: background 0.15s ease, color 0.15s ease;
    }

.institut-link-pills a:hover {
      background: rgb(30 41 59 / 0.1);
      color: var(--brand-blue-hover);
    }

.news-card--featured {
      border-left: 4px solid var(--brand-blue);
      box-shadow: 0 4px 18px rgb(30 41 59 / 0.1);
    }

.news-card--featured:hover {
      box-shadow: 0 6px 22px rgb(30 41 59 / 0.15);
    }

/* Fallback when JavaScript is disabled */
html:not(.js-enabled) .scroll-reveal .scroll-reveal__item,
html:not(.js-enabled) .parcurs-reveal > *,
html:not(.js-enabled) .parcurs-reveal-cta {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ?? Institut team member cards (subpages) ?? */
.institut-team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .institut-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .institut-team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.institut-team-card {
  --institut-team-blue: #0c7ea8;
  --institut-team-blue-soft: #e6f4f9;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgb(12 126 168 / 0.2);
  background: #fff;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.institut-team-card:hover {
  transform: translateY(-4px);
  border-color: rgb(12 126 168 / 0.38);
  box-shadow: 0 14px 32px rgb(12 126 168 / 0.12);
}

.institut-team-card__photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #e6f4f9 100%);
  border-bottom: 1px solid rgb(12 126 168 / 0.12);
}

.institut-team-card__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3rem;
  background: linear-gradient(to top, rgb(255 255 255 / 0.65), transparent);
  pointer-events: none;
}

.institut-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.institut-team-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.25rem 1.35rem;
}

.institut-team-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--institut-team-blue);
}

.institut-team-card__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin: 0.35rem 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--institut-team-blue-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  color: var(--institut-team-blue);
}

.institut-team-card__bio {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
}

/* ?? Institut subpage: service highlights, patient info, CTA ?? */
.institut-service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgb(12 126 168 / 0.18);
  background: #fff;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
}

.institut-service-card:not(.institut-service-card--rich) {
  align-items: center;
}

.institut-service-card:not(.institut-service-card--rich) .institut-service-card__title {
  margin-top: 0;
}

.institut-service-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.1rem;
  line-height: 1;
}

.institut-service-card__title {
  margin: 0.15rem 0 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
}

.institut-service-card--rich {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.institut-service-card--rich .institut-service-card__title {
  margin-top: 0.85rem;
}

.institut-service-card__desc {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.institut-details {
  margin-top: 2rem;
  border-radius: 1.15rem;
  border: 1px solid rgb(12 126 168 / 0.2);
  background: #f8fafc;
  overflow: hidden;
}

.institut-details > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.15s ease;
}

.institut-details > summary::-webkit-details-marker {
  display: none;
}

.institut-details > summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand-blue);
}

.institut-details[open] > summary::after {
  content: "?";
}

.institut-details > summary:hover {
  background: rgb(12 126 168 / 0.06);
}

.institut-details > summary:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: -2px;
}

.institut-details__content {
  padding: 1.15rem 1.35rem 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #475569;
  border-top: 1px solid rgb(12 126 168 / 0.12);
}

.institut-details__content > :first-child {
  margin-top: 0;
}

.institut-details__content p + p,
.institut-details__content ul {
  margin-top: 1rem;
}

.institut-details__content ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.institut-structura-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .institut-structura-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.institut-structura-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.65rem;
  border-radius: 1.6rem;
  border: 1px solid rgb(12 126 168 / 0.2);
  background: #fff;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
}

.institut-structura-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.institut-structura-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.35rem;
}

.institut-structura-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brand-blue);
}

.institut-structura-card__meta {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.institut-structura-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.institut-structura-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.institut-structura-card__list li i {
  margin-top: 0.2rem;
  color: var(--brand-blue);
  font-size: 0.75rem;
}

.institut-patient-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-patient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.institut-patient-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.4rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(12 126 168 / 0.18);
  background: #fff;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
}

.institut-patient-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.institut-patient-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--brand-blue);
}

.institut-patient-card__body {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #475569;
}

.institut-patient-card__body p + p {
  margin-top: 0.5rem;
}

.institut-patient-card__body a {
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
}

.institut-patient-card__body a:hover {
  text-decoration: underline;
}

.institut-patient-card__body a:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.institut-patient-card__actions {
  margin-top: 1.1rem;
}

.institut-team-card--featured {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-bottom: 0.5rem;
  border-width: 2px;
  border-color: rgb(12 126 168 / 0.35);
  box-shadow: 0 8px 24px rgb(12 126 168 / 0.12);
}

@media (min-width: 640px) {
  .institut-team-card--featured {
    grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  }

  .institut-team-card--featured .institut-team-card__photo {
    aspect-ratio: auto;
    min-height: 100%;
    border-bottom: none;
    border-right: 1px solid rgb(12 126 168 / 0.12);
  }

  .institut-team-card--featured .institut-team-card__body {
    justify-content: center;
    padding: 1.5rem 1.65rem;
  }

  .institut-team-card--featured .institut-team-card__name {
    font-size: 1.2rem;
  }
}

.institut-cta-band {
  padding: 3rem 1.5rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, var(--brand-blue-soft) 0%, #fff 55%);
  border: 1px solid rgb(12 126 168 / 0.22);
  text-align: center;
}

.institut-cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
}

.institut-cta-band p {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.institut-cta-band__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.institut-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.institut-btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.institut-btn--primary {
  background: var(--brand-blue);
  color: #fff;
  border: 2px solid var(--brand-blue);
}

.institut-btn--primary:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
}

.institut-btn--secondary {
  background: #fff;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}

.institut-btn--secondary:hover {
  background: var(--brand-blue-soft);
}

.institut-topic-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-topic-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgb(12 126 168 / 0.16);
  background: #fff;
  box-shadow: 0 1px 6px rgb(15 23 42 / 0.04);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #334155;
}

.institut-topic-chip i {
  flex-shrink: 0;
  color: var(--brand-blue);
  font-size: 0.8rem;
}

.institut-equipment-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.institut-equipment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.4rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(12 126 168 / 0.2);
  background: #fff;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
}

.institut-equipment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
  border-radius: 0.85rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.15rem;
}

.institut-equipment-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--brand-blue);
}

.institut-equipment-card__model {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.institut-equipment-card p {
  margin: 0.75rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.institut-activity-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .institut-activity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-activity-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.institut-activity-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid rgb(12 126 168 / 0.16);
  background: #f8fafc;
}

.institut-activity-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-activity-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.institut-activity-card p {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.institut-stat-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .institut-stat-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.institut-stat-card {
  padding: 1.65rem 1.25rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
  text-align: center;
}

.institut-stat-card__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--brand-blue);
}

.institut-stat-card__label {
  margin-top: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #475569;
}

.institut-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-highlight-band {
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgb(12 126 168 / 0.22);
  background: linear-gradient(135deg, var(--brand-blue-soft) 0%, #fff 70%);
}

.institut-highlight-band h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--brand-blue);
}

.institut-highlight-band > p {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.institut-icon-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .institut-icon-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-icon-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .institut-icon-steps--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-icon-step {
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgb(12 126 168 / 0.14);
  text-align: center;
}

.institut-icon-step i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-icon-step span {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}

.institut-symptom-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-symptom-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgb(12 126 168 / 0.16);
  background: #fff;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.04);
}

.institut-symptom-card i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--brand-blue);
}

.institut-symptom-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
}

.institut-pathway {
  display: grid;
  gap: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.institut-pathway__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 0 1.75rem 0;
}

.institut-pathway__step:last-child {
  padding-bottom: 0;
}

.institut-pathway__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: rgb(12 126 168 / 0.25);
}

.institut-pathway__marker {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 1;
}

.institut-pathway__body {
  flex: 1;
  padding-top: 0.35rem;
}

.institut-pathway__body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.institut-pathway__body p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.institut-why-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institut-why-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.institut-why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(12 126 168 / 0.14);
  background: #fff;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.06);
}

.institut-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-why-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.institut-why-card p {
  margin: 0.65rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.institut-stat-breakdown {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 56rem;
  margin: 2.5rem auto 0;
}

@media (min-width: 1024px) {
  .institut-stat-breakdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.institut-stat-breakdown__item {
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.22);
  text-align: center;
}

.institut-stat-breakdown__value {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.institut-stat-breakdown__label {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(255 255 255 / 0.88);
}

.institut-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
  margin-inline: auto;
}

.institut-faq .institut-details {
  margin: 0;
}

.institut-journey-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .institut-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-journey-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(12 126 168 / 0.14);
  background: #fff;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.06);
}

.institut-journey-card__phase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-journey-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.institut-journey-card p {
  margin: 0.65rem 0 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

/* ?? European projects page ?? */
.institut-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.institut-filter-tabs__btn {
  cursor: pointer;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgb(12 126 168 / 0.25);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.institut-filter-tabs__btn:hover {
  border-color: rgb(12 126 168 / 0.45);
  background: var(--brand-blue-soft);
}

.institut-filter-tabs__btn.is-active {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

.institut-filter-tabs__btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.institut-project-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .institut-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.institut-project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.65rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgb(12 126 168 / 0.18);
  background: #fff;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
}

.institut-project-card__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.institut-project-card__status--current {
  background: #dcfce7;
  color: #166534;
}

.institut-project-card__status--completed {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.institut-project-card__status--archived {
  background: #f1f5f9;
  color: #64748b;
}

.institut-project-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--brand-blue);
}

.institut-project-card__programme {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #64748b;
}

.institut-project-card__objective {
  margin: 1rem 0 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

.institut-project-card__meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(12 126 168 / 0.12);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.institut-project-card__meta strong {
  color: #334155;
}

.institut-project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.institut-project-card__actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgb(12 126 168 / 0.22);
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.institut-project-card__actions a:hover {
  background: var(--brand-blue-soft);
  border-color: rgb(12 126 168 / 0.38);
}

.institut-project-card__actions a:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.institut-project-card.is-hidden {
  display: none;
}

.institut-timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.institut-timeline__year {
  padding: 1.35rem 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(12 126 168 / 0.16);
  background: #fff;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
}

.institut-timeline__year-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.institut-timeline__year ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.institut-timeline__year li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.institut-partner-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-partner-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgb(12 126 168 / 0.16);
  background: #fff;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
}

.institut-partner-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-partner-card__body h4 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}

.institut-partner-card__body p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.institut-doc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .institut-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .institut-doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.institut-doc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgb(12 126 168 / 0.18);
  background: #fff;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

a.institut-doc-card:hover {
  transform: translateY(-2px);
  border-color: rgb(12 126 168 / 0.35);
  box-shadow: 0 8px 20px rgb(12 126 168 / 0.1);
}

a.institut-doc-card:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.institut-doc-card--static {
  cursor: default;
}

.institut-doc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.75rem;
  border-radius: 0.7rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1rem;
}

.institut-doc-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}

.institut-doc-card p {
  margin: 0.45rem 0 0;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.institut-doc-card__meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* ==========================================================================
   Services & fees page (pacienti/servicii-tarife.php)
   ========================================================================== */

.services-fees-page {
  --services-fees-red: #b91c1c;
  --services-fees-red-soft: #fef2f2;
  --services-fees-text: #0f172a;
  --services-fees-muted: #475569;
  --services-fees-border: #e2e8f0;
  --table-row-alt: #f8fafc;
  color: var(--services-fees-text);
}

.services-fees-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.services-fees-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .services-fees-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.services-fees-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.services-fees-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.services-fees-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.services-fees-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.services-fees-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.services-fees-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.services-fees-hero__eyebrow {
 margin: 0 0 0.5rem;
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: rgb(254 226 226 / 0.92);
}

.services-fees-hero__title {
 margin: 0;
 font-size: 1.875rem;
 font-weight: 800;
 line-height: 1.15;
 color: #fff;
 text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
 .services-fees-hero__title {
 font-size: 2.25rem;
 }
}

.services-fees-eyebrow {
 margin: 0 0 0.85rem;
 font-size: 0.75rem;
 font-weight: 800;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--services-fees-red);
}

.services-fees-heading {
 margin: 0;
 font-size: 1.75rem;
 font-weight: 800;
 line-height: 1.2;
 color: var(--services-fees-text);
}

@media (min-width: 768px) {
 .services-fees-heading {
 font-size: 2rem;
 }
}

@media (min-width: 1024px) {
 .services-fees-heading {
 font-size: 2.25rem;
 }
}

.services-fees-page .patient-page-section,
.services-fees-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.services-fees-page .services-fees-intro.patient-page-section {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .services-fees-page .patient-page-section,
  .services-fees-page .patient-page-section--end {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .services-fees-page .services-fees-intro.patient-page-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .services-fees-page .patient-page-section,
  .services-fees-page .patient-page-section--end {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .services-fees-page .services-fees-intro.patient-page-section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .services-fees-page .patient-page-section--end {
    padding-bottom: 5rem;
    margin-bottom: 1.5rem;
  }
}

.services-fees-intro {
  background: #fff;
}

.services-fees-intro__lead {
 margin: 0.9rem 0 0;
 max-width: 47.5rem;
 font-size: 1rem;
 line-height: 1.65;
 color: var(--services-fees-muted);
}

.services-fees-notice {
 display: flex;
 gap: 0.9rem;
 align-items: flex-start;
 margin-top: 1.5rem;
 padding: 1rem 1.15rem;
 border: 1px solid #fecaca;
 border-radius: 0.875rem;
 background: var(--services-fees-red-soft);
}

.services-fees-notice__icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 width: 2.25rem;
 height: 2.25rem;
 border-radius: 999px;
 background: #fff;
 color: var(--services-fees-red);
 font-size: 1rem;
}

.services-fees-notice__label {
 display: block;
 margin-bottom: 0.2rem;
 font-size: 0.75rem;
 font-weight: 800;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: #991b1b;
}

.services-fees-notice__body p {
 margin: 0;
 font-size: 1rem;
 line-height: 1.6;
 color: #7f1d1d;
}

.services-fees-notice__body strong {
 font-weight: 800;
 color: #991b1b;
}

.services-fees-downloads {
  margin-top: 0;
}

.services-fees-intro .services-fees-notice {
  margin-top: 1.15rem;
}

.services-fees-downloads__title {
 margin: 0 0 1.15rem;
 font-size: 1.125rem;
 font-weight: 700;
 line-height: 1.35;
 color: var(--services-fees-text);
}

.services-fees-downloads__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 900px) {
  .services-fees-downloads__grid {
    gap: 1.25rem;
  }
}

.download-group {
 min-width: 0;
 padding: 1.25rem;
 border: 1px solid var(--services-fees-border);
 border-radius: 0.875rem;
 background: #f8fafc;
}

@media (min-width: 768px) {
 .download-group {
 padding: 1.4rem;
 }
}

.download-group__header {
 display: flex;
 align-items: flex-start;
 gap: 0.85rem;
 margin-bottom: 1rem;
}

.download-group__icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 width: 2.5rem;
 height: 2.5rem;
 border-radius: 0.7rem;
 background: var(--services-fees-red-soft);
 color: var(--services-fees-red);
 font-size: 1.05rem;
}

.download-group__header h3 {
 margin: 0;
 font-size: 1.0625rem;
 font-weight: 700;
 line-height: 1.35;
 color: var(--services-fees-text);
}

.download-group__list {
 margin: 0;
 padding: 0;
 list-style: none;
}

.download-item {
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
 padding: 0.9rem 0;
 border-top: 1px solid #e2e8f0;
}

.download-item:first-child {
 padding-top: 0;
 border-top: none;
}

@media (min-width: 640px) {
 .download-item {
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 }
}

.download-item__title {
 flex: 1;
 min-width: 0;
 font-size: 0.9375rem;
 font-weight: 600;
 line-height: 1.55;
 color: #334155;
}

.download-item__action {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.45rem;
 flex-shrink: 0;
 min-height: 2.75rem;
 padding: 0.55rem 0.95rem;
 border: 1px solid var(--services-fees-red);
 border-radius: 0.65rem;
 background: #fff;
 color: var(--services-fees-red);
 font-size: 0.875rem;
 font-weight: 700;
 line-height: 1.3;
 text-decoration: none;
 white-space: nowrap;
}

.download-item__action:hover {
 background: var(--services-fees-red);
 color: #fff;
}

.download-item__action:focus-visible {
 outline: 2px solid var(--services-fees-red);
 outline-offset: 3px;
}

.services-fees-ct-info {
 background: #f8fafc;
}

.services-fees-ct-contact {
 display: grid;
 grid-template-columns: 1fr;
 gap: 0.85rem;
 margin-top: 1.5rem;
 padding: 1rem 1.15rem;
 border: 1px solid var(--services-fees-border);
 border-radius: 0.875rem;
 background: #fff;
}

@media (min-width: 700px) {
 .services-fees-ct-contact {
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1rem;
 }
}

.services-fees-ct-contact__label {
 display: block;
 margin-bottom: 0.25rem;
 font-size: 0.75rem;
 font-weight: 800;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: #64748b;
}

.services-fees-ct-contact__days {
 display: block;
 font-size: 0.9375rem;
 line-height: 1.45;
 color: #334155;
}

.services-fees-ct-contact__hours {
 display: block;
 margin-top: 0.15rem;
 font-size: 1.0625rem;
 font-weight: 800;
 line-height: 1.35;
 color: var(--services-fees-text);
}

.services-fees-ct-contact__phone {
 display: inline-flex;
 align-items: center;
 gap: 0.45rem;
 min-height: 2.75rem;
 margin-top: 0.15rem;
 font-size: 1.0625rem;
 font-weight: 700;
 color: var(--services-fees-red);
 text-decoration: none;
}

.services-fees-ct-contact__phone:hover {
 color: #991b1b;
 text-decoration: underline;
 text-underline-offset: 0.16em;
}

.services-fees-ct-contact__phone:focus-visible,
.services-fees-ct-info__phone:focus-visible,
.services-fees-back__link:focus-visible,
.ct-tariff-search__input:focus-visible,
.ct-tariff-search__clear:focus-visible {
 outline: 2px solid var(--services-fees-red);
 outline-offset: 3px;
}

.services-fees-page .services-fees-pathway.institut-pathway {
  width: 100%;
  max-width: none;
  margin: 1.75rem 0 0;
}

.services-fees-pathway .institut-pathway__step {
  align-items: flex-start;
  gap: 1.15rem;
  padding-bottom: 2rem;
}

.services-fees-pathway .institut-pathway__step:last-child {
  padding-bottom: 0;
}

.services-fees-pathway .institut-pathway__step:not(:last-child)::before {
  background: #fecaca;
}

.services-fees-pathway .institut-pathway__marker {
  background: #b91c1c;
  color: #fff;
}

.services-fees-pathway .institut-pathway__body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--services-fees-text);
}

.services-fees-pathway .institut-pathway__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.services-fees-pathway .institut-pathway__body p + p {
  margin-top: 0.75rem;
}

.services-fees-pathway .institut-pathway__body strong {
  font-weight: 700;
  color: var(--services-fees-text);
}

.services-fees-ct-info__phone {
  font-weight: 700;
  color: var(--services-fees-red);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.services-fees-ct-info__phone:hover {
  color: #991b1b;
}

.ct-tariff-section {
 background: #fff;
}

.ct-tariff-search {
 margin-top: 1.5rem;
 max-width: 36rem;
}

.ct-tariff-search__label {
 display: block;
 margin-bottom: 0.45rem;
 font-size: 0.875rem;
 font-weight: 700;
 color: #334155;
}

.ct-tariff-search__field {
 display: flex;
 flex-wrap: wrap;
 gap: 0.65rem;
 align-items: center;
}

.ct-tariff-search__input {
 width: 100%;
 min-height: 2.75rem;
 padding: 0.65rem 0.9rem;
 border: 1px solid #cbd5e1;
 border-radius: 0.65rem;
 background: #fff;
 color: var(--services-fees-text);
 font-size: 1rem;
 line-height: 1.45;
}

.ct-tariff-search__input::placeholder {
 color: #94a3b8;
}

.ct-tariff-search__clear {
 min-height: 2.75rem;
 padding: 0.5rem 0.85rem;
 border: 1px solid var(--services-fees-border);
 border-radius: 0.65rem;
 background: #f8fafc;
 color: #334155;
 font-size: 0.875rem;
 font-weight: 600;
 cursor: pointer;
}

.ct-tariff-search__clear:hover {
 border-color: #cbd5e1;
 color: var(--services-fees-red);
}

.ct-tariff-search__empty {
 margin: 0.75rem 0 0;
 font-size: 0.9375rem;
 line-height: 1.55;
 color: #64748b;
}

.ct-tariff-table-wrapper {
 margin-top: 1.35rem;
 overflow-x: auto;
 -webkit-overflow-scrolling: touch;
 border: 1px solid var(--services-fees-border);
 border-radius: 0.875rem;
 background: #fff;
}

.ct-tariff-table {
 width: 100%;
 min-width: 36rem;
 border-collapse: collapse;
 text-align: left;
 font-size: 0.9375rem;
 line-height: 1.55;
 color: #334155;
}

.ct-tariff-table thead th {
 position: sticky;
 top: 0;
 z-index: 2;
 padding: 0.9rem 1rem;
 border-bottom: 1px solid var(--services-fees-border);
 background: #f8fafc;
 font-size: 0.75rem;
 font-weight: 800;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--services-fees-text);
}

.ct-tariff-table thead th:last-child,
.ct-tariff-table tbody td:last-child {
 text-align: right;
 white-space: nowrap;
 font-variant-numeric: tabular-nums;
}

.ct-tariff-table tbody td {
 padding: 0.85rem 1rem;
 border-bottom: 1px solid #f1f5f9;
 vertical-align: top;
}

.ct-tariff-table tbody td:first-child {
 width: 4.5rem;
 color: #64748b;
 font-weight: 600;
}

.ct-tariff-table tbody td:nth-child(2) {
 line-height: 1.55;
}

.ct-tariff-table tbody td:last-child {
 font-weight: 700;
 color: var(--services-fees-text);
}

.ct-tariff-table tbody tr.ct-tariff-table__row:nth-child(even) {
 background: var(--table-row-alt);
}

.ct-tariff-table tbody tr.ct-tariff-table__row:hover {
 background: #f1f5f9;
}

.ct-tariff-table__category th {
 padding: 0.95rem 1rem;
 border-top: 2px solid #fecaca;
 border-bottom: 1px solid #fecaca;
 background: var(--services-fees-red-soft);
 font-size: 0.8125rem;
 font-weight: 800;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 text-align: left;
 color: #991b1b;
}

.services-fees-back {
 margin-top: 2.25rem;
 padding-top: 1.5rem;
 border-top: 1px solid var(--services-fees-border);
}

.services-fees-back__link {
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 min-height: 2.75rem;
 font-size: 1rem;
 font-weight: 600;
 line-height: 1.5;
 color: #334155;
 text-decoration: none;
}

.services-fees-back__link:hover {
 color: var(--services-fees-red);
 text-decoration: underline;
 text-underline-offset: 0.18em;
}

@media (max-width: 699px) {
 .ct-tariff-table {
 min-width: 0;
 }

 .ct-tariff-table thead {
 display: none;
 }

 .ct-tariff-table tbody {
 display: block;
 }

 .ct-tariff-table tbody tr.ct-tariff-table__row {
 display: block;
 margin: 0.65rem;
 padding: 0.85rem 0.95rem;
 border: 1px solid var(--services-fees-border);
 border-radius: 0.75rem;
 background: #fff;
 }

 .ct-tariff-table tbody tr.ct-tariff-table__row:nth-child(even),
 .ct-tariff-table tbody tr.ct-tariff-table__row:hover {
 background: #fff;
 }

 .ct-tariff-table tbody td {
 display: grid;
 grid-template-columns: 7.5rem minmax(0, 1fr);
 gap: 0.65rem;
 align-items: start;
 width: 100%;
 padding: 0.4rem 0;
 border-bottom: none;
 text-align: left;
 }

 .ct-tariff-table tbody td:first-child,
 .ct-tariff-table tbody td:last-child {
 width: auto;
 white-space: normal;
 text-align: left;
 }

 .ct-tariff-table tbody td::before {
 content: attr(data-label);
 font-size: 0.75rem;
 font-weight: 800;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: #64748b;
 }

 .ct-tariff-table tbody td:last-child {
 font-size: 1rem;
 }

  .ct-tariff-table tbody td:last-child::after {
    content: " lei";
    font-weight: 700;
  }

  .ct-tariff-table__category {
    display: block;
    margin: 0.85rem 0.65rem 0.35rem;
  }

  .ct-tariff-table__category th {
    display: block;
    border-radius: 0.65rem;
  }
}

/* ==========================================================================
   Access to services page (pacienti/accesul-pacientilor-la-servicii.php)
   ========================================================================== */

.access-services-page {
  --access-red: #b91c1c;
  --access-red-soft: #fef2f2;
  --access-text: #0f172a;
  --access-muted: #475569;
  --access-border: #e2e8f0;
  color: var(--access-text);
}

.access-services-page .patient-page-section,
.access-services-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .access-services-page .patient-page-section,
  .access-services-page .patient-page-section--end {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .access-services-page .patient-page-section,
  .access-services-page .patient-page-section--end {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .access-services-page .patient-page-section--end {
    padding-bottom: 5rem;
    margin-bottom: 1.5rem;
  }
}

.access-services-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .access-services-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.access-services-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.access-services-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.access-services-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.access-services-hero__breadcrumb a:focus-visible,
.access-inline-link:focus-visible,
.access-contact-row__phone:focus-visible,
.access-contact-panel__phone:focus-visible,
.access-services-back__link:focus-visible {
  outline: 2px solid var(--access-red);
  outline-offset: 3px;
}

.access-services-hero__breadcrumb a:focus-visible {
  outline-color: #fff;
}

.access-services-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.access-services-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.access-services-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.access-services-hero__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .access-services-hero__title {
    font-size: 2.25rem;
  }
}

.access-services-hero__lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .access-services-hero__lead {
    font-size: 1.0625rem;
  }
}

.access-services-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--access-red);
}

.access-services-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--access-text);
}

.access-services-heading--md {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .access-services-heading {
    font-size: 2rem;
  }

  .access-services-heading--md {
    font-size: 1.75rem;
  }
}

.access-services-lead {
  margin: 0.9rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--access-muted);
}

.access-services-body--note {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--access-border);
}

.access-services-caption {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.access-services-caption--strong {
  margin-top: 1rem;
  font-weight: 700;
  color: #334155;
}

/* Subheading styles are defined with the document-layout rules below. */

.access-services-prep,
.access-services-outpatient {
  background: #fff;
}

.access-services-hospital,
.access-services-cpu {
  background: #f8fafc;
}

.access-prose {
  max-width: none;
}

.access-prose p,
.access-services-lead,
.access-services-body {
  margin: 0.95rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--access-muted);
}

.access-prose--cpu p + p,
.access-prose--cpu p + ul,
.access-prose--cpu ul + p {
  margin-top: 1.05rem;
}

.access-prose--cpu ul {
  margin: 0.65rem 0 0;
  padding-left: 1.25rem;
  max-width: none;
  color: #334155;
}

.access-prose--cpu ul li {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  line-height: 1.6;
}

.access-prose--cpu ul li:last-child {
  margin-bottom: 0;
}

.access-prose--cpu strong {
  font-weight: 700;
  color: var(--access-text);
}

.access-section {
  max-width: none;
}

.access-section__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}

.access-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--access-red-soft);
  color: var(--access-red);
  font-size: 1.05rem;
}

.access-services-subheading {
  margin: 1.75rem 0 0.85rem;
  max-width: none;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--access-text);
}

.access-panel .access-services-subheading,
.access-highlight .access-services-subheading {
  margin-top: 0;
}

.access-hospital-split,
.access-ambulator-split,
.access-cpu-docs-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.35rem;
  align-items: start;
}

.access-ambulator-split,
.access-cpu-docs-split {
  align-items: stretch;
}

.access-cpu-docs-split .access-panel,
.access-ambulator-split > .access-panel,
.access-ambulator-split > .access-highlight {
  height: 100%;
}

@media (min-width: 900px) {
  .access-hospital-split,
  .access-ambulator-split,
  .access-cpu-docs-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.access-prose--cpu-follow {
  margin-top: 1.35rem;
}

.access-highlight {
  margin-top: 0;
}

.access-highlight--programari {
  margin-top: 1.15rem;
}

.access-highlight--programari .access-contact-row__line {
  margin-top: 0.15rem;
}

.access-highlight--programari .access-department__phone {
  min-height: auto;
  padding: 0.15rem 0;
  vertical-align: baseline;
}

.access-panel {
  min-width: 0;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--access-border);
  border-radius: 0.875rem;
  background: #fff;
}

.access-panel--contact {
  background: #fff;
}

.access-department + .access-department {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.access-department__name {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--access-text);
}

.access-department__phone {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: #b91c1c;
  text-decoration: none;
}

.access-department__phone i {
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.access-department__phone:hover {
  color: #991b1b;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.access-department__phone:focus-visible {
  outline: 2px solid #b91c1c;
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.access-highlight {
  margin-top: 0;
  max-width: none;
  padding: 1.15rem 1.2rem;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  background: var(--access-red-soft);
}

.access-section > .access-highlight {
  margin-top: 1.5rem;
}

.access-callout {
  margin: 1.35rem 0 0;
  max-width: none;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid #b91c1c;
  background: #fff7f7;
  font-size: 1rem;
  line-height: 1.65;
  color: #7f1d1d;
}

.access-contact-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.1rem;
  max-width: none;
  border: 1px solid var(--access-border);
  border-radius: 0.65rem;
  background: #fff;
  overflow: hidden;
}

.access-contact-row {
  padding: 0.85rem 1.05rem;
  border-top: 1px solid #e2e8f0;
}

.access-contact-row:first-child {
  border-top: none;
}

.access-contact-row--standalone {
  margin-top: 1.5rem;
  max-width: none;
  border: 1px solid var(--access-border);
  border-radius: 0.65rem;
  background: #fff;
}

.access-contact-row__name {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.access-contact-row__line {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

.access-contact-row__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--access-red);
  text-decoration: none;
}

.access-contact-row__phone:hover {
  color: #991b1b;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.access-checklist {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  max-width: none;
}

.access-checklist--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.5rem;
  margin-top: 1.25rem;
  max-width: none;
  padding: 0;
  border: none;
  background: transparent;
}

@media (min-width: 768px) {
  .access-checklist--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1.75rem;
  }
}

.access-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding: 0.45rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

.access-checklist li + li {
  margin-top: 0.2rem;
}

.access-checklist--grid li + li {
  margin-top: 0;
}

.access-highlight .access-checklist {
  margin-top: 0.75rem;
}

.access-checklist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--access-red-soft);
  color: var(--access-red);
  font-size: 0.7rem;
}

.access-checklist__text {
  min-width: 0;
}

.access-inline-link {
  font-weight: 700;
  color: var(--access-red);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.access-inline-link:hover {
  color: #991b1b;
}

/* Section backgrounds are defined earlier on .access-services-prep / hospital / outpatient / cpu */

.access-journey__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.access-journey__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--access-red-soft);
  color: var(--access-red);
  font-size: 1.15rem;
}

.access-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--access-border);
  border-radius: 0.875rem;
  background: #fff;
}

@media (min-width: 700px) {
  .access-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-services-hospital .access-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.access-summary__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.access-summary__item p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--access-text);
}

.access-hospital-layout,
.access-outpatient-grid,
.access-cpu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.35rem;
}

@media (min-width: 900px) {
  .access-hospital-layout,
  .access-outpatient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
  }

  .access-cpu-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }
}

.access-hospital-layout__col,
.access-panel {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--access-border);
  border-radius: 0.875rem;
  background: #fff;
}

.access-panel--highlight {
  border-color: #fecaca;
  background: var(--access-red-soft);
}

.access-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.access-contact-row {
  padding: 0.85rem 0;
  border-top: 1px solid #f1f5f9;
}

.access-contact-row:first-child {
  padding-top: 0;
  border-top: none;
}

.access-contact-row__name {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--access-text);
}

.access-contact-row__phone {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--access-red);
  text-decoration: none;
}

.access-contact-row__phone:hover,
.access-contact-panel__phone:hover {
  color: #991b1b;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.access-contact-panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--access-border);
  border-radius: 0.875rem;
  background: #f8fafc;
}

.access-contact-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: var(--access-red-soft);
  color: var(--access-red);
}

.access-contact-panel__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.access-contact-panel__phone {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--access-red);
  text-decoration: none;
}

.access-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-timeline__step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.access-timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 2.5rem;
  bottom: 0.25rem;
  width: 2px;
  background: #fecaca;
}

.access-timeline__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--access-red);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  z-index: 1;
}

.access-timeline__content {
  min-width: 0;
  max-width: 50rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--access-border);
  border-radius: 0.875rem;
  background: #fff;
}

.access-timeline__content h3 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--access-text);
}

.access-timeline__content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--access-muted);
}

.access-timeline__content p + p {
  margin-top: 0.75rem;
}

.access-cpu-aside {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.access-info-box {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.15rem;
  border: 1px solid #fecaca;
  border-radius: 0.875rem;
  background: var(--access-red-soft);
}

.access-info-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #fff;
  color: var(--access-red);
}

.access-info-box__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  color: #7f1d1d;
}

.access-info-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #7f1d1d;
}

.access-info-box p + p {
  margin-top: 0.75rem;
}

.access-services-back {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--access-border);
}

.access-services-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.access-services-back__link:hover {
  color: var(--access-red);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Patient rights & obligations page (pacienti/drepturile-si-obligatiile-pacientului.php) */
.patient-rights-page {
  --rights-red: #b91c1c;
  --rights-red-soft: #fef2f2;
  --rights-text: #0f172a;
  --rights-muted: #334155;
  --rights-border: #e2e8f0;
  --rights-surface: #ffffff;
  --rights-tint: #f8fafc;
  color: var(--rights-text);
}

.patient-rights-page .patient-page-section,
.patient-rights-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .patient-rights-page .patient-page-section,
  .patient-rights-page .patient-page-section--end {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .patient-rights-page .patient-page-section,
  .patient-rights-page .patient-page-section--end {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .patient-rights-page .patient-page-section--end {
    padding-bottom: 5rem;
    margin-bottom: 1.5rem;
  }
}

.patient-rights-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .patient-rights-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

.patient-rights-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.patient-rights-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .patient-rights-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.patient-rights-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.patient-rights-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.patient-rights-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.patient-rights-hero__breadcrumb a:focus-visible,
.patient-rights-back__link:focus-visible {
  outline: 2px solid var(--rights-red);
  outline-offset: 3px;
}

.patient-rights-hero__breadcrumb a:focus-visible {
  outline-color: #fff;
}

.patient-rights-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.patient-rights-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.patient-rights-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.patient-rights-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .patient-rights-hero__title {
    font-size: 2.25rem;
  }
}

.patient-rights-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .patient-rights-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Section backgrounds */
.patient-rights-intro {
  background: var(--rights-surface);
}

.patient-rights-rights {
  background: var(--rights-tint);
}

.patient-rights-obligations {
  background: var(--rights-surface);
}

/* Shared type */
.patient-rights-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rights-red);
}

.patient-rights-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--rights-text);
  text-align: left;
}

@media (min-width: 768px) {
  .patient-rights-heading {
    font-size: 2rem;
  }
}

.patient-rights-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--rights-red-soft);
  color: var(--rights-red);
  font-size: 1.05rem;
}

/* Intro panel */
.patient-rights-intro__panel {
  max-width: none;
  width: 100%;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--rights-border);
  border-radius: 1rem;
  background: var(--rights-surface);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

@media (min-width: 768px) {
  .patient-rights-intro__panel {
    padding: 2rem 2.25rem;
  }
}

.patient-rights-intro__header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.patient-rights-prose--intro {
  margin-top: 0;
}

.patient-rights-law {
  font-weight: 800;
  font-size: 1.0625em;
  letter-spacing: 0.01em;
  color: var(--rights-text);
}

/* Rights section head */
.patient-rights-section-head {
  max-width: none;
  margin-bottom: 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .patient-rights-section-head {
    margin-bottom: 2.5rem;
  }
}

.patient-rights-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: none;
  width: 100%;
}

@media (min-width: 768px) {
  .patient-rights-stack {
    gap: 2.25rem;
  }
}

/* Document cards ? one clean container per major section */
.patient-rights-doc {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--rights-border);
  border-radius: 1rem;
  background: var(--rights-surface);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

@media (min-width: 768px) {
  .patient-rights-doc {
    padding: 2.25rem 2.5rem;
  }
}

.patient-rights-doc--obligations {
  max-width: none;
  width: 100%;
}

.patient-rights-doc__header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #f1f5f9;
}

.patient-rights-doc__heading {
  min-width: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
}

.patient-rights-doc__number {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--rights-text);
}

@media (min-width: 768px) {
  .patient-rights-doc__number {
    font-size: 1.5rem;
  }
}

.patient-rights-doc__title {
  margin: 0;
  max-width: none;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--rights-text);
  text-align: left;
}

.patient-rights-doc__title--lg {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .patient-rights-doc__title {
    font-size: 1.5rem;
  }

  .patient-rights-doc__title--lg {
    font-size: 1.75rem;
  }
}

/* Prose */
.patient-rights-prose {
  max-width: none;
  width: 100%;
  text-align: left;
}

.patient-rights-prose p {
  margin: 0;
  font-size: 1rem; /* 16px */
  line-height: 1.7;
  color: var(--rights-muted);
}

.patient-rights-prose p + p {
  margin-top: 1.15rem;
}

.patient-rights-prose p + ul,
.patient-rights-prose ul + p {
  margin-top: 1.15rem;
}

.patient-rights-prose strong {
  font-weight: 700;
  color: var(--rights-text);
}

.patient-rights-prose ul {
  margin: 0.85rem 0 0;
  padding-left: 1.35rem;
  list-style: disc;
  color: var(--rights-muted);
}

.patient-rights-prose ul li {
  margin: 0 0 0.85rem;
  padding-left: 0.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.patient-rights-prose ul li:last-child {
  margin-bottom: 0;
}

.patient-rights-prose ul li::marker {
  color: #94a3b8;
}

.patient-rights-obligations-list {
  margin-top: 0;
}

.patient-rights-obligations-list li {
  margin-bottom: 1rem;
}

.patient-rights-obligations-list li:last-child {
  margin-bottom: 0;
}

/* Back navigation */
.patient-rights-back {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rights-border);
}

.patient-rights-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.patient-rights-back__link:hover {
  color: var(--rights-red);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.patient-rights-back__link i {
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .patient-rights-intro__panel,
  .patient-rights-doc {
    padding: 1.25rem 1.1rem;
    border-radius: 0.875rem;
  }

  .patient-rights-doc__header {
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
  }

  .patient-rights-stack {
    gap: 1.35rem;
  }

  .patient-rights-back {
    margin-top: 2.25rem;
  }
}

/* ?? Hospital rules & hygiene page (pacienti/reguli-in-spital-si-igiena.php) ?? */
.hospital-rules-page {
  --rules-red: #b91c1c;
  --rules-red-soft: #fef2f2;
  --rules-text: #0f172a;
  --rules-muted: #334155;
  --rules-border: #e2e8f0;
  --rules-surface: #ffffff;
  --rules-tint: #f8fafc;
  color: var(--rules-text);
}

.hospital-rules-page .patient-page-section,
.hospital-rules-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .hospital-rules-page .patient-page-section,
  .hospital-rules-page .patient-page-section--end {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hospital-rules-page .patient-page-section,
  .hospital-rules-page .patient-page-section--end {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .hospital-rules-page .patient-page-section--end {
    padding-bottom: 5rem;
    margin-bottom: 1.5rem;
  }
}

.hospital-rules-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .hospital-rules-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

/* Hero */
.hospital-rules-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .hospital-rules-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.hospital-rules-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.hospital-rules-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.hospital-rules-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.hospital-rules-hero__breadcrumb a:focus-visible,
.hospital-rules-back__link:focus-visible {
  outline: 2px solid var(--rules-red);
  outline-offset: 3px;
}

.hospital-rules-hero__breadcrumb a:focus-visible {
  outline-color: #fff;
}

.hospital-rules-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.hospital-rules-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.hospital-rules-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.hospital-rules-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .hospital-rules-hero__title {
    font-size: 2.25rem;
  }
}

.hospital-rules-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .hospital-rules-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Section backgrounds */
.hospital-rules-hygiene {
  background: var(--rules-surface);
}

.hospital-rules-behaviour {
  background: var(--rules-tint);
}

.hospital-rules-back-section {
  background: var(--rules-surface);
}

/* Shared type */
.hospital-rules-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rules-red);
}

.hospital-rules-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--rules-text);
  text-align: left;
}

@media (min-width: 768px) {
  .hospital-rules-heading {
    font-size: 2rem;
  }
}

.hospital-rules-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--rules-red-soft);
  color: var(--rules-red);
  font-size: 1.05rem;
}

.hospital-rules-section-head {
  max-width: none;
  margin-bottom: 1.75rem;
  text-align: left;
}

@media (min-width: 768px) {
  .hospital-rules-section-head {
    margin-bottom: 2.25rem;
  }
}

.hospital-rules-section-head__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.hospital-rules-section-head__title-row .hospital-rules-heading {
  flex: 1;
  min-width: 0;
}

/* Prose reading measure */
.hospital-rules-prose {
  max-width: none;
  text-align: left;
}

.hospital-rules-prose p {
  margin: 0;
  font-size: 1rem; /* 16px */
  line-height: 1.7;
  color: var(--rules-muted);
}

.hospital-rules-prose p + p {
  margin-top: 1.15rem; /* ~18px */
}

.hospital-rules-prose--intro {
  margin-bottom: 2rem;
}

.hospital-rules-prose--lead {
  margin-top: 1.15rem;
}

.hospital-rules-prose strong,
.hospital-rules-list strong {
  font-weight: 700;
  color: var(--rules-text);
}

/* Document containers ? one clean block per major section */
.hospital-rules-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: none;
}

@media (min-width: 768px) {
  .hospital-rules-stack {
    gap: 2.25rem;
  }
}

.hospital-rules-doc {
  max-width: none;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--rules-border);
  border-radius: 1rem;
  background: var(--rules-surface);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

@media (min-width: 768px) {
  .hospital-rules-doc {
    padding: 2rem 2.25rem;
  }
}

.hospital-rules-doc__header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #f1f5f9;
}

.hospital-rules-doc__title {
  margin: 0;
  max-width: none;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--rules-text);
  text-align: left;
}

@media (min-width: 768px) {
  .hospital-rules-doc__title {
    font-size: 1.5rem;
  }
}

/* Hygiene checklist */
.hospital-rules-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
}

.hospital-rules-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.55rem 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rules-muted);
}

.hospital-rules-checklist li + li {
  margin-top: 0.15rem;
  border-top: 1px solid #f1f5f9;
}

.hospital-rules-checklist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.12rem;
  border-radius: 999px;
  background: var(--rules-red-soft);
  color: var(--rules-red);
  font-size: 0.7rem;
}

.hospital-rules-checklist__text {
  min-width: 0;
}

/* Document-style rule lists */
.hospital-rules-list {
  margin: 0;
  padding-left: 1.35rem;
  max-width: none;
  list-style: disc;
  color: var(--rules-muted);
}

.hospital-rules-list li {
  margin: 0 0 0.7rem;
  padding-left: 0.3rem;
  font-size: 1rem;
  line-height: 1.7;
}

.hospital-rules-list li:last-child {
  margin-bottom: 0;
}

.hospital-rules-list li::marker {
  color: #94a3b8;
}

.hospital-rules-list li.hospital-rules-list__item--group {
  margin-top: 1.35rem;
  padding-top: 0.15rem;
}

.hospital-rules-list li.hospital-rules-list__item--group:first-child {
  margin-top: 0;
}

.hospital-rules-list li.hospital-rules-list__item--restrict {
  color: #1e293b;
}

.hospital-rules-list--visitors li {
  margin-bottom: 0.85rem;
}

.hospital-rules-list--prohibited {
  margin-top: 0.85rem;
}

.hospital-rules-list--prohibited li {
  margin-bottom: 0.75rem;
  color: #1e293b;
}

/* Soft restricted callout (visitors) ? not a warning colour */
.hospital-rules-restricted {
  margin-top: 1.75rem;
  max-width: none;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--rules-border);
  border-radius: 0.75rem;
  background: var(--rules-tint);
}

@media (min-width: 768px) {
  .hospital-rules-restricted {
    padding: 1.35rem 1.5rem;
  }
}

.hospital-rules-restricted__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--rules-text);
}

/* Back navigation */
.hospital-rules-back {
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rules-border);
  max-width: none;
}

.hospital-rules-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.hospital-rules-back__link:hover {
  color: var(--rules-red);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hospital-rules-back__link i {
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .hospital-rules-doc {
    padding: 1.25rem 1.1rem;
    border-radius: 0.875rem;
  }

  .hospital-rules-doc__header {
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
  }

  .hospital-rules-stack {
    gap: 1.35rem;
  }

  .hospital-rules-restricted {
    padding: 1rem 1.05rem;
  }

  .hospital-rules-back {
    margin-top: 0.25rem;
    padding-top: 1.5rem;
  }

  .hospital-rules-list li.hospital-rules-list__item--group {
    margin-top: 1.15rem;
  }
}

/* ?? Discharge / externare page ?? */
.discharge-page {
  --discharge-red: #b91c1c;
  --discharge-red-soft: #fef2f2;
  --discharge-text: #0f172a;
  --discharge-muted: #334155;
  --discharge-border: #e2e8f0;
  --discharge-surface: #ffffff;
  --discharge-tint: #f8fafc;
  color: var(--discharge-text);
}

.discharge-page .patient-page-section,
.discharge-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .discharge-page .patient-page-section,
  .discharge-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .discharge-page .patient-page-section,
  .discharge-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .discharge-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.discharge-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .discharge-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

/* Hero ? compact, preserve existing red treatment */
.discharge-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .discharge-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.discharge-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.discharge-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.discharge-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.discharge-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.discharge-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.discharge-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.discharge-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.discharge-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .discharge-hero__title {
    font-size: 2.25rem;
  }
}

.discharge-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .discharge-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Introduction ? white, no card */
.discharge-intro {
  background: var(--discharge-surface);
}

.discharge-intro__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--discharge-red);
}

.discharge-intro__heading {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--discharge-text);
  text-align: left;
}

@media (min-width: 768px) {
  .discharge-intro__heading {
    font-size: 2rem;
  }
}

.discharge-intro__text {
  margin: 0 0 1.75rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--discharge-muted);
  text-align: left;
}

@media (max-width: 640px) {
  .discharge-intro__text {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem; /* 15px */
  }
}

.discharge-content {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--discharge-border);
  border-radius: 1rem;
  background: var(--discharge-tint);
  box-shadow: none;
}

@media (min-width: 768px) {
  .discharge-content {
    padding: 2rem 2.25rem;
  }
}

.discharge-content__header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #f1f5f9;
}

.discharge-content__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--discharge-red-soft);
  color: var(--discharge-red);
  font-size: 1.05rem;
}

.discharge-content__header h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--discharge-text);
  text-align: left;
}

@media (min-width: 768px) {
  .discharge-content__header h3 {
    font-size: 1.5rem;
  }
}

/* Discharge list */
.discharge-content__list {
  margin: 0;
  padding: 0;
  max-width: none;
  list-style: none;
  color: var(--discharge-muted);
}

.discharge-content__list li {
  position: relative;
  margin: 0 0 1rem; /* 16px */
  padding-left: 1.5rem;
  font-size: 0.96875rem; /* ~15.5px */
  line-height: 1.65;
  text-align: left;
}

@media (min-width: 768px) {
  .discharge-content__list li {
    font-size: 1rem;
  }
}

.discharge-content__list li:last-child {
  margin-bottom: 0;
}

.discharge-content__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0.15rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.discharge-content__list strong {
  font-weight: 700;
  color: var(--discharge-text);
}

.discharge-content__list-break {
  display: block;
  margin-top: 0.45rem;
}

@media (max-width: 640px) {
  .discharge-content {
    padding: 1.25rem 1.1rem;
    border-radius: 0.875rem;
  }

  .discharge-content__header {
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
  }

  .discharge-content__list li {
    font-size: 0.9375rem; /* 15px */
    margin-bottom: 0.95rem;
  }
}

/* ==========================================================================
   Audience schedule page (pacienti/program-de-audiente.php)
   ========================================================================== */

.audience-page {
  --audience-red: #b91c1c;
  --audience-red-soft: #fef2f2;
  --audience-text: #0f172a;
  --audience-muted: #334155;
  --audience-border: #e2e8f0;
  --audience-surface: #ffffff;
  --audience-tint: #f8fafc;
  --audience-row-alt: #f8fafc;
  color: var(--audience-text);
}

.audience-page .audience-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.audience-page .patient-page-section,
.audience-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .audience-page .patient-page-section,
  .audience-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .audience-page .patient-page-section,
  .audience-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .audience-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.audience-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .audience-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

/* Hero */
.audience-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .audience-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.audience-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.audience-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.audience-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.audience-hero__breadcrumb a:focus-visible,
.audience-phone-inline:focus-visible,
.audience-contact__phone:focus-visible {
  outline: 2px solid var(--audience-red);
  outline-offset: 3px;
}

.audience-hero__breadcrumb a:focus-visible {
  outline-color: #fff;
}

.audience-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.audience-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 480px) {
  .audience-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0;
    row-gap: 0.2rem;
  }

  .audience-hero__breadcrumb span[aria-hidden="true"] {
    margin: 0 0.35rem;
  }
}

.audience-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.audience-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .audience-hero__title {
    font-size: 2.25rem;
  }
}

.audience-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .audience-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Introduction */
.audience-intro {
  background: var(--audience-surface);
}

.audience-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--audience-red);
}

.audience-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--audience-text);
  text-align: left;
}

@media (min-width: 768px) {
  .audience-heading {
    font-size: 2rem;
  }
}

.audience-lead {
  margin: 1rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--audience-muted);
  text-align: left;
}

.audience-phone-inline {
  display: inline;
  font-weight: 800;
  color: var(--audience-red);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  white-space: nowrap;
}

.audience-phone-inline:hover {
  color: #991b1b;
}

/* Contact panel */
.audience-contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.75rem;
  width: 100%;
  max-width: none;
  padding: 1.1rem 1.15rem;
  border: 1px solid #fecaca;
  border-radius: 0.875rem;
  background: var(--audience-red-soft);
  box-shadow: none;
}

@media (min-width: 768px) {
  .audience-contact {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.15rem 1.35rem;
  }
}

.audience-contact__main {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.audience-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--audience-red);
  font-size: 1.05rem;
  border: 1px solid #fecaca;
}

.audience-contact__title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--audience-text);
}

.audience-contact__label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #64748b;
}

.audience-contact__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid #fecaca;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--audience-red);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.audience-contact__phone:hover {
  color: #991b1b;
  border-color: #fca5a5;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 767px) {
  .audience-contact__phone {
    width: 100%;
  }
}

/* Schedule section */
.audience-schedule-section {
  background: var(--audience-tint);
}

.audience-schedule-section__header {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.audience-schedule-section__lead {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--audience-muted);
  text-align: left;
}

/* Desktop table */
.audience-table-wrapper {
  display: none;
  margin-top: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--audience-border);
  border-radius: 0.875rem;
  background: var(--audience-surface);
  box-shadow: none;
}

@media (min-width: 768px) {
  .audience-table-wrapper {
    display: block;
  }
}

.audience-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--audience-muted);
}

.audience-table thead th {
  padding: 0.9rem 0.85rem;
  border-bottom: 1px solid var(--audience-border);
  background: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--audience-text);
  white-space: nowrap;
}

.audience-table tbody th,
.audience-table tbody td {
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.audience-table tbody tr:last-child th,
.audience-table tbody tr:last-child td {
  border-bottom: none;
}

.audience-table tbody tr:nth-child(even) {
  background: var(--audience-row-alt);
}

.audience-table tbody th[scope="row"] {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--audience-text);
  white-space: nowrap;
}

.audience-table__name {
  font-weight: 700;
  color: var(--audience-text);
}

.audience-table__slot {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

.audience-table thead th:nth-child(n + 3) {
  text-align: center;
}

.audience-table__slot--unavailable {
  color: #94a3b8;
  font-weight: 600;
}

.audience-table__slot--unavailable span {
  letter-spacing: 0.05em;
}

/* Mobile member cards */
.audience-member-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .audience-member-cards {
    display: none;
  }
}

.audience-member-card {
  margin: 0;
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--audience-border);
  border-radius: 0.875rem;
  background: var(--audience-surface);
  box-shadow: none;
}

.audience-member-card__header {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
}

.audience-member-card__role {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--audience-red);
}

.audience-member-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--audience-text);
}

.audience-member-card__schedule {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.audience-member-card__row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.35rem 0;
}

.audience-member-card__row dt {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
}

.audience-member-card__row dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--audience-text);
  font-variant-numeric: tabular-nums;
}

.audience-member-card__row--unavailable dd {
  color: #64748b;
  font-weight: 600;
  font-style: italic;
}

/* Back navigation */
.audience-back-nav {
  background: var(--audience-surface);
}

.audience-back-nav__wrap {
  margin-top: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--audience-border);
}

.audience-back-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.audience-back-nav__link:hover {
  color: var(--audience-red);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.audience-back-nav__link i {
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .audience-lead {
    font-size: 0.9375rem;
  }

  .audience-schedule-section__lead {
    font-size: 0.9375rem;
  }

  .audience-member-card {
    padding: 1.15rem 1.05rem;
  }

  .audience-member-card__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

/* ==========================================================================
   Patient satisfaction survey (pacienti/chestionar-de-satisfactie.php)
   ========================================================================== */

.patient-survey-page {
  --survey-red: #b91c1c;
  --survey-red-soft: #fef2f2;
  --survey-text: #0f172a;
  --survey-muted: #334155;
  --survey-border: #e2e8f0;
  --survey-surface: #ffffff;
  --survey-tint: #f1f5f9;
  --survey-form-bg: #f4f7fa;
  --survey-navy: #0f172a;
  color: var(--survey-text);
}

.patient-survey-page .patient-survey-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.patient-survey-page .patient-page-section,
.patient-survey-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .patient-survey-page .patient-page-section,
  .patient-survey-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .patient-survey-page .patient-page-section,
  .patient-survey-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .patient-survey-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.patient-survey-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .patient-survey-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

/* Hero */
.patient-survey-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .patient-survey-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.patient-survey-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.patient-survey-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.patient-survey-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.patient-survey-hero__breadcrumb a:focus-visible,
.patient-survey-actions__submit:focus-visible,
.patient-survey-option__input:focus-visible,
.patient-survey-comment__textarea:focus-visible,
.patient-survey-error-summary a:focus-visible {
  outline: 2px solid var(--survey-red);
  outline-offset: 3px;
}

.patient-survey-hero__breadcrumb a:focus-visible {
  outline-color: #fff;
}

.patient-survey-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.patient-survey-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 480px) {
  .patient-survey-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0;
    row-gap: 0.2rem;
  }

  .patient-survey-hero__breadcrumb span[aria-hidden="true"] {
    margin: 0 0.35rem;
  }
}

.patient-survey-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.patient-survey-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .patient-survey-hero__title {
    font-size: 2.25rem;
  }
}

.patient-survey-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .patient-survey-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Introduction */
.patient-survey-intro {
  background: var(--survey-surface);
}

.patient-survey-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--survey-red);
}

.patient-survey-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--survey-navy);
  text-align: left;
}

@media (min-width: 768px) {
  .patient-survey-heading {
    font-size: 2rem;
  }
}

.patient-survey-intro__prose {
  margin-top: 1.25rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--survey-muted);
}

.patient-survey-intro__prose p {
  margin: 0 0 1rem;
}

.patient-survey-intro__prose p:last-child {
  margin-bottom: 0;
}

.patient-survey-intro__emphasis {
  font-weight: 700;
  color: var(--survey-text);
}

.patient-survey-notice {
  margin-top: 1.75rem;
  max-width: none;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--survey-border);
  border-radius: 0.875rem;
  background: var(--survey-red-soft);
}

.patient-survey-notice__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--survey-muted);
  font-size: 0.96875rem;
  line-height: 1.6;
}

.patient-survey-notice__list li + li {
  margin-top: 0.55rem;
}

@media (max-width: 640px) {
  .patient-survey-intro__prose {
    font-size: 0.9375rem;
  }

  .patient-survey-notice {
    padding: 1.1rem 1rem;
  }
}

/* Form section */
.patient-survey-form-section {
  background: var(--survey-form-bg);
}

.patient-survey-form-section__header {
  margin-bottom: 1.5rem;
  max-width: none;
}

.patient-survey-scope {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid #94a3b8;
  border-radius: 0 0.5rem 0.5rem 0;
  background: rgb(255 255 255 / 0.72);
  color: var(--survey-muted);
  font-size: 0.96875rem;
  line-height: 1.6;
}

.patient-survey-error-summary {
  margin: 0 0 1.5rem;
  max-width: none;
  padding: 1.1rem 1.2rem;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #7f1d1d;
}

.patient-survey-error-summary__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.patient-survey-error-summary__list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.patient-survey-error-summary__list a {
  color: #991b1b;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.patient-survey-error-summary__list a:hover {
  color: #7f1d1d;
}

.patient-survey-form {
  max-width: none;
  width: 100%;
  padding: 1.35rem 1.2rem 1.5rem;
  border: 1px solid var(--survey-border);
  border-radius: 1rem;
  background: var(--survey-surface);
  box-shadow: none;
}

@media (min-width: 768px) {
  .patient-survey-form {
    padding: 1.75rem 2rem 2rem;
  }
}

.patient-survey-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.patient-survey-progress {
  margin: 0 0 1.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.65rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--survey-muted);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
}

.patient-survey-section {
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
  min-width: 0;
}

.patient-survey-section:last-of-type {
  margin-bottom: 0.5rem;
}

.patient-survey-section__legend {
  margin: 0 0 1.15rem;
  padding: 0;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--survey-navy);
}

@media (min-width: 768px) {
  .patient-survey-section__legend {
    font-size: 1.25rem;
  }
}

.patient-survey-question {
  margin: 0 0 1.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.patient-survey-question:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.patient-survey-question__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 2rem;
  height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 0.4rem;
  background: var(--survey-red-soft);
  color: var(--survey-red);
  font-size: 0.8125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.patient-survey-question__text {
  flex: 1;
  min-width: 0;
}

.patient-survey-question__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.patient-survey-question__legend {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  padding: 0;
  max-width: 100%;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--survey-text);
}

.patient-survey-options {
  display: grid;
  gap: 0.55rem;
}

.patient-survey-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--survey-border);
  border-radius: 0.65rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.patient-survey-option:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.patient-survey-option:has(.patient-survey-option__input:checked) {
  border-color: var(--survey-red);
  background: var(--survey-red-soft);
  box-shadow: inset 3px 0 0 var(--survey-red);
}

.patient-survey-option__input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: var(--survey-red);
}

.patient-survey-option__label {
  flex: 1;
  min-width: 0;
  font-size: 0.96875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--survey-text);
}

.patient-survey-comment__textarea {
  display: block;
  width: 100%;
  min-height: 10rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--survey-border);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--survey-text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.55;
  resize: vertical;
}

.patient-survey-comment__textarea:hover {
  border-color: #cbd5e1;
}

.patient-survey-comment__counter {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-align: right;
}

.patient-survey-field-error {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
}

.patient-survey-question--invalid .patient-survey-option,
.patient-survey-question--invalid .patient-survey-comment__textarea {
  border-color: #fca5a5;
}

.patient-survey-actions {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--survey-border);
}

.patient-survey-actions__note {
  margin: 0 0 1.15rem;
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--survey-muted);
}

.patient-survey-actions__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-radius: 0.65rem;
  background: var(--survey-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.patient-survey-actions__submit:hover {
  background: #991b1b;
}

@media (max-width: 640px) {
  .patient-survey-form {
    padding: 1.15rem 1rem 1.35rem;
    border-radius: 0.875rem;
  }

  .patient-survey-question__legend {
    font-size: 1rem;
  }

  .patient-survey-actions__submit {
    width: 100%;
  }
}

/* Success */
.patient-survey-success {
  background: var(--survey-surface);
}

.patient-survey-success__panel {
  max-width: none;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--survey-border);
  border-radius: 1rem;
  background: #f8fafc;
}

.patient-survey-success__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--survey-red);
}

.patient-survey-success__title {
  margin: 0 0 0.85rem;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--survey-navy);
}

.patient-survey-success__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--survey-muted);
}

@media (max-width: 375px) {
  .patient-survey-hero__title {
    font-size: 1.625rem;
  }

  .patient-survey-heading {
    font-size: 1.5rem;
  }

  .patient-survey-option {
    padding-inline: 0.75rem;
  }
}

/* ?? Visiting schedule / programul de vizita page ?? */
.visit-page {
  --visit-red: #b91c1c;
  --visit-red-soft: #fef2f2;
  --visit-text: #0f172a;
  --visit-muted: #334155;
  --visit-border: #e2e8f0;
  --visit-surface: #ffffff;
  --visit-tint: #f8fafc;
  --visit-section-bg: #f1f5f9;
  color: var(--visit-text);
}

.visit-page .patient-page-section,
.visit-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .visit-page .patient-page-section,
  .visit-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .visit-page .patient-page-section,
  .visit-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .visit-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.visit-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .visit-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

/* Hero ? compact red Patient Area treatment */
.visit-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .visit-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.visit-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.visit-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.visit-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.visit-hero__breadcrumb a:focus-visible,
.visit-schedule-card__phone a:focus-visible,
.visit-back-nav__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.visit-schedule-card__phone a:focus-visible,
.visit-back-nav__link:focus-visible {
  outline-color: var(--visit-red);
}

.visit-hero__breadcrumb a:focus-visible {
  border-radius: 0.15rem;
}

.visit-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.visit-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.visit-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.visit-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .visit-hero__title {
    font-size: 2.25rem;
  }
}

.visit-hero__lead {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .visit-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Shared section labels */
.visit-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--visit-red);
}

.visit-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--visit-text);
  text-align: left;
}

@media (min-width: 768px) {
  .visit-heading {
    font-size: 2rem;
  }
}

/* General rules ? white */
.visit-rules {
  background: var(--visit-surface);
}

.visit-rules__prose {
  margin: 1rem 0 0;
  max-width: 48rem;
}

.visit-rules__prose p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--visit-muted);
  text-align: left;
}

.visit-rules__prose strong {
  font-weight: 700;
  color: var(--visit-text);
}

.visit-rules-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
}

@media (min-width: 768px) {
  .visit-rules-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.visit-rules-summary__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--visit-border);
  border-radius: 0.75rem;
  background: var(--visit-tint);
}

.visit-rules-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: var(--visit-red-soft);
  color: var(--visit-red);
  font-size: 0.95rem;
}

.visit-rules-summary__label {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.visit-rules-summary__value {
  margin: 0;
  font-size: 0.96875rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--visit-text);
}

/* Schedule section ? light blue-gray */
.visit-schedule-section {
  background:
    linear-gradient(180deg, #f1f5f9 0%, #f8fafc 55%, #f8fafc 100%);
}

.visit-schedule-section__header {
  margin: 0 0 1.75rem;
  max-width: 40rem;
}

.visit-schedule-section__lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--visit-muted);
}

.visit-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 700px) {
  .visit-schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.visit-schedule-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--visit-border);
  border-radius: 1rem;
  background: var(--visit-surface);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  overflow: visible;
}

@media (min-width: 768px) {
  .visit-schedule-card {
    padding: 1.75rem;
  }
}

.visit-schedule-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  padding: 0 0 1.05rem;
  border-bottom: 1px solid #f1f5f9;
}

.visit-schedule-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  max-width: 2.5rem;
  border-radius: 0.65rem;
  background: var(--visit-red-soft);
  color: var(--visit-red);
  font-size: 1.05rem;
}

.visit-schedule-card__heading {
  min-width: 0;
  flex: 1 1 auto;
}

.visit-schedule-card__header h3 {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--visit-text);
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 768px) {
  .visit-schedule-card__header h3 {
    font-size: 1.25rem;
  }
}

.visit-schedule-card__meta {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--visit-muted);
}

.visit-schedule-card__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  font-size: 0.96875rem;
  line-height: 1.6;
  color: var(--visit-muted);
}

.visit-schedule-card__row {
  min-width: 0;
  padding: 0;
}

.visit-schedule-card__row + .visit-schedule-card__row {
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.visit-schedule-card__label {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.visit-schedule-card__days {
  margin: 0 0 0.35rem;
  font-size: 0.96875rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--visit-text);
}

.visit-schedule-card__times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}

.visit-schedule-card__time {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  background: var(--visit-tint);
  border: 1px solid #e2e8f0;
  color: var(--visit-text);
  font-size: 0.9375rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  white-space: nowrap;
}

.visit-schedule-card__phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.5rem;
  margin: 0;
  min-height: 2.75rem;
  font-size: 0.96875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--visit-muted);
  font-variant-numeric: tabular-nums;
}

.visit-schedule-card__phone > i {
  color: var(--visit-red);
  font-size: 0.9rem;
}

.visit-schedule-card__phone-text {
  display: inline;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}

.visit-schedule-card__phone a {
  display: inline-block;
  padding: 0.65rem 0;
  color: var(--visit-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.visit-schedule-card__phone a:hover {
  color: #991b1b;
}

.visit-schedule-card__ext {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--visit-muted);
}

.visit-schedule-card__extensions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-schedule-card__extensions li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f8fafc;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--visit-text);
}

.visit-schedule-card__extensions li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.visit-schedule-card__extensions li:first-child {
  padding-top: 0.15rem;
}

.visit-schedule-card__extensions .visit-schedule-card__ext {
  font-weight: 700;
  color: var(--visit-muted);
  white-space: nowrap;
}

.visit-back-nav {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--visit-border);
}

.visit-back-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.visit-back-nav__link:hover {
  color: var(--visit-red);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.visit-back-nav__link i {
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .visit-rules__prose p {
    font-size: 0.9375rem;
  }

  .visit-schedule-card {
    padding: 1.2rem 1.1rem;
    border-radius: 0.875rem;
  }

  .visit-schedule-card__header {
    margin-bottom: 1rem;
    padding-bottom: 0.95rem;
  }

  .visit-schedule-card__header h3 {
    font-size: 1.0625rem;
  }

  .visit-schedule-section__header {
    margin-bottom: 1.5rem;
  }

  .visit-back-nav {
    margin-top: 1.65rem;
    padding-top: 1.35rem;
  }
}

@media (max-width: 375px) {
  .visit-hero__title {
    font-size: 1.625rem;
  }

  .visit-heading {
    font-size: 1.5rem;
  }

  .visit-schedule-card__time {
    font-size: 0.875rem;
  }

  .visit-schedule-card__extensions li {
    font-size: 0.875rem;
  }
}

@media (max-width: 320px) {
  .visit-page .patient-page-inner {
    padding-inline: 1rem;
  }

  .visit-schedule-card__phone a {
    word-break: break-word;
  }
}

/* ==========================================================================
   Public info & data protection (pacienti/informatii-publice-si-protectia-datelor.php)
   ========================================================================== */

.public-info-page {
  --public-info-red: #b91c1c;
  --public-info-red-soft: #fef2f2;
  --public-info-text: #0f172a;
  --public-info-muted: #334155;
  --public-info-border: #e2e8f0;
  --public-info-surface: #ffffff;
  --public-info-tint: #f1f5f9;
  --public-info-navy: #0f172a;
  color: var(--public-info-text);
}

.public-info-page .public-info-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.public-info-page .patient-page-section,
.public-info-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .public-info-page .patient-page-section,
  .public-info-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .public-info-page .patient-page-section,
  .public-info-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .public-info-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.public-info-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .public-info-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

.public-info-page #solicitare-informatii-publice,
.public-info-page #lista-documentelor,
.public-info-page #reclamatie-administrativa,
.public-info-page #protectia-datelor {
  scroll-margin-top: calc(var(--site-header-height) + 1rem);
}

.public-info-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .public-info-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.public-info-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.public-info-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.public-info-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.public-info-hero__breadcrumb a:focus-visible,
.public-info-nav__link:focus-visible,
.public-info-download__action:focus-visible,
.public-info-print-btn:focus-visible,
.public-info-back-nav__link:focus-visible,
.public-info-form input:focus-visible,
.public-info-form textarea:focus-visible,
.public-info-form .public-info-form__check input:focus-visible,
.public-info-privacy a:focus-visible,
.public-info-doclist a:focus-visible {
  outline: 2px solid var(--public-info-red);
  outline-offset: 3px;
}

.public-info-hero__breadcrumb a:focus-visible {
  outline-color: #fff;
}

.public-info-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.public-info-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 480px) {
  .public-info-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0;
    row-gap: 0.2rem;
  }

  .public-info-hero__breadcrumb span[aria-hidden="true"] {
    margin: 0 0.35rem;
  }
}

.public-info-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.public-info-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .public-info-hero__title {
    font-size: 2.25rem;
  }
}

.public-info-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .public-info-hero__lead {
    font-size: 1.0625rem;
  }
}

.public-info-intro {
  background: var(--public-info-surface);
}

.public-info-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--public-info-red);
}

.public-info-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--public-info-navy);
  text-align: left;
}

@media (min-width: 768px) {
  .public-info-heading {
    font-size: 2rem;
  }
}

.public-info-lead,
.public-info-section__lead {
  margin: 1rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--public-info-muted);
  text-align: left;
}

.public-info-nav {
  margin-top: 2rem;
}

.public-info-nav__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .public-info-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .public-info-nav__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.public-info-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--public-info-border);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--public-info-navy);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.public-info-nav__link:hover {
  border-color: #cbd5e1;
  color: var(--public-info-red);
}

.public-info-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: var(--public-info-red-soft);
  color: var(--public-info-red);
}

.public-info-section--tint {
  background: var(--public-info-tint);
}

.public-info-section--white,
.public-info-back-nav-section {
  background: var(--public-info-surface);
}

.public-info-section__header {
  margin-bottom: 1.5rem;
}

.public-info-download {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--public-info-border);
  border-radius: 0.875rem;
  background: #fff;
}

@media (min-width: 768px) {
  .public-info-download {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.2rem 1.35rem;
  }
}

.public-info-download__main {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.public-info-download__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--public-info-red-soft);
  color: var(--public-info-red);
  font-size: 1.05rem;
}

.public-info-download__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--public-info-navy);
}

.public-info-download__meta {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.public-info-download__action,
.public-info-print-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--public-info-red);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--public-info-red);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
}

.public-info-download__action:hover,
.public-info-print-btn:hover {
  background: var(--public-info-red);
  color: #fff;
}

@media (max-width: 639px) {
  .public-info-download__action,
  .public-info-print-btn {
    width: 100%;
  }
}

.public-info-form-note {
  margin: 0 0 1.25rem;
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--public-info-muted);
}

.public-info-document {
  max-width: none;
  width: 100%;
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--public-info-border);
  border-radius: 1rem;
  background: #fff;
}

@media (min-width: 768px) {
  .public-info-document {
    padding: 2rem 2.25rem;
  }
}

.public-info-document__institution {
  display: none;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #334155;
}

.public-info-document__institution p {
  margin: 0 0 0.2rem;
}

.public-info-document__form-title {
  margin-top: 0.85rem !important;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.public-info-form__group {
  margin-bottom: 1.15rem;
}

.public-info-form__group label,
.public-info-form__fieldset legend {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--public-info-navy);
}

.public-info-form__hint {
  margin: 0 0 0.4rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

.public-info-form input[type="text"],
.public-info-form input[type="email"],
.public-info-form input[type="tel"],
.public-info-form input[type="date"],
.public-info-form textarea,
.public-info-form__inline-input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  background: #fff;
  color: var(--public-info-text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.public-info-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.public-info-form__inline-input {
  display: inline-block;
  width: auto;
  min-width: 8rem;
  max-width: 100%;
  margin: 0.25rem 0.35rem;
  vertical-align: middle;
}

.public-info-form__legal {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--public-info-muted);
}

.public-info-form__legal p {
  margin: 0;
}

.public-info-form__fieldset {
  margin: 0 0 1.35rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--public-info-border);
  border-radius: 0.75rem;
  background: #f8fafc;
}

.public-info-form__choice + .public-info-form__choice {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.public-info-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--public-info-navy);
  cursor: pointer;
}

.public-info-form__check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--public-info-red);
}

.public-info-form__inline-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .public-info-form__inline-fields,
  .public-info-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.public-info-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.public-info-form__thanks {
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--public-info-muted);
}

.public-info-form__actions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--public-info-border);
}

.public-info-document--list {
  max-width: none;
  width: 100%;
}

.public-info-document__list-title {
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--public-info-border);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--public-info-navy);
}

.public-info-doclist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-info-doclist > li + li {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.public-info-doclist h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--public-info-navy);
}

.public-info-doclist__marker {
  color: var(--public-info-red);
  margin-right: 0.25rem;
}

.public-info-doclist ul {
  margin: 0;
  padding-left: 1.25rem;
}

.public-info-doclist li li {
  margin: 0.4rem 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--public-info-muted);
}

.public-info-doclist a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-word;
}

.public-info-doclist a:hover {
  color: var(--brand-blue-hover);
}

.public-info-document__signatory {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--public-info-border);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--public-info-navy);
  text-align: center;
}

.public-info-privacy {
  max-width: none;
  width: 100%;
}

.public-info-privacy__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--public-info-navy);
  letter-spacing: 0.02em;
}

.public-info-privacy__subtitle {
  margin: 0.35rem 0 1.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--public-info-muted);
}

.public-info-privacy__body {
  max-width: none;
  width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--public-info-muted);
}

.public-info-privacy__body > * + * {
  margin-top: 1.25rem;
}

.public-info-privacy__body h3 {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--public-info-border);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--public-info-navy);
}

.public-info-privacy__body a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-word;
}

.public-info-privacy__body a:hover {
  color: var(--brand-blue-hover);
}

.public-info-back-nav {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--public-info-border);
}

.public-info-back-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.public-info-back-nav__link:hover {
  color: var(--public-info-red);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.public-info-back-nav__link i {
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  html:has(.public-info-page) {
    scroll-behavior: smooth;
  }
}

@media (max-width: 480px) {
  .public-info-hero__title {
    font-size: 1.625rem;
  }

  .public-info-heading {
    font-size: 1.5rem;
  }

  .public-info-document {
    padding: 1.15rem 1rem;
    border-radius: 0.875rem;
  }
}

@media (max-width: 320px) {
  .public-info-page .patient-page-inner {
    padding-inline: 1rem;
  }
}

@media print {
  .site-header,
  .site-footer,
  .public-info-hero,
  .public-info-intro,
  .public-info-nav,
  .public-info-download,
  .public-info-download--screen,
  .public-info-form-note,
  .public-info-form__actions,
  .public-info-back-nav-section,
  .public-info-print-btn {
    display: none !important;
  }

  .public-info-page,
  .public-info-section,
  .public-info-document,
  .public-info-form__fieldset {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  .public-info-page .patient-page-section {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .public-info-document {
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: none;
  }

  .public-info-document__institution {
    display: block !important;
  }

  .public-info-form input,
  .public-info-form textarea {
    border-color: #000 !important;
    background: #fff !important;
    color: #000 !important;
  }

  .public-info-form__fieldset {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  html[data-public-info-print="solicitare"] .public-info-section:not([data-print-section="solicitare"]),
  html[data-public-info-print="reclamatie"] .public-info-section:not([data-print-section="reclamatie"]) {
    display: none !important;
  }

  html[data-public-info-print="solicitare"] .public-info-section--white,
  html[data-public-info-print="reclamatie"] .public-info-section--white {
    display: none !important;
  }
}

/* ?? Cardiologie I department page ?? */
.cardiology-department-page {
  --cardio-text: #0f172a;
  --cardio-muted: #475569;
  --cardio-border: rgb(12 126 168 / 0.18);
  --cardio-surface: #ffffff;
  --cardio-section-alt: #f1f5f9;
  --visit-red: var(--brand-blue);
  --visit-red-soft: var(--brand-blue-soft);
  --visit-text: #0f172a;
  --visit-muted: #334155;
  --visit-border: #e2e8f0;
  --visit-surface: #ffffff;
  --access-red: #b91c1c;
  --access-red-soft: #fef2f2;
  --access-text: #0f172a;
  --access-muted: #475569;
  --access-border: #e2e8f0;
  --services-fees-text: #0f172a;
  --services-fees-border: #e2e8f0;
  --table-row-alt: #f8fafc;
  color: var(--cardio-text);
}

.cardiology-department-page .patient-page-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .cardiology-department-page .patient-page-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cardiology-department-page .patient-page-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.cardiology-department-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .cardiology-department-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

@media (max-width: 320px) {
  .cardiology-department-page .patient-page-inner {
    padding-inline: 1rem;
  }
}

/* Hero */
.cardiology-department-hero.institut-hero--subpage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: auto;
  justify-content: flex-start;
  background-color: #0a4f6e;
}

.cardiology-department-hero::before {
  background: linear-gradient(
    105deg,
    rgb(6 42 64 / 0.88) 0%,
    rgb(10 78 112 / 0.76) 38%,
    rgb(12 110 148 / 0.52) 100%
  );
}

.cardiology-department-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a4f6e;
}

.cardiology-department-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.cardiology-department-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 1.35rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .cardiology-department-hero__inner {
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }
}

.cardiology-department-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.88);
}

.cardiology-department-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.45);
  text-underline-offset: 3px;
}

.cardiology-department-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.cardiology-department-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 2px;
}

.cardiology-department-hero__content {
  max-width: none;
}

.cardiology-department-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.9);
}

.cardiology-department-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.22);
}

.cardiology-department-hero__lead {
  margin: 0.9rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 1024px) {
  .cardiology-department-hero__lead {
    font-size: 1.0625rem;
  }
}

/* Shared section headers */
.cardiology-section-header {
  margin: 0 0 1.75rem;
}

.cardiology-section-header__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.cardiology-section-header__title {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--cardio-text);
}

.cardiology-section-header__lead {
  margin: 0.85rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cardio-muted);
}

/* Activity */
.cardiology-activity {
  background: #fff;
}

.cardiology-activity__intro,
.cardiology-procedures__prose {
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.cardiology-activity__intro p + p,
.cardiology-procedures__prose > * + * {
  margin-top: 1rem;
}

.cardiology-activity__intro strong,
.cardiology-procedures__prose strong {
  color: var(--cardio-text);
  font-weight: 700;
}

.cardiology-activity__block {
  margin-top: 2.25rem;
}

.cardiology-activity__subtitle {
  margin: 0 0 1.1rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brand-blue);
}

.cardiology-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .cardiology-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .cardiology-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cardiology-service-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cardiology-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--cardio-border);
  border-radius: 0.9rem;
  background: var(--cardio-surface);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.cardiology-service-item__icon {
  flex: 0 0 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.05rem;
  line-height: 1;
}

.cardiology-service-item__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.96875rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--cardio-text);
}

.cardiology-procedures__list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  max-width: none;
  list-style: disc;
  color: #334155;
}

.cardiology-procedures__list > li {
  padding-left: 0.15rem;
  font-size: 1rem;
  line-height: 1.65;
}

.cardiology-procedures__list > li + li {
  margin-top: 0.85rem;
}

.cardiology-procedures__label {
  font-weight: 700;
  color: var(--cardio-text);
}

/* Structure */
.cardiology-structure {
  background: var(--cardio-section-alt);
}

.cardiology-structure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .cardiology-structure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.cardiology-unit-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--cardio-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

@media (min-width: 768px) {
  .cardiology-unit-card {
    padding: 1.75rem;
  }
}

.cardiology-unit-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin: 0 0 1.1rem;
  padding: 0 0 1.05rem;
  border-bottom: 1px solid #e2e8f0;
}

.cardiology-unit-card__icon {
  flex: 0 0 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.2rem;
}

.cardiology-unit-card__titles {
  min-width: 0;
  flex: 1 1 auto;
}

.cardiology-unit-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brand-blue);
}

.cardiology-unit-card__beds {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cardio-text);
}

.cardiology-unit-card__meta {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}

.cardiology-unit-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.cardiology-unit-card__list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.05rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--cardio-muted);
  border-bottom: 1px solid #f1f5f9;
}

.cardiology-unit-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cardiology-unit-card__list li::before {
  content: ";
 position: absolute;
 left: 0;
 top: 1.15rem;
 width: 0.4rem;
 height: 0.4rem;
 border-radius: 999px;
 background: var(--brand-blue);
}

/* Medical team */
.medical-team-section {
 background: #fff;
}

.medical-team-group + .medical-team-group {
 margin-top: 2.25rem;
}

.medical-team-group__title {
 margin: 0 0 1.1rem;
 font-size: 1.0625rem;
 font-weight: 800;
 line-height: 1.35;
 color: var(--brand-blue);
}

.medical-team-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.15rem;
 align-items: stretch;
}

@media (min-width: 420px) {
 .medical-team-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (min-width: 768px) {
 .medical-team-grid {
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1.25rem;
 }
}

@media (min-width: 1024px) {
 .medical-team-grid {
 grid-template-columns: repeat(4, minmax(0, 1fr));
 }
}

@media (min-width: 1280px) {
 .medical-team-grid {
 grid-template-columns: repeat(5, minmax(0, 1fr));
 gap: 1.25rem;
 }
}

@media (max-width: 359px) {
 .medical-team-grid {
 grid-template-columns: 1fr;
 }
}

.medical-team-grid--compact {
  grid-template-columns: 1fr;
  max-width: none;
}

@media (min-width: 480px) {
  .medical-team-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

.medical-team-card {
 display: flex;
 flex-direction: column;
 min-width: 0;
 height: 100%;
 overflow: hidden;
 border: 1px solid var(--cardio-border);
 border-radius: 0.95rem;
 background: #fff;
 box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.medical-team-card__image {
 position: relative;
 aspect-ratio: 4 / 5;
 overflow: hidden;
 background: #eef6fa;
 border-bottom: 1px solid rgb(12 126 168 / 0.1);
}

.medical-team-card__image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 display: block;
}

.medical-team-card--placeholder .medical-team-card__image {
 background: #e8f3f8;
}

.medical-team-card--placeholder .medical-team-card__image img {
 object-fit: contain;
 object-position: center;
 padding: 1.25rem;
 background: #e8f3f8;
}

.medical-team-card__content {
 display: flex;
 flex: 1 1 auto;
 flex-direction: column;
 gap: 0.4rem;
 padding: 0.95rem 1rem 1.1rem;
}

.medical-team-card__name {
 margin: 0;
 font-size: 1.015625rem;
 font-weight: 700;
 line-height: 1.3;
 color: var(--cardio-text);
}

.medical-team-card__role {
 margin: 0;
 font-size: 0.8125rem;
 font-weight: 600;
 line-height: 1.4;
 color: var(--brand-blue);
}

.medical-team-card__bio {
 margin: 0.1rem 0 0;
 font-size: 0.8125rem;
 line-height: 1.5;
 color: var(--cardio-muted);
}

.medical-team-card--featured {
  display: grid;
  grid-template-columns: 1fr;
  max-width: none;
  width: 100%;
  border-color: rgb(12 126 168 / 0.28);
}

@media (min-width: 640px) {
 .medical-team-card--featured {
 grid-template-columns: minmax(0, 11.5rem) minmax(0, 1fr);
 align-items: stretch;
 }

 .medical-team-card--featured .medical-team-card__image {
 aspect-ratio: auto;
 min-height: 100%;
 border-bottom: none;
 border-right: 1px solid rgb(12 126 168 / 0.1);
 }

 .medical-team-card--featured .medical-team-card__content {
 justify-content: center;
 padding: 1.35rem 1.5rem;
 }

 .medical-team-card--featured .medical-team-card__name {
 font-size: 1.1875rem;
 }
}

.cardiology-department-page .institut-highlight-band > p {
  max-width: none;
}

.cardiology-department-page .emergency-alert {
  margin-top: 0;
}

.cardiology-department-page .patient-page-section--alert-compact {
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .cardiology-department-page .patient-page-section--alert-compact {
    padding-bottom: 1rem;
  }
}

.cardiology-department-page .cardiology-service-item--full {
  width: 100%;
}

.cardiology-department-page .access-section .cardiology-section-header__eyebrow {
  margin-bottom: 0.35rem;
}

.cardiology-department-page .ct-tariff-table--schedule {
  min-width: 48rem;
}

.cardiology-department-page .ct-tariff-table--schedule thead th:last-child,
.cardiology-department-page .ct-tariff-table--schedule tbody td:last-child {
  text-align: left;
  white-space: normal;
  font-variant-numeric: normal;
  font-weight: inherit;
  color: inherit;
}

.cardiology-department-page .ct-tariff-table--schedule tbody td:first-child {
  width: 12rem;
  color: var(--services-fees-text);
  font-weight: 700;
}

.cardiology-department-page .ct-tariff-table--schedule tbody td:not(:first-child) {
  font-size: 0.875rem;
  color: #475569;
}

@media (max-width: 720px) {
  .cardiology-department-page .ct-tariff-table--schedule tbody td:last-child::after {
    content: none;
  }
}

.cardiology-department-page .emergency-alert h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
}

@media (min-width: 768px) {
  .cardiology-department-page .emergency-alert h2 {
    font-size: 1.5rem;
  }
}

.cardiology-department-page .institut-faq {
  max-width: none;
  margin-inline: 0;
  width: 100%;
}

.cardiology-department-page .institut-pathway {
  display: grid;
  max-width: none;
  margin-inline: 0;
  width: 100%;
  justify-items: stretch;
}

.cardiology-department-page .institut-highlight-band + .institut-pathway,
.cardiology-department-page .institut-journey-grid + .institut-pathway {
  margin-top: 2.5rem;
}

.cardiology-department-page .institut-pathway__step {
  width: 100%;
}

.cardiology-department-page .institut-pathway__body {
  min-width: 0;
  flex: 1 1 auto;
}

.cardiology-department-page .visit-schedule-card__times {
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.cardiology-department-page .visit-schedule-card__times--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.cardiology-department-page .visit-schedule-card__row--phone-inline .visit-schedule-card__label {
  display: inline;
  margin: 0 0.65rem 0 0;
  vertical-align: middle;
}

.cardiology-department-page .visit-schedule-card__row--phone-inline .visit-schedule-card__phone {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  min-height: 0;
}

.cardiology-department-page .visit-schedule-card__row--phone-inline .visit-schedule-card__phone a {
  padding: 0;
}

.cardiology-department-page .institut-equipment-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cardiology-department-page .institut-equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cardiology-department-page .institut-equipment-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cardiology-department-page .visit-schedule-card__details--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cardiology-department-page .visit-schedule-card__details--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
  }

  .cardiology-department-page .visit-schedule-card__details--split .visit-schedule-card__row + .visit-schedule-card__row {
    padding-top: 0;
    border-top: none;
    padding-left: 1.5rem;
    border-left: 1px solid #f1f5f9;
  }
}

/* Patient / visitor info */
.patient-visitor-info {
  background: var(--cardio-section-alt);
}

.cardiology-department-page .visit-schedule-grid:has(> :only-child) {
  grid-template-columns: 1fr;
}

.patient-visitor-info .visit-schedule-card__icon {
 background: var(--brand-blue-soft);
 color: var(--brand-blue);
}

.patient-visitor-info .visit-schedule-card__phone > i,
.patient-visitor-info .visit-schedule-card__phone a {
 color: var(--brand-blue);
}

.patient-visitor-info .visit-schedule-card__phone a:hover {
 color: var(--brand-blue-hover);
}

.patient-visitor-info .visit-schedule-card__phone a:focus-visible {
 outline: 2px solid var(--brand-blue);
 outline-offset: 2px;
 border-radius: 2px;
}

/* ==========================================================================
   COVID-19 advice page (pacienti/covid-19-sfaturi-pentru-pacienti.php)
   ========================================================================== */

.covid-advice-page {
  --covid-red: #b91c1c;
  --covid-red-soft: #fef2f2;
  --covid-text: #0f172a;
  --covid-muted: #334155;
  --covid-border: #e2e8f0;
  --covid-surface: #ffffff;
  --covid-tint: #f1f5f9;
  --covid-navy: #0f172a;
  color: var(--covid-text);
}

.covid-advice-page .patient-page-section,
.covid-advice-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .covid-advice-page .patient-page-section,
  .covid-advice-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .covid-advice-page .patient-page-section,
  .covid-advice-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .covid-advice-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.covid-advice-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .covid-advice-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

.covid-advice-page [id] {
  scroll-margin-top: 7rem;
}

.covid-advice-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .covid-advice-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.covid-advice-hero__breadcrumb {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(254 226 226 / 0.88);
}

.covid-advice-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(254 202 202 / 0.55);
  text-underline-offset: 0.2em;
}

.covid-advice-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.covid-advice-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.covid-advice-hero__breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.65;
}

.covid-advice-hero__breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.covid-advice-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.covid-advice-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .covid-advice-hero__title {
    font-size: 2.25rem;
  }
}

.covid-advice-hero__lead {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .covid-advice-hero__lead {
    font-size: 1.0625rem;
  }
}

.covid-advice-intro {
  background: var(--covid-surface);
}

.covid-advice-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--covid-red);
}

.covid-advice-heading {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--covid-navy);
}

@media (min-width: 768px) {
  .covid-advice-heading {
    font-size: 2rem;
  }
}

.covid-advice-lead {
  margin: 0 0 1.25rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--covid-muted);
}

.covid-advice-lead--compact {
  margin-bottom: 1.75rem;
}

.covid-advice-source-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0 0 1.75rem;
  max-width: none;
  padding: 1rem 1.1rem;
  border: 1px solid var(--covid-border);
  border-radius: 0.85rem;
  background: #f8fafc;
}

.covid-advice-source-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--covid-red-soft);
  color: var(--covid-red);
  font-size: 0.95rem;
}

.covid-advice-source-note p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--covid-muted);
}

.covid-advice-source-note p + p {
  margin-top: 0.55rem;
}

.covid-advice-document__action:focus-visible,
.covid-advice-downloads__link:focus-visible,
.covid-advice-gallery__link:focus-visible,
.covid-advice-content a:focus-visible,
.covid-advice-top-link a:focus-visible {
  outline: 2px solid var(--covid-red);
  outline-offset: 3px;
}

.covid-advice-documents {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .covid-advice-documents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.covid-advice-document {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 100%;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--covid-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.covid-advice-document__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--covid-red-soft);
  color: var(--covid-red);
  font-size: 1.15rem;
}

.covid-advice-document__title {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--covid-navy);
}

.covid-advice-document__desc {
  margin: 0 0 0.7rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--covid-muted);
}

.covid-advice-document__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  margin: 0 0 0.95rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}

.covid-advice-document__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid #fecaca;
  border-radius: 0.65rem;
  background: #fff;
  color: var(--covid-red);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.covid-advice-document__action:hover {
  background: var(--covid-red-soft);
  border-color: #fca5a5;
}

.covid-advice-section--tint {
  background: var(--covid-tint);
}

.covid-advice-section--white,
.covid-advice-downloads {
  background: var(--covid-surface);
}

.covid-advice-section__head {
  margin-bottom: 1.75rem;
}

.covid-advice-section__meta {
  margin: 0;
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.covid-advice-content {
  max-width: none;
}

.covid-advice-content > * + * {
  margin-top: 1.15rem;
}

.covid-advice-content h3 {
  margin: 2rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid #e2e8f0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--covid-navy);
}

.covid-advice-content h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.covid-advice-content p,
.covid-advice-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--covid-muted);
}

.covid-advice-content p {
  margin: 0;
}

.covid-advice-content ul,
.covid-advice-content ol {
  margin: 0;
  padding-left: 1.25rem;
}

.covid-advice-content li + li {
  margin-top: 0.7rem;
}

.covid-advice-content a {
  color: var(--covid-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-word;
}

.covid-advice-content a:hover {
  color: #991b1b;
}

.covid-advice-callout {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #64748b;
  border-radius: 0.75rem;
  background: #fff;
}

.covid-advice-callout--info {
  border-left-color: #0ea5e9;
  background: #f0f9ff;
}

.covid-advice-callout--warn {
  border-left-color: var(--covid-red);
  background: #fff7f7;
}

.covid-advice-callout__label {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--covid-navy);
}

.covid-advice-callout p,
.covid-advice-callout li {
  color: #334155;
}

.covid-advice-callout p + p,
.covid-advice-callout ul {
  margin-top: 0.65rem;
}

.covid-advice-callout ul {
  margin-bottom: 0;
}

.covid-advice-footnotes {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--covid-border);
}

.covid-advice-footnotes h3 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 1.125rem;
}

.covid-advice-footnotes ol {
  padding-left: 1.35rem;
}

.covid-advice-footnotes li,
.covid-advice-footnotes__note {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.covid-advice-footnotes li + li {
  margin-top: 0.85rem;
}

.covid-advice-fnref {
  margin-left: 0.1rem;
  font-size: 0.75em;
  font-weight: 700;
  text-decoration: none;
}

.covid-advice-fnback {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.covid-advice-author {
  font-weight: 700;
  color: var(--covid-navy);
}

.covid-advice-bibliography {
  word-break: break-word;
}

.covid-advice-top-link {
  margin-top: 2rem !important;
}

.covid-advice-top-link a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
}

.covid-advice-top-link a:hover {
  color: var(--covid-red);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.covid-advice-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .covid-advice-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.covid-advice-gallery__item {
  margin: 0;
}

.covid-advice-gallery__link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--covid-border);
  border-radius: 0.75rem;
  background: #fff;
  text-decoration: none;
}

.covid-advice-gallery__link:hover {
  border-color: #cbd5e1;
}

.covid-advice-gallery__link img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.covid-advice-gallery__caption {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.covid-advice-downloads__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
}

.covid-advice-downloads__link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 4.25rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid var(--covid-border);
  border-radius: 0.85rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.covid-advice-downloads__link:hover {
  border-color: #fecaca;
  background: #fffafa;
}

.covid-advice-downloads__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: var(--covid-red-soft);
  color: var(--covid-red);
  font-size: 1.05rem;
}

.covid-advice-downloads__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.covid-advice-downloads__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--covid-navy);
}

.covid-advice-downloads__action {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--covid-red);
}

@media (max-width: 640px) {
  .covid-advice-hero__title {
    font-size: 1.625rem;
  }

  .covid-advice-heading {
    font-size: 1.5rem;
  }

  .covid-advice-document {
    flex-direction: column;
    gap: 0.85rem;
  }

  .covid-advice-content p,
  .covid-advice-content li {
    font-size: 0.9875rem;
  }
}

@media (max-width: 375px) {
  .covid-advice-page .patient-page-inner {
    padding-inline: 1rem;
  }

  .covid-advice-document__action,
  .covid-advice-downloads__title {
    font-size: 0.9375rem;
  }
}

@media (max-width: 320px) {
  .covid-advice-hero__title {
    font-size: 1.5rem;
  }

  .covid-advice-source-note,
  .covid-advice-document,
  .covid-advice-downloads__link {
    padding-inline: 0.9rem;
  }
}

/* ==========================================================================
   Research page (institut/cercetare.php)
   ========================================================================== */

.research-page {
  --research-text: #0f172a;
  --research-muted: #334155;
  --research-soft: #f1f5f9;
  --research-border: rgb(12 126 168 / 0.16);
  --research-blue: var(--brand-blue);
  --research-blue-soft: var(--brand-blue-soft);
}

.research-page .research-hero .cardiology-department-hero__content {
  max-width: 38rem;
}

.research-page .research-hero .cardiology-department-hero__lead {
  max-width: 34rem;
}

.research-intro__prose {
  max-width: none;
  margin-top: 1.25rem;
}

.research-intro__prose p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--research-muted);
}

.research-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
}

.research-page__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--research-blue);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgb(12 126 168 / 0.35);
}

.research-page__nav a:hover {
  background: transparent;
  color: #0a5f80;
  text-decoration-color: currentColor;
}

.research-page__nav a:focus-visible {
  outline: 2px solid var(--research-blue);
  outline-offset: 3px;
}

.research-stats {
  padding: 3.5rem 0;
  background: var(--research-blue);
  color: #fff;
}

@media (min-width: 768px) {
  .research-stats {
    padding: 4.5rem 0;
  }
}

.research-stats__eyebrow {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.85);
}

.research-stats__title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.research-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .research-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .research-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.research-stat {
  padding: 1.35rem 1.2rem;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.1);
  text-align: center;
}

.research-stat__value {
  margin: 0;
  font-size: clamp(2.125rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.research-stat__label {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(248 250 252 / 0.9);
}

.research-project__overview {
  max-width: none;
  margin-top: 1.5rem;
}

.research-project__overview p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--research-muted);
}

.research-project__overview p + p {
  margin-top: 1rem;
}

.research-project__overview strong {
  color: var(--research-text);
  font-weight: 700;
}

.research-project__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border: 1px solid var(--research-border);
  border-radius: 0.9rem;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .research-project__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .research-project__facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.research-project__fact {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--research-border);
}

@media (min-width: 768px) {
  .research-project__fact:nth-child(odd) {
    border-right: 1px solid var(--research-border);
  }

  .research-project__fact:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .research-project__fact {
    border-bottom: none;
    border-right: 1px solid var(--research-border);
  }

  .research-project__fact:last-child {
    border-right: none;
  }

  .research-project__fact:nth-child(odd) {
    border-right: 1px solid var(--research-border);
  }
}

.research-project__fact dt {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--research-blue);
}

.research-project__fact dd {
  margin: 0;
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
  color: var(--research-text);
}

.research-project__objectives-lead {
  max-width: none;
  margin: 2rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--research-muted);
}

.research-project__objectives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .research-project__objectives {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.research-project__objective {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  height: 100%;
  padding: 1.15rem 1.15rem;
  border: 1px solid var(--research-border);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.03);
}

.research-project__objective-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: var(--research-blue-soft);
  color: var(--research-blue);
  font-size: 0.95rem;
}

.research-project__objective-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: #334155;
}

.research-project__coordination {
  max-width: none;
  margin-top: 2rem;
}

.research-project__coordination p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--research-muted);
}

.research-project__coordination strong {
  color: var(--research-text);
}

.research-project__contact {
  max-width: none;
  width: 100%;
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--research-border);
  border-radius: 0.9rem;
  background: #fff;
}

.research-project__contact-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--research-blue);
}

.research-project__contact-name {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--research-muted);
}

.research-project__contact-name strong {
  color: var(--research-text);
}

.research-project__contact-label {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.research-project__contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 0.25rem;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--research-blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-word;
}

.research-project__contact-email:hover {
  color: #0a5f80;
}

.research-project__contact-email:focus-visible {
  outline: 2px solid var(--research-blue);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.research-studies__list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border-top: 1px solid var(--research-border);
}

.research-study {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.15rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--research-border);
}

.research-study__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--research-blue-soft);
  color: var(--research-blue);
  font-size: 0.875rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.research-study__content h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--research-text);
}

.research-study__description {
  max-width: none;
  margin-top: 0.7rem;
}

.research-study__description p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--research-muted);
}

.research-study__description p + p,
.research-study__description p + ul,
.research-study__description ul + p {
  margin-top: 0.85rem;
}

.research-study__description strong {
  color: var(--research-text);
  font-weight: 700;
}

.research-study__description ul {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.research-study__description li {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--research-muted);
}

.research-study__description li + li {
  margin-top: 0.45rem;
}

.research-study__meta {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.research-publications__list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border-top: 1px solid var(--research-border);
}

.research-publication {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--research-border);
}

.research-publication h3 {
  margin: 0;
  max-width: none;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--research-text);
}

.research-publication p {
  max-width: none;
  margin: 0.7rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--research-muted);
}

@media (max-width: 480px) {
  .research-study {
    gap: 0.85rem;
  }

  .research-study__number {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .research-study__content h3,
  .research-publication h3 {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   European projects page (institut/proiecte-europene.php)
   Scoped under .eu-projects-page - do not leak globally
   ========================================================================== */

.eu-projects-page {
  --eu-text: #0f172a;
  --eu-muted: #334155;
  --eu-subtle: #64748b;
  --eu-soft: #f1f5f9;
  --eu-border: rgb(12 126 168 / 0.16);
  --eu-blue: var(--brand-blue);
  --eu-blue-hover: var(--brand-blue-hover);
  --eu-blue-soft: var(--brand-blue-soft);
  color: var(--eu-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.eu-projects-page .eu-projects-hero.cardiology-department-hero::before {
  background: linear-gradient(
    105deg,
    rgb(8 36 56 / 0.82) 0%,
    rgb(10 68 98 / 0.68) 42%,
    rgb(12 100 136 / 0.48) 100%
  );
}

.eu-projects-page .eu-projects-hero .cardiology-department-hero__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.9rem;
}

@media (min-width: 768px) {
  .eu-projects-page .eu-projects-hero .cardiology-department-hero__inner {
    padding-top: 1.75rem;
    padding-bottom: 2.15rem;
  }
}

.eu-projects-page .eu-projects-hero .cardiology-department-hero__breadcrumb {
  margin-bottom: 1.05rem;
}

.eu-projects-page .eu-projects-hero .cardiology-department-hero__eyebrow {
  margin-bottom: 0.65rem;
}

.eu-projects-page .eu-projects-hero .cardiology-department-hero__title {
  margin-bottom: 0.85rem;
}

.eu-projects-page .cardiology-department-hero__content {
  max-width: none;
}

.eu-projects-page .cardiology-department-hero__lead {
  max-width: none;
}

.eu-projects-page .patient-page-section,
.eu-projects-page .eu-projects-section,
.eu-projects-page .eu-statistics,
.eu-projects-page .eu-project-faq {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .eu-projects-page .patient-page-section,
  .eu-projects-page .eu-projects-section,
  .eu-projects-page .eu-statistics,
  .eu-projects-page .eu-project-faq {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .eu-projects-page .patient-page-section,
  .eu-projects-page .eu-projects-section,
  .eu-projects-page .eu-statistics,
  .eu-projects-page .eu-project-faq {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

/* Contribution ----------------------------------------------------------- */

.eu-projects-page .eu-contribution__prose {
  max-width: none;
  margin-top: 1.25rem;
}

.eu-projects-page .eu-contribution__prose p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--eu-muted);
}

.eu-projects-page .eu-contribution__prose p + p {
  margin-top: 0.9rem;
}

.eu-projects-page .eu-contribution__prose strong {
  color: var(--eu-text);
  font-weight: 700;
}

.eu-projects-page .eu-contribution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .eu-projects-page .eu-contribution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .eu-projects-page .eu-contribution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.eu-projects-page .eu-contribution-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--eu-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

@media (min-width: 768px) {
  .eu-projects-page .eu-contribution-card {
    padding: 1.5rem 1.35rem;
  }
}

.eu-projects-page .eu-contribution-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  font-size: 1.15rem;
  line-height: 1;
}

.eu-projects-page .eu-contribution-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--eu-text);
}

.eu-projects-page .eu-contribution-card__desc {
  margin: 0.65rem 0 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--eu-muted);
}

/* Statistics band -------------------------------------------------------- */

.eu-projects-page .eu-statistics {
  background: var(--eu-blue);
  color: #fff;
}

.eu-projects-page .eu-statistics__eyebrow {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.85);
}

.eu-projects-page .eu-statistics__title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.eu-projects-page .eu-statistics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .eu-projects-page .eu-statistics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .eu-projects-page .eu-statistics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.eu-projects-page .eu-statistic {
  padding: 1.35rem 1.2rem;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.1);
  text-align: center;
}

.eu-projects-page .eu-statistic__value {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: #fff;
}

.eu-projects-page .eu-statistic__label {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.9);
}

/* Projects listing ------------------------------------------------------- */

.eu-projects-page .eu-projects-section {
  background: var(--eu-soft);
}

.eu-projects-page .cardiology-structure.eu-projects-section,
.eu-projects-page .cardiology-structure:has(.eu-project-grid) {
  background: var(--eu-soft);
}

.eu-projects-page .eu-projects-section__lead {
  max-width: none;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--eu-muted);
}

.eu-projects-page .eu-project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.eu-projects-page .eu-project-filters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.45rem 1.05rem;
  border: 1px solid var(--eu-border);
  border-radius: 999px;
  background: #fff;
  color: var(--eu-muted);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.eu-projects-page .eu-project-filters__btn:hover {
  border-color: rgb(12 126 168 / 0.42);
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
}

.eu-projects-page .eu-project-filters__btn.is-active {
  border-color: var(--eu-blue);
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  box-shadow: inset 0 0 0 1px var(--eu-blue);
}

.eu-projects-page .eu-project-filters__btn:focus-visible {
  outline: 2px solid var(--eu-blue);
  outline-offset: 3px;
}

.eu-projects-page .eu-project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .eu-projects-page .eu-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.eu-projects-page .eu-project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--eu-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.05);
}

@media (min-width: 768px) {
  .eu-projects-page .eu-project-card {
    padding: 1.6rem 1.45rem;
  }
}

.eu-projects-page .eu-project-card.is-hidden {
  display: none !important;
}

.eu-projects-page .eu-project-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.eu-projects-page .eu-project-card__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.eu-projects-page .eu-project-card__status--current {
  border-color: rgb(22 101 52 / 0.18);
  background: #dcfce7;
  color: #166534;
}

.eu-projects-page .eu-project-card__status--completed {
  border-color: rgb(12 126 168 / 0.22);
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
}

.eu-projects-page .eu-project-card__status--archived {
  border-color: #e2e8f0;
  background: #f1f5f9;
  color: #64748b;
}

.eu-projects-page .eu-project-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--eu-text);
}

.eu-projects-page .eu-project-card__programme {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--eu-subtle);
}

.eu-projects-page .eu-project-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

.eu-projects-page .eu-project-card__description {
  margin: 0.9rem 0 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--eu-muted);
}

.eu-projects-page .eu-project-card__meta {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--eu-border);
  font-size: 0.875rem;
  line-height: 1.5;
}

.eu-projects-page .eu-project-card__meta > div {
  display: grid;
  grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
  gap: 0.35rem 0.85rem;
  align-items: start;
}

.eu-projects-page .eu-project-card__meta dt {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--eu-text);
}

.eu-projects-page .eu-project-card__meta dd {
  margin: 0;
  color: var(--eu-muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

.eu-projects-page .eu-project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.eu-projects-page .eu-project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgb(12 126 168 / 0.28);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--eu-blue);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.eu-projects-page .eu-project-card__link:hover {
  border-color: var(--eu-blue);
  background: var(--eu-blue-soft);
  color: var(--eu-blue-hover);
}

.eu-projects-page .eu-project-card__link:focus-visible {
  outline: 2px solid var(--eu-blue);
  outline-offset: 3px;
}

.eu-projects-page .eu-project-card__note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: var(--eu-soft);
  color: var(--eu-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Evolution timeline ----------------------------------------------------- */

.eu-projects-page .eu-project-evolution {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.eu-projects-page .eu-project-evolution__item {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 0 0 1.85rem 1.65rem;
}

.eu-projects-page .eu-project-evolution__item:last-child {
  padding-bottom: 0;
}

.eu-projects-page .eu-project-evolution__item::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0.3rem;
  bottom: 0;
  width: 2px;
  background: rgb(12 126 168 / 0.2);
}

.eu-projects-page .eu-project-evolution__item:last-child::before {
  display: none;
}

.eu-projects-page .eu-project-evolution__item::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0.05rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid var(--eu-blue);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 3px var(--eu-blue-soft);
}

.eu-projects-page .eu-project-evolution__year {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--eu-blue);
  font-variant-numeric: tabular-nums;
}

.eu-projects-page .eu-project-evolution__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  color: var(--eu-muted);
}

.eu-projects-page .eu-project-evolution__list li {
  font-size: 0.975rem;
  line-height: 1.65;
}

.eu-projects-page .eu-project-evolution__list li + li {
  margin-top: 0.4rem;
}

@media (min-width: 768px) {
  .eu-projects-page .eu-project-evolution__item {
    grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
    gap: 1rem 1.5rem;
    padding-left: 1.85rem;
  }
}

/* Impact ----------------------------------------------------------------- */

.eu-projects-page .eu-project-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .eu-projects-page .eu-project-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .eu-projects-page .eu-project-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.eu-projects-page .eu-project-impact-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--eu-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.eu-projects-page .eu-project-impact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border-radius: 0.7rem;
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  font-size: 1.05rem;
  line-height: 1;
}

.eu-projects-page .eu-project-impact-card h3,
.eu-projects-page .eu-project-impact-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--eu-text);
}

.eu-projects-page .eu-project-impact-card p {
  margin: 0.6rem 0 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--eu-muted);
}

/* Partners --------------------------------------------------------------- */

.eu-projects-page .eu-project-partners__group + .eu-project-partners__group {
  margin-top: 2.25rem;
}

.eu-projects-page .eu-project-partners__heading {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--eu-text);
}

.eu-projects-page .eu-project-partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .eu-projects-page .eu-project-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .eu-projects-page .eu-project-partners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.eu-projects-page .eu-project-partner {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--eu-border);
  border-radius: 1rem;
  background: #fff;
}

.eu-projects-page .eu-project-partner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border-radius: 0.65rem;
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  font-size: 1rem;
  line-height: 1;
}

.eu-projects-page .eu-project-partner__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--eu-text);
}

.eu-projects-page .eu-project-partner__role {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--eu-muted);
}

/* Resources -------------------------------------------------------------- */

.eu-projects-page .eu-project-resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .eu-projects-page .eu-project-resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .eu-projects-page .eu-project-resources {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.eu-projects-page .eu-project-resource {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--eu-border);
  border-radius: 1rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.eu-projects-page a.eu-project-resource:hover {
  border-color: rgb(12 126 168 / 0.4);
  background: #f8fafc;
}

.eu-projects-page a.eu-project-resource:focus-visible {
  outline: 2px solid var(--eu-blue);
  outline-offset: 3px;
}

.eu-projects-page .eu-project-resource--static {
  cursor: default;
}

.eu-projects-page .eu-project-resource__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border-radius: 0.7rem;
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  font-size: 1.05rem;
  line-height: 1;
}

.eu-projects-page .eu-project-resource__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--eu-text);
}

.eu-projects-page .eu-project-resource__desc {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--eu-muted);
}

.eu-projects-page .eu-project-resource__meta {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--eu-subtle);
}

/* FAQ -------------------------------------------------------------------- */

.eu-projects-page .eu-project-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: none;
  width: 100%;
}

.eu-projects-page .eu-faq-item {
  border: 1px solid var(--eu-border);
  border-radius: 0.85rem;
  background: #fff;
  overflow: hidden;
}

.eu-projects-page .eu-faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.eu-projects-page .eu-faq-item__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.95rem 1.15rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--eu-text);
}

.eu-projects-page .eu-faq-item__button::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
}

.eu-projects-page .eu-faq-item__button[aria-expanded="true"]::after {
  content: "\2013";
}

.eu-projects-page .eu-faq-item__button:hover {
  background: rgb(12 126 168 / 0.04);
}

.eu-projects-page .eu-faq-item__button:focus-visible {
  outline: 2px solid var(--eu-blue);
  outline-offset: -2px;
}

.eu-projects-page .eu-faq-item__panel {
  padding: 0 1.15rem 1.15rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--eu-muted);
}

.eu-projects-page .eu-faq-item__panel[hidden] {
  display: none;
}

.eu-projects-page .eu-faq-item__panel p {
  margin: 0;
}

.eu-projects-page .eu-faq-item__panel a {
  color: var(--eu-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.eu-projects-page .eu-faq-item__panel a:hover {
  color: var(--eu-blue-hover);
}

.eu-projects-page .eu-faq-item__panel a:focus-visible {
  outline: 2px solid var(--eu-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .eu-projects-page .eu-project-filters__btn,
  .eu-projects-page .eu-project-card__link,
  .eu-projects-page a.eu-project-resource {
    transition: none;
  }
}

/* ==========================================================================
   Administration document pages (Organigrama / Regulamente / Plan strategic)
   ========================================================================== */

.administration-document-page {
  --admin-doc-navy: #0f172a;
  --admin-doc-slate: #1e293b;
  --admin-doc-muted: #64748b;
  --admin-doc-border: rgb(30 41 59 / 0.16);
  --admin-doc-tint: #f8fafc;
  --admin-doc-surface: #ffffff;
  color: var(--admin-doc-slate);
}

.administration-document-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .administration-document-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

@media (max-width: 320px) {
  .administration-document-page .patient-page-inner {
    padding-inline: 1rem;
  }
}

body.page-administratie .administration-document-hero.institut-hero--subpage {
  min-height: auto;
  justify-content: flex-start;
  background-color: #0f172a;
}

body.page-administratie .administration-document-hero::before {
  background: linear-gradient(
    105deg,
    rgb(15 23 42 / 0.82) 0%,
    rgb(15 23 42 / 0.58) 42%,
    rgb(15 23 42 / 0.34) 100%
  );
}

.administration-document-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 1.35rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .administration-document-hero__inner {
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }
}

.administration-document-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.88);
}

.administration-document-hero__breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 0.45);
  text-underline-offset: 3px;
}

.administration-document-hero__breadcrumb a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.administration-document-hero__breadcrumb a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 2px;
}

.administration-document-hero__content {
  max-width: 42rem;
}

.administration-document-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.9);
}

.administration-document-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.22);
}

.administration-document-hero__lead {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.92);
}

@media (min-width: 768px) {
  .administration-document-hero__lead {
    font-size: 1.125rem;
  }
}

.administration-document-intro {
  background: var(--admin-doc-surface);
}

.administration-document-intro__eyebrow,
.administration-document-section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--admin-doc-muted);
}

.administration-document-intro__title,
.administration-document-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--admin-doc-navy);
}

.administration-document-intro__lead,
.administration-document-section__lead {
  margin: 1rem 0 0;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.administration-document-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-top: 1.5rem;
}

.administration-document-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.625rem;
  background: var(--admin-doc-surface);
  color: var(--admin-doc-slate);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.administration-document-nav a:hover {
  background: var(--admin-doc-tint);
  border-color: rgb(30 41 59 / 0.28);
  color: var(--admin-doc-navy);
}

.administration-document-nav a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 2px;
}

.administration-document-section {
  background: var(--admin-doc-surface);
}

.administration-document-section--tint {
  background: var(--admin-doc-tint);
}

.administration-document-section__header {
  margin-bottom: 1.5rem;
}

.administration-document-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .administration-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.administration-document {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: auto;
  min-width: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.administration-document__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: #e2e8f0;
  color: var(--admin-doc-slate);
  font-size: 1.1rem;
}

.administration-document__content {
  min-width: 0;
  flex: 1 1 auto;
}

.administration-document__meta {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--admin-doc-muted);
  font-variant-numeric: tabular-nums;
}

.administration-document__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .administration-document__title {
    font-size: 1.25rem;
  }
}

.administration-document__description {
  margin: 0.55rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.administration-document__action {
  margin-top: auto;
}

.administration-document__action a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--admin-doc-slate);
  border-radius: 0.625rem;
  background: transparent;
  color: var(--admin-doc-slate);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.administration-document__action a:hover {
  background: var(--admin-doc-slate);
  color: #fff;
}

.administration-document__action a:focus-visible {
  outline: 2px solid var(--admin-doc-navy);
  outline-offset: 2px;
}

.administration-document--unavailable {
  background: #f8fafc;
}

.administration-document__unavailable-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px dashed rgb(100 116 139 / 0.55);
  border-radius: 0.625rem;
  color: var(--admin-doc-muted);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.administration-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.administration-timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .administration-timeline__item {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

.administration-timeline__year {
  font-variant-numeric: tabular-nums;
}

.administration-timeline__year span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--admin-doc-navy);
}

.administration-document--timeline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
}

.administration-document--timeline .administration-document__icon {
  grid-row: 1;
}

.administration-document--timeline .administration-document__content {
  grid-column: 2;
  grid-row: 1;
}

.administration-document--timeline .administration-document__action {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
}

@media (min-width: 1024px) {
  .administration-document--timeline {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .administration-document--timeline .administration-document__action {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

.administration-back-nav-section {
  background: var(--admin-doc-surface);
}

.administration-back-nav {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--admin-doc-border);
}

.administration-back-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

.administration-back-nav__link:hover {
  color: var(--admin-doc-navy);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.administration-back-nav__link:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

.administration-back-nav__link i {
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  html:has(.administration-document-page) {
    scroll-behavior: smooth;
  }
}

@media (max-width: 480px) {
  .administration-document-hero__title {
    font-size: 1.625rem;
  }

  .administration-document-intro__title,
  .administration-document-section__title {
    font-size: 1.5rem;
  }

  .administration-document {
    padding: 1.05rem 1rem;
  }

  .administration-document__action a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .administration-document-nav a {
    width: 100%;
    justify-content: center;
  }
}

/* Financial & public-procurement Administration pages */
.financial-procurement-page .administration-document-section:has(.procurement-filters),
.financial-procurement-page .administration-filters-section {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.financial-procurement-page .administration-document-section:has(.procurement-filters) .patient-page-inner,
.financial-procurement-page .administration-filters-section .patient-page-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.financial-procurement-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.administration-document-grid--single {
  grid-template-columns: 1fr;
  max-width: 48rem;
}

.procurement-filters {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
}

.procurement-filters__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
}

@media (min-width: 768px) {
  .procurement-filters__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    align-items: end;
  }
}

.procurement-filters__field {
  min-width: 0;
  display: grid;
  gap: 0.4rem;
}

.procurement-filters__field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--admin-doc-slate);
}

.procurement-filters__field input,
.procurement-filters__field select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.625rem;
  background: #fff;
  color: var(--admin-doc-slate);
  font-size: 0.975rem;
  line-height: 1.4;
}

.procurement-filters__field input:focus-visible,
.procurement-filters__field select:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 2px;
}

.procurement-year-group {
  margin-top: 1.75rem;
}

.procurement-year-group:first-of-type {
  margin-top: 0;
}

.procurement-year-group__title {
  margin: 0 0 0.9rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--admin-doc-navy);
  font-variant-numeric: tabular-nums;
}

.procurement-year-group__count {
  margin-left: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--admin-doc-muted);
}

.procurement-list {
  display: grid;
  gap: 1rem;
}

.procurement-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-width: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
}

@media (min-width: 1024px) {
  .procurement-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.procurement-item__meta {
  margin: 0 0 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--admin-doc-muted);
  font-variant-numeric: tabular-nums;
}

.procurement-item__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.procurement-item__details {
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.procurement-item__details dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--admin-doc-muted);
}

.procurement-item__details dd {
  margin: 0.2rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--admin-doc-slate);
  font-variant-numeric: tabular-nums;
}

.procurement-item__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--admin-doc-slate);
  border-radius: 0.625rem;
  color: var(--admin-doc-slate);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.procurement-item__action a:hover {
  background: var(--admin-doc-slate);
  color: #fff;
}

.procurement-item__action a:focus-visible {
  outline: 2px solid var(--admin-doc-navy);
  outline-offset: 2px;
}

.procurement-empty {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px dashed rgb(100 116 139 / 0.45);
  border-radius: 0.75rem;
  color: var(--admin-doc-muted);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.5;
}

.public-information-crosslinks {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--admin-doc-border);
}

.public-information-crosslinks__title {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--admin-doc-navy);
}

.public-information-crosslinks__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.public-information-crosslinks__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--admin-doc-slate);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.public-information-crosslinks__list a:hover {
  color: var(--admin-doc-navy);
}

.public-information-crosslinks__list a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 480px) {
  .procurement-item__details {
    grid-template-columns: 1fr;
  }

  .procurement-item__action a {
    width: 100%;
  }
}

/* Administration mega-menu group toggles (mobile accordion) */
.mega-gr__toggle {
  display: none;
  width: 100%;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.mega-gr__toggle:focus-visible {
  outline: 2px solid var(--nav-admin-color, #1e293b);
  outline-offset: 2px;
  border-radius: 2px;
}

.mega-gr__chev {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.15s ease;
}

.mega-gr--admin.is-open .mega-gr__chev {
  transform: rotate(180deg);
}

.mega-gr__static-title {
  display: inline;
}

@media (max-width: 1023px) {
  #mh-panel-admin .mega-gr__toggle {
    display: inline-flex;
  }

  #mh-panel-admin .mega-gr__static-title {
    display: none;
  }

  #mh-panel-admin .mega-gr > ul {
    display: none;
    margin-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  #mh-panel-admin .mega-gr.is-open > ul {
    display: flex;
  }

  #mh-panel-admin .mega-gr a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
  }
}

/* Shared visually-hidden utility for Administration pages */
.administration-page .visually-hidden,
.declarations-page .visually-hidden,
.administration-leadership .visually-hidden,
.ethics-council-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.administration-leadership__crosslink {
  margin: 1.25rem 0 0;
}

.administration-leadership__crosslink a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 700;
  color: var(--admin-doc-slate);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.administration-leadership__crosslink a:hover {
  color: var(--admin-doc-navy);
}

.administration-leadership__crosslink a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

.administration-leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .administration-leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.administration-leadership-card {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
}

.administration-leadership-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #e2e8f0;
}

.administration-leadership-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.administration-leadership-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.administration-leadership-card__role {
  margin: 0.35rem 0 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: #475569;
}

.administration-leadership-card__contact,
.administration-leadership-card__cv {
  margin: 0.65rem 0 0;
}

.administration-leadership-card__contact a,
.administration-leadership-card__cv a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 600;
  color: var(--admin-doc-slate);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.administration-leadership-card__contact a:focus-visible,
.administration-leadership-card__cv a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

.administration-council-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .administration-council-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.administration-council-item {
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.75rem;
  background: var(--admin-doc-surface);
}

.administration-council-item__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.administration-council-item__institution,
.administration-council-item__status,
.administration-council-item__contact {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
  overflow-wrap: anywhere;
}

.administration-council-item__contact a {
  color: var(--admin-doc-slate);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.administration-council-item__contact a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

.administration-leadership {
  --table-row-alt: #f8fafc;
  --services-fees-border: rgb(30 41 59 / 0.16);
  --services-fees-text: #0f172a;
}

.administration-directory.ct-tariff-table-wrapper {
  margin-top: 0;
  border-color: var(--admin-doc-border);
  background: var(--admin-doc-surface);
}

.administration-directory__table.ct-tariff-table {
  min-width: 42rem;
}

.administration-leadership .administration-directory__table thead th:last-child,
.administration-leadership .administration-directory__table tbody td:last-child {
  text-align: left;
  white-space: normal;
  font-variant-numeric: normal;
  font-weight: 600;
}

.administration-leadership .administration-directory__table tbody td:first-child {
  width: 14rem;
  color: var(--admin-doc-navy);
  font-weight: 700;
}

.administration-leadership .administration-directory__table tbody td:nth-child(2) {
  color: #475569;
}

.administration-directory__table a {
  color: var(--admin-doc-slate);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.administration-directory__table a:hover {
  color: var(--admin-doc-navy);
}

.administration-directory__table a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 699px) {
  .administration-leadership .administration-directory__table tbody td:last-child::after {
    content: none;
  }

  .administration-leadership .administration-directory__table tbody td:first-child,
  .administration-leadership .administration-directory__table tbody td:last-child {
    width: auto;
    text-align: left;
    white-space: normal;
  }
}

.declarations-filters {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
}

.declarations-filters__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
}

@media (min-width: 768px) {
  .declarations-filters__grid {
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    align-items: end;
  }
}

.declarations-filters__field {
  min-width: 0;
  display: grid;
  gap: 0.4rem;
}

.declarations-filters__field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--admin-doc-slate);
}

.declarations-filters__field input,
.declarations-filters__field select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.625rem;
  background: #fff;
  color: var(--admin-doc-slate);
  font-size: 0.975rem;
  line-height: 1.4;
}

.declarations-filters__field input:focus-visible,
.declarations-filters__field select:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 2px;
}

.declarations-people {
  display: grid;
  gap: 1rem;
}

.declarations-person {
  min-width: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
}

.declarations-person__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.declarations-person__role,
.declarations-person__empty {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
}

.declarations-year-block {
  margin-top: 1rem;
}

.declarations-year-block__title {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--admin-doc-navy);
  font-variant-numeric: tabular-nums;
}

.declarations-document-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.declarations-document-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1rem;
  align-items: center;
  min-width: 0;
}

@media (min-width: 768px) {
  .declarations-document-list__item {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.declarations-document-list__label {
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--admin-doc-slate);
  overflow-wrap: anywhere;
}

.declarations-document-list__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--admin-doc-slate);
  border-radius: 0.625rem;
  color: var(--admin-doc-slate);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.declarations-document-list__action:hover {
  background: var(--admin-doc-slate);
  color: #fff;
}

.declarations-document-list__action:focus-visible {
  outline: 2px solid var(--admin-doc-navy);
  outline-offset: 2px;
}

.declarations-document-list__unavailable {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px dashed rgb(100 116 139 / 0.55);
  border-radius: 0.625rem;
  color: var(--admin-doc-muted);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.declarations-empty {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px dashed rgb(100 116 139 / 0.45);
  border-radius: 0.75rem;
  color: var(--admin-doc-muted);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .declarations-document-list__action,
  .declarations-document-list__unavailable {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .administration-leadership-card__name {
    font-size: 1.05rem;
  }
}

/* Quality & institutional activity Administration pages */
.quality-activity-page .patient-page-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .quality-activity-page .patient-page-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .quality-activity-page .patient-page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.quality-activity-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quality-manual-statement {
  margin: 1.15rem 0 0;
  max-width: 48rem;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--admin-doc-slate);
  background: #fff;
  color: var(--admin-doc-navy);
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.iso-certificate-grid,
.procedure-list,
.quality-document-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.quality-activity-page .quality-document-grid > .administration-document {
  height: 100%;
}

@media (min-width: 768px) {
  .procedure-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .iso-certificate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.quality-policy-block {
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.quality-policy-block__list,
.quality-policy-block__sublist {
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
}

.quality-policy-block__list {
  display: grid;
  gap: 0.85rem;
}

.quality-policy-block__lead,
.quality-policy-block__closing {
  margin: 1.25rem 0 0.75rem;
  color: var(--admin-doc-navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.quality-policy-block__sublist {
  display: grid;
  gap: 0.55rem;
}

.quality-policy-block__subtitle {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--admin-doc-navy);
}

.activity-report-filters {
  margin-top: 1.5rem;
}

.activity-report-list .procurement-year-group + .procurement-year-group {
  margin-top: 2rem;
}

.activity-report-grid {
  grid-template-columns: 1fr;
  max-width: none;
}

@media (min-width: 768px) {
  .activity-report-grid {
    grid-template-columns: 1fr;
  }
}

.activity-report-grid > [data-document-item] > .administration-document {
  width: 100%;
}

.quality-legislation-portal {
  margin: 1.25rem 0 0;
}

.quality-legislation-portal a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--admin-doc-slate);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.quality-legislation-portal a:hover {
  color: var(--admin-doc-navy);
}

.quality-legislation-portal a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

.legislation-list {
  display: grid;
  gap: 1rem;
}

.legal-document {
  min-width: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: #fff;
}

.legal-document__meta {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--admin-doc-muted);
  font-variant-numeric: tabular-nums;
}

.legal-document__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.legal-document__description {
  margin: 0.55rem 0 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: #475569;
  overflow-wrap: anywhere;
}

.legal-document__unavailable {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin: 0.9rem 0 0;
  padding: 0.5rem 0.95rem;
  border: 1px dashed rgb(100 116 139 / 0.55);
  border-radius: 0.625rem;
  color: var(--admin-doc-muted);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 480px) {
  .legal-document {
    padding: 1.05rem 1rem;
  }
}

/* ===== Administration careers (Cariere) ===== */
.careers-page .patient-page-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .careers-page .patient-page-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .careers-page .patient-page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.careers-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.careers-page .administration-document-section:has(.procurement-filters),
.careers-page .administration-filters-section {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.careers-page .administration-document-section:has(.procurement-filters) .patient-page-inner,
.careers-page .administration-filters-section .patient-page-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.career-filters__grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .career-filters__grid--2 {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
}

.career-competition-list,
.career-result-list {
  display: grid;
  gap: 1.15rem;
}

.career-competition {
  min-width: 0;
  padding: 1.25rem 1.25rem 1.35rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.875rem;
  background: var(--admin-doc-surface);
}

.career-competition__meta,
.career-result-group__meta,
.career-result-doc__meta {
  margin: 0 0 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--admin-doc-muted);
  font-variant-numeric: tabular-nums;
}

.career-competition__title,
.career-result-group__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.career-competition__summary {
  margin: 0.85rem 0 0;
  color: #475569;
  font-size: 0.975rem;
  line-height: 1.65;
}

.career-competition__details {
  margin: 0.95rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem 1rem;
}

@media (min-width: 640px) {
  .career-competition__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.career-competition__details dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--admin-doc-muted);
}

.career-competition__details dd {
  margin: 0.2rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--admin-doc-slate);
  overflow-wrap: anywhere;
}

.career-competition__documents {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.career-competition__documents a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--admin-doc-slate);
  border-radius: 0.625rem;
  color: var(--admin-doc-slate);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.career-competition__documents a:hover {
  background: var(--admin-doc-slate);
  color: #fff;
}

.career-competition__documents a:focus-visible {
  outline: 2px solid var(--admin-doc-navy);
  outline-offset: 2px;
}

.career-competition__doc-type {
  font-size: 0.8125rem;
  font-weight: 700;
  opacity: 0.85;
}

.career-competition__doc-unavailable {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px dashed rgb(100 116 139 / 0.55);
  border-radius: 0.625rem;
  color: var(--admin-doc-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.career-result-group {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.career-result-group__header {
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--admin-doc-border);
}

.career-result-group__documents {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.career-result-doc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgb(226 232 240 / 0.95);
  border-radius: 0.75rem;
  background: #fff;
}

@media (min-width: 1024px) {
  .career-result-doc {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.career-result-doc__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--admin-doc-navy);
  overflow-wrap: anywhere;
}

.career-result-doc__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--admin-doc-slate);
  border-radius: 0.625rem;
  color: var(--admin-doc-slate);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.career-result-doc__action a:hover {
  background: var(--admin-doc-slate);
  color: #fff;
}

.career-result-doc__action a:focus-visible {
  outline: 2px solid var(--admin-doc-navy);
  outline-offset: 2px;
}

.career-document-group {
  margin-top: 2rem;
}

.career-document-group:first-of-type {
  margin-top: 0;
}

.career-document-group__title,
.employment-documents-section__title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--admin-doc-navy);
}

.employment-documents-section + .employment-documents-section {
  margin-top: 2rem;
}

.employment-documents-section__list {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
}

.employment-documents-section__list li + li {
  margin-top: 0.45rem;
}

.careers-empty-state {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border: 1px dashed rgb(100 116 139 / 0.45);
  border-radius: 0.75rem;
  color: var(--admin-doc-muted);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.55;
}

.careers-empty-state a {
  color: var(--admin-doc-slate);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.careers-empty-state a:hover {
  color: var(--admin-doc-navy);
}

.careers-empty-state a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 480px) {
  .career-competition__documents a,
  .career-result-doc__action a {
    width: 100%;
  }
}

/* Contact page (contact.php) */
.contact-page {
  --contact-page-red: #b91c1c;
  --contact-page-red-soft: #fef2f2;
  --contact-page-text: #0f172a;
  --contact-page-muted: #334155;
  --contact-page-border: #e2e8f0;
  --contact-page-surface: #ffffff;
  --contact-page-tint: #f8fafc;
  color: var(--contact-page-text);
}

.contact-page .patient-page-section,
.contact-page .patient-page-section--end {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .contact-page .patient-page-section,
  .contact-page .patient-page-section--end {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-page .patient-page-section,
  .contact-page .patient-page-section--end {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact-page .patient-page-section--end {
    padding-bottom: 4.5rem;
    margin-bottom: 1.25rem;
  }
}

.contact-page .patient-page-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .contact-page .patient-page-inner {
    padding-inline: 2rem;
  }
}

.contact-hero.patient-hero--subpage .patient-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
}

@media (min-width: 768px) {
  .contact-hero.patient-hero--subpage .patient-hero__inner {
    min-height: 12rem;
  }
}

.contact-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(254 226 226 / 0.92);
}

.contact-hero__title {
  margin: 0;
  max-width: none;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.18);
}

@media (min-width: 768px) {
  .contact-hero__title {
    font-size: 2.25rem;
  }
}

.contact-hero__lead {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
  .contact-hero__lead {
    font-size: 1.0625rem;
  }
}

.contact-overview {
  background: var(--contact-page-surface);
}

.contact-secretariats,
.contact-visits,
.contact-map-section {
  background: var(--contact-page-tint);
}

.contact-appointments,
.contact-other {
  background: var(--contact-page-surface);
}

.contact-page-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--contact-page-red);
}

.contact-page-heading {
  margin: 0;
  max-width: none;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--contact-page-text);
  text-align: left;
}

@media (min-width: 768px) {
  .contact-page-heading {
    font-size: 2rem;
  }
}

.contact-page-lead {
  margin: 1rem 0 0;
  max-width: none;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--contact-page-muted);
}

.contact-page-lead a,
.contact-page-note a {
  color: var(--contact-page-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-page-lead a:hover,
.contact-page-note a:hover {
  color: #991b1b;
}

.contact-section-header {
  margin-bottom: 1.75rem;
}

.contact-overview__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 900px) {
  .contact-overview__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.contact-address-card,
.contact-info-card,
.contact-main-phones {
  border: 1px solid var(--contact-page-border);
  border-radius: 1rem;
  background: #fff;
}

.contact-address-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.45rem;
}

.contact-address-card__icon,
.contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: var(--contact-page-red-soft);
  color: var(--contact-page-red);
  font-size: 1.1rem;
}

.contact-address-card__title,
.contact-info-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--contact-page-text);
}

.contact-address-card__text {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--contact-page-muted);
}

.contact-address-card__mail,
.contact-address-card__web {
  margin: 0.75rem 0 0;
}

.contact-address-card__mail a,
.contact-address-card__web a,
.contact-info-card__phone a,
.contact-info-card__email a,
.contact-info-card__list a,
.contact-main-phone__link,
.contact-quick-line__value a,
.contact-visit-ext__value a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--contact-page-red);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-address-card__mail a:hover,
.contact-address-card__web a:hover,
.contact-info-card__phone a:hover,
.contact-info-card__email a:hover,
.contact-info-card__list a:hover,
.contact-main-phone__link:hover,
.contact-quick-line__value a:hover,
.contact-visit-ext__value a:hover {
  color: #991b1b;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-main-phones {
  display: grid;
  gap: 0;
  padding: 0.35rem 0;
}

.contact-main-phone {
  padding: 1rem 1.25rem;
}

.contact-main-phone + .contact-main-phone {
  border-top: 1px solid var(--contact-page-border);
}

.contact-main-phone__label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.contact-main-phone__link {
  font-size: 1.125rem;
}

.contact-card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-card-grid:not(.contact-card-grid--2) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.contact-info-card {
  padding: 1.25rem 1.25rem 1.35rem;
}

.contact-info-card__icon {
  margin-bottom: 0.9rem;
}

.contact-info-card__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.975rem;
  line-height: 1.5;
  color: #64748b;
}

.contact-info-card__phone,
.contact-info-card__email {
  margin: 0.85rem 0 0;
  font-size: 0.975rem;
  line-height: 1.5;
}

.contact-info-card__ext {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--contact-page-muted);
  font-weight: 600;
}

.contact-info-card__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--contact-page-muted);
}

.contact-info-card__hours i {
  margin-top: 0.2rem;
  color: var(--contact-page-red);
}

.contact-info-card__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-card__list li + li {
  margin-top: 0.45rem;
}

.contact-info-card__more {
  margin: 1rem 0 0;
}

.contact-info-card__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--contact-page-red);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-info-card__more a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-quick-lines {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .contact-quick-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .contact-quick-lines {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.contact-quick-line {
  padding: 1rem 1.1rem;
  border: 1px solid var(--contact-page-border);
  border-radius: 0.85rem;
  background: #fff;
}

.contact-quick-line__title {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.contact-quick-line__value {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.5;
  color: var(--contact-page-muted);
  font-weight: 600;
}

.contact-visit-ext {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-visit-ext li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--contact-page-border);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-visit-ext li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-visit-ext li > span:first-child {
  font-weight: 700;
  color: var(--contact-page-text);
}

.contact-visit-ext__value {
  color: var(--contact-page-muted);
  font-weight: 600;
}

.contact-page-note {
  margin: 1.5rem 0 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--contact-page-muted);
}

.contact-page-map {
  margin-top: 0.25rem;
  overflow: hidden;
  border: 1px solid var(--contact-page-border);
  border-radius: 1rem;
  background: #fff;
  min-height: 18rem;
}

.contact-page-map iframe {
  display: block;
  width: 100%;
  height: 20rem;
  border: 0;
}

@media (min-width: 768px) {
  .contact-page-map iframe {
    height: 24rem;
  }
}

.contact-page a:focus-visible {
  outline: 2px solid var(--contact-page-red);
  outline-offset: 3px;
}

/* Organization page ? simplified hierarchy, groups, search, documents */
.organization-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.organization-overview {
  background: var(--admin-doc-surface);
}

.organization-main-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.organization-main-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  text-align: center;
}

.organization-main-node--council {
  max-width: 20rem;
}

.organization-main-node--manager {
  max-width: 24rem;
  border-color: rgb(30 41 59 / 0.28);
  box-shadow: 0 2px 6px rgb(15 23 42 / 0.06);
}

.organization-main-node__label {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--admin-doc-navy);
}

.organization-main-node--manager .organization-main-node__label {
  font-size: 1.125rem;
}

.organization-main-connector {
  width: 1px;
  height: 1.25rem;
  margin: 0 auto;
  background: #cbd5e1;
}

.organization-main-connector--to-branches {
  height: 1.5rem;
}

.organization-main-branches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.organization-main-branch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  min-height: 4.25rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  color: var(--admin-doc-slate);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.organization-main-branch:hover {
  border-color: rgb(30 41 59 / 0.28);
  background: var(--admin-doc-tint);
  box-shadow: 0 4px 12px rgb(15 23 42 / 0.06);
}

.organization-main-branch:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 2px;
}

.organization-main-branch__title {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--admin-doc-navy);
}

.organization-main-branch__count {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--admin-doc-muted);
}

.organization-search {
  max-width: 40rem;
  margin: 0 0 1.5rem;
}

.organization-search__label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--admin-doc-slate);
}

.organization-search__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.625rem;
  background: #fff;
  color: var(--admin-doc-slate);
  font-size: 1rem;
  line-height: 1.4;
}

.organization-search__input::placeholder {
  color: #94a3b8;
}

.organization-search__input:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 2px;
  border-color: var(--admin-doc-slate);
}

.organization-search__empty {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--admin-doc-muted);
}

.organization-groups {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.organization-group {
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.03);
  overflow: hidden;
}

.organization-group__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s ease;
}

.organization-group__summary::-webkit-details-marker {
  display: none;
}

.organization-group__summary::marker {
  content: "";
}

.organization-group__summary:hover {
  background: var(--admin-doc-tint);
}

.organization-group__summary:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: -2px;
}

.organization-group__summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.organization-group__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--admin-doc-navy);
}

.organization-group__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--admin-doc-muted);
}

.organization-group__icon {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.2rem;
  border-right: 2px solid var(--admin-doc-slate);
  border-bottom: 2px solid var(--admin-doc-slate);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.organization-group[open] > .organization-group__summary .organization-group__icon {
  transform: rotate(45deg);
  margin-top: -0.15rem;
}

.organization-group__content {
  padding: 0 0 0.35rem;
  border-top: 1px solid var(--admin-doc-border);
}

.organization-category {
  padding: 1rem 1.1rem 0.35rem;
}

.organization-category + .organization-category {
  border-top: 1px solid rgb(30 41 59 / 0.08);
}

.organization-category__title {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--admin-doc-muted);
}

.organization-structure-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.organization-group__content > .organization-structure-list {
  padding: 0.15rem 0;
}

.organization-structure-row {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgb(30 41 59 / 0.08);
}

.organization-structure-list > .organization-structure-row:last-child {
  border-bottom: 0;
}

.organization-structure-row:nth-child(even) {
  background: rgb(248 250 252 / 0.85);
}

.organization-structure-row.is-hidden {
  display: none;
}

.organization-structure-row__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.organization-structure-row__name,
.organization-structure-row__child-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--admin-doc-navy);
}

.organization-structure-row__meta {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--admin-doc-muted);
}

.organization-structure-row__children {
  list-style: disc;
  margin: 0.45rem 0 0;
  padding-left: 1.2rem;
}

.organization-structure-row__children li {
  margin: 0.2rem 0;
  color: var(--admin-doc-slate);
  font-size: 0.9rem;
  line-height: 1.45;
}

.organization-structure-row__children .organization-structure-row__child-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--admin-doc-slate);
}

.organization-structure-row mark,
.organization-structure-row__children mark {
  background: rgb(226 232 240 / 0.95);
  color: inherit;
  border-radius: 0.15rem;
  padding: 0 0.1em;
}

.organization-category.is-hidden {
  display: none;
}

.organization-documents {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
}

.organization-documents__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon body"
    "action action";
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--admin-doc-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.03);
}

.organization-documents__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.625rem;
  background: #e2e8f0;
  color: var(--admin-doc-slate);
  font-size: 1rem;
}

.organization-documents__body {
  grid-area: body;
  min-width: 0;
}

.organization-documents__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--admin-doc-navy);
}

.organization-documents__meta {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--admin-doc-muted);
}

.organization-documents__action {
  grid-area: action;
}

.organization-documents__action a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--admin-doc-slate);
  border-radius: 0.625rem;
  color: var(--admin-doc-slate);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.organization-documents__action a:hover {
  background: var(--admin-doc-slate);
  color: #fff;
}

.organization-documents__action a:focus-visible {
  outline: 2px solid var(--admin-doc-slate);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .organization-documents__item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "icon body action";
  }
}

@media (min-width: 768px) {
  .organization-main-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organization-group__content:has(.organization-category) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .organization-category {
    border-top: 0;
  }

  .organization-category:nth-child(n + 3) {
    border-top: 1px solid rgb(30 41 59 / 0.08);
  }
}

@media (min-width: 1024px) {
  .organization-main-branches {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
    padding-top: 0.85rem;
  }

  .organization-main-branches::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: #cbd5e1;
  }

  .organization-main-branches > li {
    position: relative;
    padding-top: 0.85rem;
  }

  .organization-main-branches > li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0.85rem;
    background: #cbd5e1;
    transform: translateX(-50%);
  }

  .organization-group__content:has(.organization-category) .organization-category:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .organization-main-connector,
  .organization-main-connector--to-branches {
    height: 1rem;
  }

  .organization-main-branches::before,
  .organization-main-branches > li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .organization-main-node,
  .organization-main-node--council,
  .organization-main-node--manager {
    max-width: none;
  }

  .organization-documents__action a {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .organization-main-branch,
  .organization-group__icon {
    transition: none;
  }
}

/* Policies & regulations documentation library */
.policies-library-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.policies-library-page .patient-page-section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .policies-library-page .patient-page-section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .policies-library-page .patient-page-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

.policies-library-page .administration-document-intro.patient-page-section {
  padding-bottom: 1.75rem;
}

.policies-library-nav-section {
  background: var(--admin-doc-tint);
  border-top: 1px solid var(--admin-doc-border);
  border-bottom: 1px solid var(--admin-doc-border);
}

.policies-library-nav-section__header {
  margin-bottom: 1rem;
}

.policies-library-nav-section__title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--admin-doc-navy);
}

.policies-library-page .policies-library-nav {
  margin-top: 0;
  gap: 0.75rem;
}

.policies-library-page .policies-library-nav a {
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
  border-radius: 0.7rem;
  background: var(--admin-doc-surface);
  font-size: 0.95rem;
  font-weight: 700;
}

.policies-library-page .policies-library-nav a:hover {
  background: #fff;
  border-color: rgb(30 41 59 / 0.34);
}

.policies-library-page .policies-library-nav a.is-active,
.policies-library-page .policies-library-nav a[aria-current="true"] {
  background: var(--admin-doc-slate);
  border-color: var(--admin-doc-slate);
  color: #fff;
}

.policies-library-page .policies-library-nav a.is-active:hover,
.policies-library-page .policies-library-nav a[aria-current="true"]:hover {
  background: var(--admin-doc-navy);
  border-color: var(--admin-doc-navy);
  color: #fff;
}

.policies-library-toolbar {
  background: var(--admin-doc-surface);
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.policies-library-filters__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .policies-library-filters__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(12rem, 0.8fr);
    align-items: end;
  }
}

.policies-library-section + .policies-library-section {
  border-top: 1px solid var(--admin-doc-border);
}

.policies-library-section__header {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(30 41 59 / 0.1);
}

.policies-library-page .administration-document-section__title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.01em;
}

.policies-library-page .administration-document-section__lead {
  margin-top: 0.75rem;
  max-width: 46rem;
}

.policies-library-grid {
  align-items: stretch;
}

.policies-library-page .administration-document--compact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "icon content"
    "action action";
  column-gap: 0.85rem;
  row-gap: 0.8rem;
  align-items: start;
  height: 100%;
  min-height: 100%;
  padding: 0.95rem 1.05rem;
}

.policies-library-page .administration-document--compact .administration-document__icon {
  grid-area: icon;
  align-self: start;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.65rem;
  font-size: 1rem;
}

.policies-library-page .administration-document--compact .administration-document__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.policies-library-page .administration-document--compact .administration-document__action {
  grid-area: action;
  align-self: stretch;
  margin-top: 0;
}

.policies-library-page .administration-document--compact .administration-document__title {
  font-size: 1.02rem;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .policies-library-page .administration-document--compact .administration-document__title {
    font-size: 1.075rem;
  }
}

.policies-library-page .administration-document--compact .administration-document__meta {
  margin-top: 0.3rem;
}

.policies-library-page .administration-document--compact .administration-document__description {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.policies-library-page .administration-document--compact .administration-document__action a {
  width: auto;
}

.policies-library-page .administration-document--compact .administration-document__unavailable-label {
  width: 100%;
}

@media (max-width: 480px) {
  .policies-library-page .administration-document--compact .administration-document__action a {
    width: 100%;
    justify-content: center;
  }
}

.policies-library-empty-inner {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.policies-library-empty {
  margin-top: 0;
}

@media (max-width: 480px) {
  .policies-library-page .policies-library-nav a {
    flex: 1 1 calc(50% - 0.75rem);
    justify-content: center;
  }
}

/* Fallback when JavaScript is disabled */
html:not(.js-enabled) .scroll-reveal .scroll-reveal__item,
html:not(.js-enabled) .parcurs-reveal > *,
html:not(.js-enabled) .parcurs-reveal-cta {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =============================================================================
   Site footer — dark layout (main / institutional badges / copyright bar)
   ============================================================================= */

.site-footer {
  --section-accent: var(--brand-blue);
  --footer-text: #f1f5f9;
  --footer-muted: #94a3b8;
  --footer-border: rgb(255 255 255 / 0.1);
  --footer-surface: #020617;
  --footer-tint: #0f172a;
  margin-top: auto;
  background: var(--footer-surface);
  color: var(--footer-text);
  box-shadow:
    0 -1px 2px rgb(0 0 0 / 0.2),
    0 -4px 16px -8px rgb(0 0 0 / 0.28);
}

.site-footer--pacienti { --section-accent: #fca5a5; }
.site-footer--institut { --section-accent: #7dd3fc; }
.site-footer--administratie { --section-accent: #cbd5e1; }
.site-footer--contact { --section-accent: #fca5a5; }
.site-footer--default { --section-accent: #7dd3fc; }

.footer-main {
  background: var(--footer-surface);
  border-top: 1px solid var(--footer-border);
  color: var(--footer-text);
}

.footer-main__inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 2.75rem 2rem 2.25rem;
}

.footer-main__grid {
  display: grid;
  gap: 2.25rem 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-main__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-main__inner {
    padding: 3rem 2rem 2.5rem;
  }

  .footer-main__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 3rem;
  }
}

.footer-main__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--section-accent);
}

.footer-main__content,
.footer-main__col {
  min-width: 0;
}

.footer-main__institution {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--footer-text);
}

.footer-main__address,
.footer-main__email,
.footer-main__cta {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--footer-muted);
}

.footer-main__email a,
.footer-legal a,
.footer-main__link,
.footer-bar__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-main__email a:hover,
.footer-legal a:hover,
.footer-main__link:hover,
.footer-bar__links a:hover {
  color: var(--section-accent);
}

.footer-main__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--footer-text);
}

.footer-phones {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.85rem;
}

.footer-phones__item {
  margin: 0;
}

.footer-phones__item dt {
  margin: 0 0 0.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--footer-text);
}

.footer-phones__item dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--footer-muted);
}

.footer-phones__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-phones__item a:hover {
  color: var(--section-accent);
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-legal a {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--footer-muted);
}

.footer-partners {
  border-top: 1px solid var(--footer-border);
}

.footer-partners__inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 1.35rem 2rem 1.5rem;
}

.footer-partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 1.15rem;
}

.footer-partners__item {
  display: flex;
  align-items: center;
  position: relative;
}

.footer-partners__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.75rem;
  background: rgb(255 255 255 / 0.12);
  pointer-events: none;
}

.footer-partners__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}

.footer-partners__mark img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  opacity: 0.92;
}

.footer-partners__link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.footer-partners__link:hover {
  opacity: 1;
}

.footer-partners__eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--section-accent);
  line-height: 1.2;
}

.footer-partners__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #cbd5e1;
  transition: color 0.15s ease;
}

.footer-partners__link:hover .footer-partners__label {
  color: #f8fafc;
}

.footer-partners__arrow {
  font-size: 0.875rem;
  color: var(--section-accent);
  transition: transform 0.15s ease;
}

.footer-partners__link:hover .footer-partners__arrow {
  transform: translateX(0.15rem);
}

.footer-bar {
  background: var(--brand-black);
  color: #cbd5e1;
}

.footer-bar__inner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  min-height: 3.25rem;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bar__copy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-bar__links,
.footer-bar__nav,
.footer-bar__sep {
  display: none;
}

.site-footer a:focus-visible,
.footer-partners__link:focus-visible {
  outline: 2px solid var(--section-accent);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

@media (max-width: 767px) {
  .footer-main__inner,
  .footer-partners__inner,
  .footer-bar__inner {
    padding-inline: 1.25rem;
  }

  .footer-partners__list {
    justify-content: flex-start;
    column-gap: 1.25rem;
    row-gap: 1rem;
  }

  .footer-partners__item:not(:last-child)::after {
    right: -0.625rem;
    height: 1.5rem;
  }

  .footer-partners__mark {
    height: 1.75rem;
  }

  .footer-partners__mark img {
    max-width: 6.5rem;
  }
}

@media (max-width: 520px) {
  .footer-partners__item:not(:last-child)::after {
    display: none;
  }

  .footer-partners__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .footer-partners__item {
    justify-content: center;
  }

  .footer-partners__item:nth-child(odd) {
    justify-content: flex-start;
  }

  .footer-partners__item:nth-child(even) {
    justify-content: flex-end;
  }
}

/* CMS contact directory blocks (not footer) */
.patient-page-section .contact-footer-box {
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
}

.patient-page-section .contact-footer-box h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.patient-page-section .contact-footer-box p {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}

.patient-page-section .contact-footer-box a {
  color: var(--brand-blue);
  text-decoration: none;
}

.patient-page-section .contact-footer-box a:hover {
  color: var(--brand-blue-hover);
}

/* Logo strip content blocks (not footer) */
.partners-strip {
  margin-top: 1.5rem;
}

.partners-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-grid--partner-logos {
  align-items: center;
}

.partner-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
}

.partner-cell img {
  max-width: 100%;
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
