/*
Theme Name: medicate Child
Theme URI: https://medicate.peacefulqode.com/
Template: medicate
Author: Peacefulqode
Author URI: https://peacefulqode.com/
Description: medicate is a clean and powerful WordPress Theme for Private clinics, Clinic plastic-surgery, Dental clinic and Personal doctors pages. Everyone can find a suitable page for itself. medicate includes plenty of customization options and let you change its visual style without touching to single line of codes.
Tags: business,clinic,dental,dentist,doctor,doctor appointment,health theme,healthcare,hospital,medic,medical,Medical Tourism,medicine,physician,veterinary.
Version: 3.0.1738414894
Updated: 2025-02-01 14:01:34

*/
h1, h2, h3, h4, h5, h6 {
	text-transform:none;
}
.pt-breadcrumb .pt-breadcrumb-title h1 {
    font-size: 36px;
    line-height: 36px;
    color: var(--dark-color);
	margin-bottom:0;
}
.pt-breadcrumb {
	padding: 50px 0!important;
}
.pt-breadcrumb-container .breadcrumb li {
	font-size:16px;
}
/* ========================================
   DOBRY ZABIEG - GLOBAL OVERRIDES
   Child Theme: medicate-child
   ======================================== */

/* Force Montserrat everywhere (override Quicksand from Elementor) */
body,
p,
li,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-text-editor p {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400;
  line-height: 1.7;
}

/* Headings - Montserrat for H3, H4 */
h3, h4,
/*.elementor-heading-title {
  font-family: 'Montserrat', sans-serif !important;
}*/

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #00BFFF;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #2C3E50;
  margin-bottom: 12px;
}

/* No automatic text-transform */
h1, h2, h3, h4, h5, h6 {
  text-transform: none !important;
}

/* ========================================
   REUSABLE CONTENT COMPONENTS
   ======================================== */

/* Intro box (turkusowy pasek) */
.service-intro,
.ortho-intro {
  background: #f0f8ff;
  padding: 20px 30px;
  border-left: 4px solid #00BFFF;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.8;
}

/* Section spacing */
.content-section,
.ortho-section {
  margin-bottom: 40px;
}

.content-section h3,
.ortho-section h3 {
  color: #00BFFF;
  border-bottom: 2px solid #00BFFF;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* Lists with checkmarks */
.check-list,
.benefit-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.check-list li,
.benefit-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  line-height: 1.6;
}

.check-list li:before,
.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00BFFF;
  font-weight: bold;
  font-size: 20px;
}

/* Lists with arrows */
.tech-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.tech-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.6;
}

.tech-list li:before {
  content: "▸";
  position: absolute;
  left: 3px;
  color: #00BFFF;
  font-weight: bold;
  font-size: 18px;
}

/* ========================================
   SERVICE CARDS GRID
   ======================================== */

/* ========================================
   SERVICE CARDS GRID
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Zawsze 3 kolumny na desktop */
  gap: 20px;
  margin-top: 20px;
}

.service-box,
.service-card {
  background: #f9f9f9;
  padding: 22px;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; /* Flex dla równej wysokości */
  flex-direction: column;
  height: 100%; /* Pełna wysokość w gridzie */
}

.service-box:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.15);
}

.service-icon {
  font-size: 44px;
  color: #00BFFF;
  display: block;
  margin-bottom: 12px;
  flex-shrink: 0; /* Ikona nie kurczy się */
}

.service-box h4,
.service-card h4 {
  color: #00BFFF;
  margin-bottom: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.service-box p,
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #666;
  flex-grow: 1; /* Paragraf wypełnia pozostałe miejsce */
}

/* Responsive - tablet: 2 kolumny */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - mobile: 1 kolumna */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   BADGES / TAGS
   ======================================== */

.collab-badges,
.collab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge-item,
.collab-badge {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}

/* ========================================
   WHY US SECTION
   ======================================== */

.why-grid,
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.why-box,
.why-card {
  position: relative;
  padding: 25px 20px 20px 20px;
  background: #f9f9f9;
  border-radius: 6px;
}

.why-num,
.why-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #00BFFF;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(23, 162, 184, 0.3);
}

.why-box h4,
.why-card h4 {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section,
.cta-block {
  background: linear-gradient(135deg, #00BFFF 0%, #138496 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  margin-top: 50px;
}

.cta-section h3,
.cta-block h3 {
  color: white;
  border-bottom: none;
  margin-bottom: 15px;
  font-size: 26px;
}

.cta-section p,
.cta-block p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}

.cta-section .pt-button,
.cta-block .pt-button {
  margin: 20px 0;
}

.contact-meta,
.contact-info {
  font-size: 15px;
  margin-top: 20px;
  color: white;
}

.contact-meta a,
.contact-info a {
  color: white!important;
  text-decoration: underline;
  font-weight: 600;
}

.contact-meta a:hover,
.contact-info a:hover {
  color: #f0f8ff !important;
  text-decoration: none;
}

/* Strong w contact-meta też biały */
.contact-meta strong,
.contact-info strong {
  color: white;
  font-weight: 700;
}
/* ========================================
   HIGHLIGHT BOX
   ======================================== */

.highlight-box,
.services-highlight {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  h3 {
    font-size: 22px;
  }
  
  h4 {
    font-size: 17px;
  }
  
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .service-intro,
  .ortho-intro {
    padding: 15px 20px;
    font-size: 16px;
  }
}
/* Fix: linki w CTA section muszą mieć kontrast */
.cta-section a,
.cta-block a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.cta-section a:hover,
.cta-block a:hover {
  color: #f0f8ff;
  text-decoration: none;
}

/* Przycisk w CTA - upewnij się że jest biały z turkusowym tłem */
.cta-section .pt-button,
.cta-block .pt-button {
  background: white !important;
  color: #00BFFF !important;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .pt-button:hover,
.cta-block .pt-button:hover {
  background: transparent !important;
  color: white !important;
  border-color: white;
}
/* ========================================
   CENNIK / PRICE TABLE
   ======================================== */

.price-table-container {
  margin: 30px 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
}

/* Nagłówki sekcji (DŁONIE, STOPY itd.) */
.price-section-header th {
  background: #00BFFF;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Wyróżniony nagłówek (TERMIN EKSPRESOWY) */
.price-section-header.highlight th {
  background: linear-gradient(135deg, #00BFFF 0%, #138496 100%);
  font-size: 16px;
}

/* Wiersze usług */
.service-item td {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.service-item:hover {
  background: #f9f9f9;
}

/* Kolumna z ceną (prawa) */
.service-item .price {
  text-align: right;
  font-weight: 600;
  color: #00BFFF;
  white-space: nowrap;
  min-width: 120px;
}

/* Podsekcje główne (np. "Opracowanie płytek paznokci:") */
.sub-section-main td {
  font-weight: 600;
  color: #2C3E50;
  background: #f0f8ff;
  padding: 10px 20px;
  font-size: 15px;
  border-top: 2px solid #00BFFF;
}

/* Podsekcje drugiego poziomu (np. "ELEKTROKOAGULACJA:") */
.sub-section-secondary td {
  font-weight: 600;
  color: #555;
  background: #fafafa;
  padding: 8px 20px 8px 35px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Wcięcie dla sub-item (podelementy) */
.sub-item td:first-child {
  padding-left: 40px;
  font-weight: 400;
  color: #666;
}

/* Divider (pusta linia rozdzielająca) */
.section-divider td {
  height: 15px;
  background: #fafafa;
  border: none;
}

/* Notice (np. "WIZYTA ODWOŁANA...") */
.notice td {
  background: #fff3cd;
  color: #856404;
  font-weight: 600;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  border-left: 4px solid #ffc107;
}

/* Małe adnotacje w spanach (np. "(w cenie wizyta kontrolna)") */
.price-table span {
  font-size: 12px;
  font-weight: 400;
}

/* Responsive - mobile */
@media (max-width: 768px) {
  .price-section-header th {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  .service-item td {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .service-item .price {
    min-width: 90px;
    font-size: 14px;
  }
  
  .sub-item td:first-child {
    padding-left: 25px;
  }
  
  .sub-section-secondary td {
    padding-left: 20px;
  }
}
/* Linki w service-box - cała karta klikalna */
.service-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-box-link:hover .service-box {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(23, 162, 184, 0.25);
}

.service-box-link:hover h4 {
  color: #138496;
}
/*widget */
.widget {
	padding:10px;
}
/*sidebar*/
/* Sticky boczne menu */
/* Sticky kolumna w Elementorze */
.sticky-column {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;      /* dopasuj do wysokości headera */
    z-index: 5;
}

/* Fix dla Elementora: wrapper musi być block, nie flex */

.pt-post-meta
{
	display:none;
}
footer#pt-footer .widget ul.menu li a:before {
  top:0;
  
}

/*footer#pt-footer .pt-footer-logo{
      height: 193px;
    margin-bottom: -41px;
    margin-top: -41px;
    margin-left: -28px;
}*/

/* ========================================
   DOBRY ZABIEG – STRONA "O NAS"
   Aktualizacja pod kolor główny #00bfff
   ======================================== */

.ortho-intro,
.ortho-section,
.services-highlight,
.cta-section {
  font-family: 'Quicksand', sans-serif;
}

/* Wprowadzenie */
.ortho-intro {
  background: #f0fafd;
  border-left: 4px solid #00bfff;
  border-radius: 0 8px 8px 0;
  padding: 22px 28px;
  margin-bottom: 34px;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.ortho-intro p {
  margin: 0;
}

.ortho-intro strong {
  color: #1a2e4a;
}

/* Treść i nagłówki */
.ortho-section {
  margin-bottom: 38px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.ortho-section > h3 {
  color: #1a2e4a;
  border-bottom: 2px solid #00bfff;
  padding-bottom: 10px;
  margin: 0 0 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
}

.ortho-section > p {
  margin: 0;
}

.ortho-section strong {
  color: #1a2e4a;
  font-weight: 700;
}

/* Blok kart */
.services-highlight {
  background: #f0fafd;
  border-radius: 10px;
  box-shadow: none;
  padding: 30px;
}

.about-links-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.service-box-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-box {
  height: 100%;
  min-height: 245px;
  background: #ffffff;
  border: 1px solid #e2f4f9;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(26, 46, 74, 0.06);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-box-link:hover .service-box,
.service-box-link:focus .service-box {
  transform: translateY(-5px);
  border-color: #00bfff;
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.18);
}

.service-icon {
  display: block;
  margin-bottom: 14px;
  color: #00bfff;
  font-size: 42px;
  line-height: 1;
}

.service-box h4 {
  margin: 0 0 12px;
  color: #1a2e4a;
  font-family: 'Quicksand', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.service-box-link:hover h4,
.service-box-link:focus h4 {
  color: #00bfff;
}

.service-box p {
  margin: 0;
  color: #666;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #00bfff 0%, #1597b3 100%);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.2);
  padding: 42px 30px;
  margin-top: 46px;
  text-align: center;
}

.cta-section h3 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 27px;
  font-weight: 700;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.cta-section .pt-button {
  display: inline-block;
  margin: 5px 0 8px;
  padding: 13px 28px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background: #ffffff !important;
  color: #00a9df !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.cta-section .pt-button:hover,
.cta-section .pt-button:focus {
  background: transparent !important;
  color: #ffffff !important;
}

.cta-section .contact-meta {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 15px;
}

.cta-section .contact-meta a {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: underline;
}

.cta-section .contact-meta a:hover {
  color: #1a2e4a !important;
  text-decoration: none;
}

.contact-separator {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.75);
}

/* Mobile */
@media (max-width: 768px) {
  .ortho-intro {
    padding: 18px 20px;
    font-size: 15px;
  }

  .ortho-section {
    font-size: 15px;
  }

  .ortho-section > h3 {
    font-size: 22px;
  }

  .services-highlight {
    padding: 22px 16px;
  }

  .about-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-box {
    min-height: auto;
    padding: 24px 20px;
  }

  .cta-section {
    padding: 32px 20px;
    margin-top: 35px;
  }

  .cta-section h3 {
    font-size: 23px;
  }

  .cta-section p {
    font-size: 15px;
  }

  .contact-separator {
    display: none;
  }

  .cta-section .contact-meta strong {
    display: block;
    margin: 4px 0;
  }
}

/* ========================================
   DOBRY ZABIEG – STRONA "STAŻE"
   ======================================== */

/* Hero */
.internship-hero {
  margin-bottom: 40px;
  padding: 42px 30px;
  background: linear-gradient(135deg, #00bfff 0%, #1597b3 100%);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
}

.internship-hero h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.internship-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.96);
  font-family: 'Quicksand', sans-serif;
  font-size: 19px;
  line-height: 1.6;
}

/* Standardowa treść na stronie staży */
.ortho-section p {
  margin: 0 0 18px;
}

.ortho-section p:last-child {
  margin-bottom: 0;
}

/* Sekcja: uznanie i publikacje */
.internship-recognition {
  position: relative;
  overflow: hidden;
  padding: 28px 30px;
  background: #f0fafd;
  border: 1px solid #d8f2f9;
  border-left: 4px solid #00bfff;
  border-radius: 0 8px 8px 0;
}

.internship-recognition::before {
  content: "★";
  position: absolute;
  top: -28px;
  right: 22px;
  color: rgba(0, 191, 255, 0.1);
  font-size: 125px;
  font-weight: 700;
  line-height: 1;
}

.internship-recognition h3,
.internship-recognition p {
  position: relative;
  z-index: 1;
}

/* Sekcja grupy docelowej */
.internship-targets {
  padding: 30px;
  background: #f0fafd;
}

.internship-targets-intro {
  max-width: 850px;
  margin: 0 auto 26px !important;
  color: #444;
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

.internship-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.internship-grid .service-box {
  min-height: 230px;
}

/* Cytat */
.internship-quote {
  margin-top: 28px;
  padding: 24px 30px;
  background: #ffffff;
  border: 1px solid #d8f2f9;
  border-left: 4px solid #00bfff;
  border-radius: 0 8px 8px 0;
  text-align: center;
}

.internship-quote p {
  margin: 0 !important;
  color: #1a2e4a;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}

/* CTA na stronie staży */
.internship-cta {
  margin-top: 48px;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .internship-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .internship-grid .service-box {
    padding: 24px 18px;
  }
}

/* Telefon */
@media (max-width: 768px) {
  .internship-hero {
    padding: 32px 20px;
    margin-bottom: 30px;
  }

  .internship-hero h1 {
    font-size: 25px;
  }

  .internship-hero p {
    font-size: 16px;
  }

  .internship-recognition,
  .internship-targets {
    padding: 22px 18px;
  }

  .internship-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .internship-grid .service-box {
    min-height: auto;
  }

  .internship-quote {
    padding: 20px;
  }

  .internship-quote p {
    font-size: 16px;
  }
}/* Fix kontrastu nagłówka hero – strona Staże */
.internship-hero h1,
.internship-hero h2 {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 8px rgba(26, 46, 74, 0.28);
}
/* ========================================
   DOBRY ZABIEG – REGULAMIN
   ======================================== */

.regulamin-hero {
  margin: 0 0 42px;
  padding: 38px 34px;
  background: #f0fafd;
  border-left: 5px solid #00bfff;
  border-radius: 0 10px 10px 0;
  font-family: 'Quicksand', sans-serif;
}

.regulamin-hero .regulamin-label {
  margin: 0 0 7px;
  color: #00bfff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.regulamin-hero h1 {
  margin: 0 0 15px;
  color: #1a2e4a;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.regulamin-hero .regulamin-address {
  margin: 0 0 8px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.regulamin-hero .regulamin-address span {
  margin-right: 5px;
}

.regulamin-hero .regulamin-date {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Uporządkowanie list regulaminu */
.entry-content .wp-block-list,
.pt-blog-single .wp-block-list {
  margin: 0 0 30px;
  padding-left: 28px;
}

.entry-content ol.wp-block-list > li,
.pt-blog-single ol.wp-block-list > li {
  margin-bottom: 14px;
  padding-left: 7px;
  color: #555;
  line-height: 1.75;
}

.entry-content ol.wp-block-list > li::marker,
.pt-blog-single ol.wp-block-list > li::marker {
  color: #00bfff;
  font-weight: 700;
}

.entry-content .wp-block-list ul,
.pt-blog-single .wp-block-list ul {
  margin: 10px 0 4px;
  padding-left: 22px;
}

.entry-content .wp-block-list ul li,
.pt-blog-single .wp-block-list ul li {
  margin-bottom: 6px;
}

.entry-content .wp-block-list a,
.pt-blog-single .wp-block-list a {
  color: #00a9df;
  font-weight: 700;
  text-decoration: underline;
}

.entry-content .wp-block-list a:hover,
.pt-blog-single .wp-block-list a:hover {
  color: #1a2e4a;
  text-decoration: none;
}

@media (max-width: 768px) {
  .regulamin-hero {
    margin-bottom: 30px;
    padding: 26px 20px;
  }

  .regulamin-hero h1 {
    font-size: 25px;
  }

  .regulamin-hero .regulamin-address {
    font-size: 15px;
  }

  .entry-content .wp-block-list,
  .pt-blog-single .wp-block-list {
    padding-left: 23px;
  }

  .entry-content ol.wp-block-list > li,
  .pt-blog-single ol.wp-block-list > li {
    padding-left: 4px;
    font-size: 15px;
  }
}
/* ========================================
   DOBRY ZABIEG – STRONA USŁUG
   ======================================== */

/* Sześć głównych specjalizacji */
.services-page .services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-page .services-highlight {
  padding: 30px;
  background: #f0fafd;
  border-radius: 10px;
  box-shadow: none;
}

.services-page .service-box {
  min-height: 255px;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid #d8f2f9;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(26, 46, 74, 0.06);
}

.services-page .service-box:hover {
  border-color: #00bfff;
  box-shadow: 0 10px 24px rgba(0, 191, 255, 0.18);
}

.services-page .service-icon {
  margin-bottom: 14px;
  color: #00bfff;
  font-size: 42px;
}

.services-page .service-box h4 {
  margin-bottom: 12px;
  color: #1a2e4a;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.services-page .service-box {
  color: #666;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* Sekcja „Najczęściej wykonywane zabiegi” */
.services-page .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 32px;
}

.services-page .why-box {
  min-height: 210px;
  padding: 34px 22px 22px;
  background: #f9fcfd;
  border: 1px solid #e2f4f9;
  border-radius: 8px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-page .why-box:hover {
  transform: translateY(-4px);
  border-color: #00bfff;
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.14);
}

.services-page .why-num {
  top: -16px;
  left: 20px;
  width: 42px;
  height: 42px;
  background: #00bfff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.3);
}

.services-page .why-box h4 {
  margin: 0 0 10px;
  color: #1a2e4a;
  font-family: 'Quicksand', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.services-page .why-box {
  color: #666;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-page .services-grid,
  .services-page .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Telefon */
@media (max-width: 768px) {
  .services-page .services-highlight {
    padding: 22px 16px;
  }

  .services-page .services-grid,
  .services-page .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-page .service-box,
  .services-page .why-box {
    min-height: auto;
  }

  .services-page .service-box {
    padding: 24px 20px;
  }

  .services-page .why-box {
    padding: 34px 20px 22px;
  }
}
/* ========================================
   DOBRY ZABIEG – BIOGRAFIE ZESPOŁU
   ======================================== */

.team-bio {
  position: relative;
  margin: 5px 0 55px;
}

.team-bio .bio-section {
  position: relative;
  margin: 0 0 22px;
  padding: 27px 30px 28px;
  border: 1px solid #e1f2f7;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(26, 46, 74, 0.05);
  color: #555555;
  font-family: 'Quicksand', sans-serif;
}

.team-bio .bio-section::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: #00bfff;
  content: "";
}

.team-bio .bio-section-number {
  display: flex;
  position: absolute;
  top: -14px;
  right: 25px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00bfff;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.28);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.team-bio .bio-section h3 {
  margin: 0 42px 14px 0 !important;
  padding: 0 0 10px !important;
  border-bottom: 2px solid #00bfff !important;
  color: #1a2e4a !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.team-bio .bio-section p {
  margin: 0 0 15px !important;
  color: #555555 !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.team-bio .bio-section p:last-child {
  margin-bottom: 0 !important;
}

.team-bio .bio-section strong {
  color: #1a2e4a !important;
  font-weight: 700 !important;
}

/* Pierwsza sekcja – delikatnie wyróżniona */
.team-bio .bio-section--intro {
  border-color: #cdeef7;
  background: linear-gradient(135deg, #f0fafd 0%, #ffffff 72%);
}

/* Cytat */
.team-bio .quote-box {
  position: relative;
  margin: 21px 0 0 !important;
  padding: 19px 22px 19px 28px;
  border: 0 !important;
  border-left: 4px solid #00bfff !important;
  border-radius: 0 7px 7px 0;
  background: #f0fafd !important;
  color: #1a2e4a !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}

.team-bio .quote-box::before {
  position: absolute;
  top: -16px;
  left: 12px;
  color: rgba(0, 191, 255, 0.16);
  content: "“";
  font-family: Georgia, serif;
  font-size: 74px;
  font-style: normal;
  line-height: 1;
}

.team-bio .quote-box em {
  position: relative;
  z-index: 1;
}

/* Sekcja prywatna */
.team-bio .bio-section--personal {
  border-color: #d7eff6;
  background: #f8fdfe;
}

/* Telefon */
@media (max-width: 768px) {
  .team-bio {
    margin-bottom: 38px;
  }

  .team-bio .bio-section {
    margin-bottom: 18px;
    padding: 24px 20px 24px 24px;
  }

  .team-bio .bio-section::before {
    top: 22px;
    bottom: 22px;
  }

  .team-bio .bio-section-number {
    top: -13px;
    right: 17px;
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .team-bio .bio-section h3 {
    margin-right: 34px !important;
    font-size: 20px !important;
  }

  .team-bio .bio-section p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .team-bio .quote-box {
    padding: 18px 18px 18px 23px;
    font-size: 16px;
  }
}
/* ========================================
   PROFILE – KLINIKA I UPRAWNIENIA
   ======================================== */

.clinic-header {
  margin: 0 0 28px;
  padding: 22px 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00bfff 0%, #1a2e4a 100%);
  box-shadow: 0 8px 22px rgba(0, 191, 255, 0.18);
}

.clinic-header h2 {
  margin: 0;
  color: #ffffff !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.team-bio .credentials-box {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #cfeff7;
  border-left: 4px solid #00bfff;
  border-radius: 0 8px 8px 0;
  background: #f0fafd;
}

.team-bio .credentials-box p {
  margin: 0 0 11px !important;
  color: #444444 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.team-bio .credentials-box p:last-child {
  margin-bottom: 0 !important;
}

.team-bio .credentials-box strong {
  color: #1a2e4a !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .clinic-header {
    margin-bottom: 22px;
    padding: 19px 20px;
  }

  .clinic-header h2 {
    font-size: 22px;
  }

  .team-bio .credentials-box {
    padding: 19px 18px;
  }

  .team-bio .credentials-box p {
    font-size: 14px !important;
  }
}
/* ========================================
   DOBRY ZABIEG – TIMELINE / OŚ CZASU
   ======================================== */

.timeline-container {
  position: relative;
  margin: 34px 0 45px;
  padding: 4px 0 4px 32px;
}

.timeline-container::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 13px;
  width: 2px;
  border-radius: 2px;
  background: #cceff7;
  content: "";
}

.timeline-item {
  position: relative;
  margin: 0 0 22px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  display: flex;
  position: absolute;
  top: 22px;
  left: -32px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 3px solid #f0fafd;
  border-radius: 50%;
  background: #00bfff;
  box-shadow: 0 3px 9px rgba(0, 191, 255, 0.28);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0;
  font-weight: 800;
  z-index: 1;
}

.timeline-content {
  position: relative;
  padding: 22px 25px;
  border: 1px solid #e1f2f7;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(26, 46, 74, 0.05);
}

.timeline-content::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 4px;
  height: calc(100% - 40px);
  border-radius: 0 4px 4px 0;
  background: #00bfff;
  content: "";
}

.timeline-content h4 {
  margin: 0 0 9px;
  padding-left: 12px;
  color: #1a2e4a;
  font-family: 'Quicksand', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.timeline-content p {
  margin: 0;
  padding-left: 12px;
  color: #555555;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* Rok jako mała etykieta wewnątrz karty */
.timeline-content .timeline-year-label {
  display: inline-block;
  margin: 0 0 10px 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f0fafd;
  color: #00a9df;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .timeline-container {
    margin: 28px 0 35px;
    padding-left: 25px;
  }

  .timeline-container::before {
    left: 9px;
  }

  .timeline-year {
    top: 19px;
    left: -25px;
    width: 22px;
    height: 22px;
    border-width: 2px;
  }

  .timeline-content {
    padding: 20px 18px;
  }

  .timeline-content::before {
    top: 18px;
    height: calc(100% - 36px);
  }

  .timeline-content h4 {
    padding-left: 10px;
    font-size: 17px;
  }

  .timeline-content p {
    padding-left: 10px;
    font-size: 15px;
  }

  .timeline-content .timeline-year-label {
    margin-left: 10px;
  }
}
.wp-block-gallery.has-nested-images,
.wp-block-uagb-image-gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 1rem !important;
}
.wp-block-gallery.has-nested-images figure.wp-block-image,
.wp-block-uagb-image-gallery .wp-block-uagb-image-gallery-item {
  width: 100% !important;
  margin: 0 !important;
}
@media (max-width: 480px) {
  .wp-block-gallery.has-nested-images,
  .wp-block-uagb-image-gallery {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================
   FAQ — Elementor Nested Accordion (lekki styl, bez ramek)
   ======================================== */

.e-n-accordion {
  border-top: 1px solid #e8f4f9;
}

.e-n-accordion-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid #e8f4f9 !important;
}

.e-n-accordion-item-title {
  padding: 18px 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1a2e4a !important;
  cursor: pointer;
  transition: color 0.2s ease;
  list-style: none;
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.e-n-accordion-item-title::-webkit-details-marker {
  display: none;
}

.e-n-accordion-item-title:hover {
  color: #00bfff !important;
}

.e-n-accordion-item[open] .e-n-accordion-item-title {
  color: #00bfff !important;
}

.e-n-accordion-item-title-icon svg {
  fill: #00bfff !important;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.e-n-accordion-item .elementor-widget-text-editor p {
  padding: 0 4px 18px 26px !important;
  margin: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: #666666 !important;
}

@media (max-width: 768px) {
  .e-n-accordion-item-title {
    padding: 15px 2px !important;
    font-size: 15px !important;
  }
  .e-n-accordion-item .elementor-widget-text-editor p {
    padding: 0 2px 15px 22px !important;
    font-size: 14px !important;
  }
}/* Breadcrumb: przygotowanie warstw */
.pt-breadcrumb {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Logo jako jasnoszary znak wodny */
.pt-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("https://dobry-zabieg.pl/wp-content/uploads/dobryzabieg_logo_bg.png");
  background-repeat: no-repeat;
  background-position: right 7% center;
  background-size: 804px auto;

  filter: grayscale(100%) brightness(0.45) contrast(0.55);
  opacity: 0.04;

  pointer-events: none;
}

/* Treść breadcrumbów zawsze nad logo */
.pt-breadcrumb > .container {
  position: relative;
  z-index: 1;
}