/* Name: New styles
Author: Bartosz Chomont
Date: 05.2025
Version: 1.0.0 */

/******************************

        00 - ZMIENNE
        01 - RESET & NORMALIZE
		02 - OGÓLNE & GLOBALNE KLASY
        03 - LAYOUT
        04 - TYPOGRAFIA
        05 - OBRAZKI & VIDEO
        06 - KOMPONENTY (formularze, slidery, modale, swiper)
		07 - MISC
        08 - HEADER & FOOTER
        09 - STRONA GŁÓWNA
		10 - PODSTRONY
    
******************************/

/*----------------------------------------*/
/*  00 - ZMIENNE
/*----------------------------------------*/

:root {
  --color-primary: #84A799;
  --primary-lighter: #ADCDC0;
  --primary-darker: #648c7c;
  --color-secondary: #DAD3C3;
  --color-accent: #0BC5FF;
  --color-accent-light: #B0ECFF;	
  --color-text: #0B1215;
  --bg-light: #fff;
  --bg-gray: #F6F6F6;

  --font-primary: 'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
   --font-secondary: 'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;

  --spacing-small: 8px;
  --spacing-s-m: 12px;
  --spacing-medium: 16px;
  --spacing-m-l: 24px;
  --spacing-large: 32px;

  --border-radius: 5px;
}

/*----------------------------------------*/
/*  01 - RESET & NORMALIZE
/*----------------------------------------*/

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

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

html {
	box-sizing: border-box;
	font-size: 16px;
	overflow-x: hidden;
}

body {
	font-family: "Montserrat";
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	overflow-x: hidden;
	color: var(--color-text);
}

/*----------------------------------------*/
/*  02 - OGÓLNE & GLOBALNE KLASY
/*----------------------------------------*/

a {
	color: var(--color-primary);
	text-decoration: underline;
	line-height: 1;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--color-primary);
}

.primary-button {
	display: inline-block;
	/* padding: 16px 32px; */
	
	padding: 15px;
	font-size: 15px;
	line-height: 1;
	
	border: 1px solid var(--color-secondary);
	border-radius: 5px;
	background: var(--color-secondary);
	color: var(--color-accent);
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.primary-button:hover {
	background: var(--color-accent);
	border: 1px solid var(--color-accent);
	color: var(--color-secondary);
}

.secondary-button {
	display: inline-block;
	/* padding: 16px 32px; */
	
	padding: 15px;
	font-size: 15px;
	line-height: 1;
	
	border: 1px solid var(--color-secondary);
	background: transparent;
	color: var(--color-secondary);
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.secondary-button:hover {
	background: var(--color-secondary);
	color: var(--color-accent);
}

.black-button {
	display: inline-block;
	padding: 12px 24px;
	width: 100%;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 0;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}

.section-subtitle {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 18px;
	color: var(--color-primary);
	font-weight: 600;
	text-transform: uppercase;
}

.section-title {
	display: inline-block;
	margin-bottom: 16px;
}

.section-intro {
	font-size: 18px;
	line-height: 1.5;
}

.layout-1-col .section-intro {
	display: inline-block;
	margin-bottom: 0;
	width: 100%; max-width: 700px; margin: 0 auto; text-align: center;
}

.layout-2-cols .section-intro {
	display: inline-block;
	margin-bottom: 32px;
}

.layout-2-cols .video-container {
	aspect-ratio: 1 / 1;
}

.layout-3-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 108px;
}

.section-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.section-list li {
	margin-bottom: 0;
	font-size: 16px;
}

.c-white {
	color: #fff;
}

.c-black {
	color: #000;
}

.bg-white {
	background-color: #fff;
}

.bg-light {
	background-color: var(--bg-light);
}

.bg-gray {
	background-color: var(--bg-gray);
}

.bg-primary {
	background-color: var(--color-primary);
}

/* .bg-pattern {
	background-image: url('');
	background-size: cover;
} */

@media (max-width: 1100px) {
	.onlydesktop {
		display: none;
	}
	
	.layout-3-cols {
		flex-direction: column;
		gap: 48px;
	}
	
	.layout-1-col .section-intro {
		text-align: left;
	}
}

@media (min-width: 1101px) {
	.onlymobile {
		display: none;
	}
}



/*----------------------------------------*/
/*  03 - LAYOUT
/*----------------------------------------*/

section {
	position: relative;
	padding: 60px 0;
}

.flex {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-1 {
	flex: 1;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 48px;
	align-items: center;
}

.grid.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.layout-1-col {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.layout-2-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 80px;
}

.layout-2-cols.reverse {
	flex-direction: row-reverse;
}

.gap-8 {
	gap: 8px;
}

.gap-12 {
	gap: 12px;
}

.gap-16 {
	gap: 16px;
}

.gap-24 {
	gap: 24px;
}

.gap-32 {
	gap: 32px;
}

.gap-36 {
	gap: 36px;
}

.gap-48 {
	gap: 48px;
}

.gap-64 {
	gap: 64px;
}



@media (max-width: 1100px) {
	.flex:not(.mobile-header):not(.mobile-row) {
		flex-direction: column;
	}

	
	.flex-column.ai-center {
		align-items: flex-start;
	}
	
	.flex-column.txt-center {
		text-align: left;
	}
	
	.layout-1-col {
		gap: 48px;
	}
	
	.layout-2-cols {
		gap: 32px;
	}
	
	.layout-2-cols, .layout-2-cols.reverse, .mobile-column {
		flex-direction: column;
	}
	
	.layout-2-cols.mobile-reverse, .layout-2-cols.reverse.mobile-reverse {
		flex-direction: column-reverse;
	}
	
	.mobile-reverse {
		flex-direction: column-reverse;
	}
	
	.grid.grid-2, .grid.grid-3, .grid.grid-4 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.f-nowrap {
	flex-wrap: nowrap;
}

.ai-center {
	align-items: center;
}

.ai-start {
	align-items: flex-start;
}

.jc-center {
	justify-content: center;
}

.jc-space-between {
	justify-content: space-between;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 12px;
	position: relative;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

.col {
	flex: 1;
}

@media (min-width: 1101px) {
	.col-d-50 {
		width: 50%;
	}
	
	.col-d-33 {
		width: 33.33%;
	}
	
	.col-d-66 {
		width: 66.66%;
	}
}

@media (max-width: 1100px) {
	.col-m-100 {
		width: 100%;
	}
	
	.col:has(.video-container) {
	    display: flex;
    flex-direction: column;
    gap: 24px;
}
}

@media (min-width: 1101px) {
	
}

@media (max-width: 1100px) {
	.mobile-pt-0 {
		padding-top: 0;
	}
}

.txt-left {
	text-align: left;
}

.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}

/*----------------------------------------*/
/*  04 - TYPOGRAFIA
/*----------------------------------------*/

@font-face {
    font-family: "Font Name";
    src: url("../fonts/Font-Name-SemiBold.ttf") format("truetype");
    font-weight: 600; /* Dopasuj do stylu fonta */
    font-style: normal;
    font-display: swap;
}

p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
}

p strong {
	font-weight: 700;
}

span {
	font-weight: 400;
}

ul li,
ol li {
	font-size: 18px;
	margin-bottom: 8px;
	line-height: 1.5;
	list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", var(--font-primary), Helvetica, Arial, Lucida, sans-serif;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
}

h3, h4 {
	font-family: "Montserrat", var(--font-secondary), Helvetica, Arial, Lucida, sans-serif;
	font-weight: 600;
}

h1 {
	font-size: 64px;
	font-weight: 700;
	text-transform: uppercase;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	
}

h6 {
	
}

@media (max-width: 1100px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 12px;
	}
	h6 {
		font-size: 11px;
	}
}

.semi-bold {
	font-weight: 600;
}

.text-small {
	font-size: 16px;
}

/*----------------------------------------*/
/*  05 - OBRAZKI & VIDEO
/*----------------------------------------*/

img {
	width: 100%;
	height: auto;
	display: block;
}

.img-square {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center center;
	border-radius: 16px;
}

.img-square.op-top {
	object-position: top;
}

.img-3x2 {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	object-position: center center;
}

.img-2x3 {
	width: 100%;
	height: auto;
	aspect-ratio: 2/3;
	object-fit: cover;
	object-position: center center;
}

.img-1x2 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/2;
	object-fit: cover;
	object-position: center center;
}

.img-2x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	object-position: center center;
}

.img-1x3 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/3;
	object-fit: cover;
	object-position: center center;
}

.img-3x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 3/1;
	object-fit: cover;
	object-position: center center;
}

.img-1x4 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/4;
	object-fit: cover;
	object-position: center center;
}

.img-4x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 4/1;
	object-fit: cover;
	object-position: center center;
}

.img-16x9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: center center;
}

.img-9x16 {
	width: 100%;
	height: auto;
	aspect-ratio: 9/16;
	object-fit: cover;
	object-position: center center;
}

.video-container {
flex: 1;
width: 100%;
max-width: 100%;
aspect-ratio: 16 / 9;
}

.video-container iframe {
	width: 100%;
	height: 100%;
}


/*----------------------------------------*/
/*  06 - KOMPONENTY
/*----------------------------------------*/

@charset "UTF-8";
@font-face {
	font-family: 'ElegantIcons';
	src: url("fonts/ElegantIcons.eot");
	src: url("fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"), url("fonts/ElegantIcons.woff") format("woff"), url("fonts/ElegantIcons.ttf") format("truetype"), url("fonts/ElegantIcons.svg#ElegantIcons") format("svg");
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'ElegantIcons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wpcf7 input:not([type="checkbox"]), .wpcf7 textarea {
	width: 100%;
    line-height: 1;
    margin: 0;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 0;
}

.wpcf7-submit {
	background: #000;
	color: #fff;
	border-radius: 0;
}

.formularz-mapka .wpcf7 input:not([type="checkbox"]):not([type="submit"]), .formularz-mapka .wpcf7 textarea {
	background: #EEEEEE;
	border: 1px solid #ddd;
}

.formularz-mapka .wpcf7-submit {
	background: var(--color-primary);
	color: #000;
	border-radius: 0;
}

span[data-name="acceptance-137"] {
	display: block;
	margin-bottom: 24px;
}

/*----------------------------------------*/
/*  07 - MISC
/*----------------------------------------*/

path.white {
	fill: #fff;
}

path.black {
	fill: #000;
}

path.gray {
	fill: #F0F1F1;
}


/*----------------------------------------*/
/*  08 - HEADER & FOOTER
/*----------------------------------------*/

header {
	background: #fff;
}

.header-top {
	padding: 4px 0;
	border-bottom: 1px solid #333;
}

header .logo-img {
	width: 120px;
	height: auto;
}

header li {
	margin-bottom: 0;
}

.header-telefon, .header-lokalizacja, .header-godziny, header #primary-menu li a {
	color: var(--color-text);
	text-decoration: none;
	font-size: 16px;
}

header #primary-menu li ul li a {
	color: var(--color-secondary);
}

.header-telefon:hover, .header-lokalizacja:hover, header #primary-menu li a:hover {
	color: var(--color-primary);
}

#primary-menu {
	display: flex;
	list-style-type: none;
	gap: 32px;
}

header #primary-menu, header #primary-menu li {
	margin: 0;
	padding: 0;
	position: relative;
	list-style-type: none;
}

header #primary-menu li a {
	text-decoration: none;
}

header #primary-menu li ul {
	display: none;
	background: #fff;
	position: absolute;
	top: 20px;
    left: -20px;
    width: 250px;
    padding: 16px 32px;
	z-index: 20;
}

header #primary-menu li:hover ul {
	display: block;
}

.header-main-right {
	display: flex;
	align-items: center;
	gap: 32px;
}

.navbar-toggler,
.mobile-menu-bg,
.menu-wrap .close {
    display: none;
}

header i {
	color: var(--color-text);
	font-size: 20px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 500px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dropdown-item {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item a {
    font-size: 16px;
    text-transform: none;
    font-weight: normal;
    display: block;
}

/* DLA ROZWIJANEGO MENU: #menu-item-20 .sub-menu {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	
	#menu-item-20 .sub-menu .menu-item {
		padding: 0 20px;
	}
*/

@media (min-width: 1101px) {
	.mobile-menu, .hamburger {
		display: none;
	}
}

/* Mobilna wersja */
@media (max-width: 1100px) {
    .header-top {
        display: none;
    }
	
	.desktop-menu {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

   /*  .site-navigations {
        position: relative;
    }

    .navbar-toggler {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        z-index: 1001;
    }

    .mobile-menu-bg {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .header-main-right {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: #fff;
        padding: 20px;
        z-index: 1001;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
        transition: transform 0.3s ease;
    }

    .header-main-right.active,
    .mobile-menu-bg.active {
        display: flex;
		background: #000;
		width: 100%;
    }

    .menu-wrap .close {
        display: block;
        align-self: flex-end;
        font-size: 24px;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .navigation {
        flex-direction: column;
        gap: 16px;
    }

    .header-button {
        margin-top: auto;
    } */
}

@media (max-width: 768px) {
	header .logo-img {
		height: 32px;
		width: auto;
	}
	
	.img-square {
		aspect-ratio: 3/2;
	}
	
	.hero .section-inner h1, h1 {
		font-size: 36px;
	}
}

footer {
	background: #000;
	color: #fff;
}

footer a {
	color: #fff;
	text-decoration: none;
}

.footer-top {
	padding: 36px 0;
	border-bottom: 1px solid #333;
	font-size: 16px;
}

.footer-top .flex-column {
	gap: 8px;
}

.footer-widget-area {
	padding: 36px 0;
	border-bottom: 1px solid #000;
}

.footer-bottom {
	padding-top: 36px;
	border-top: 1px solid #333;
}

.footer-widget-area ul li {
	margin-bottom: 12px;
	font-size: 16px;
}

@media (max-width: 1100px) {
	.footer-top .flex {
		gap: 12px;
	}
	
	.footer-top .flex img {
		margin-bottom: 12px;
	}
	
	.footer-middle {
		margin-top: 24px;
	}
	
	.footer-copyright-text-area {
		flex-direction: column-reverse;
		gap: 16px;
	}
}

/* HOME: Hero section */

.hero {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	background-image: url('https://medicaspace.marketize.com.pl/wp-content/uploads/2025/05/palceholder_3-2.png');
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 90vh;
	position: relative;
	padding: 0;
}

.hero h1, .hero p, .hero span {
	color: #000;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.hero-content span {
	font-size: 24px;
	max-width: 550px;
	line-height: 1.2;
}

.hero-stars {
	display: flex;
	gap: 12px;
}

.stars-rating .fas {
	color: var(--color-accent);
}

.hero-buttons {
	display: flex;
	gap: 16px;
}

@media all and (max-width: 768px) {
	.hero {
		background-image: url('https://medicaspace.marketize.com.pl/wp-content/uploads/2025/05/palceholder_3-2.png');
		height: auto;
		padding: 70px 0;
	}
	
	.hero-stars {
		order: 1;
	}
	
	.hero-buttons {
		order: 2;
		width: 100%;
		max-width: 420px;
	}
	
	.hero-buttons, .hero-stars {
		flex-direction: column;
	}
}


/** HOME POZOSTAŁĘ **/

@media (max-width: 1100px) {
	.wyrozniki-kolumny {
		gap: 32px;
		align-items: center;
	}
	
	.wyroznik {
		width: 100%;
	}
}


/************** 10: PODSTRONY *************************/

/* All */

.page-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: auto;
	aspect-ratio: 3.8/1;
	position: relative;
}

.page-header:not(.efekty):not(.policy)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.page-header-content {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-header .intro {
	color: #fff;
	line-height: 1.5;
	font-size: 18px;
}

.layout-2-cols .section-content {
	margin-bottom: 16px;
}

.layout-2-cols .section-content p {
	margin-bottom: 16px;
}

.layout-2-cols .section-content > *:last-child {
    margin-bottom: 0;
}

.layout-2-cols .btn {
	margin-top: 16px;
}

/* Usługi */

.three-icons .layout-2-cols {
	gap: 48px;
}

.three-icons img {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.three-icons i {
	font-size: 48px;
	margin-bottom: 24px;
	color: var(--primary-color);
}

.three-icons h4 {
	margin-bottom: 12px;
	text-wrap: balance;
}

.flex.metamorfozy {
	gap: 48px;
}

/* .faq-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.faq-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-question {
	font-weight: 700;
	font-size: 20px;
	cursor: pointer;
}

.faq-answer {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
} */

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 0; /* brak przerw między elementami – będą linie */
	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0,0,0,.06);
	overflow: hidden;
}

.faq-item {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid rgba(0,0,0,.08);
}

.faq-item:first-child {
	border-top: 0;
}

.faq-question {
	font-weight: 700;
	font-size: 20px;
	cursor: pointer;
    text-align: left;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 22px 24px;
}

.faq-item:hover {
	background: rgba(0,0,0,.03);
}

.faq-icon {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(0,0,0,.14);
	border-radius: 50%;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: transform 220ms ease;
}

.faq-answer {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	text-align: left;

	/* domyślnie bez paddingu, żeby zamknięte nie zostawiało „luzu” */
	padding: 0 24px 0 24px;

	/* ważne: animujemy padding, bo JS animuje tylko height */
	transition: height 220ms ease, padding 220ms ease;
}

/* padding pojawia się tylko gdy element jest otwarty */
.faq-question[aria-expanded="true"] + .faq-answer {
	padding: 0 24px 24px 24px;
}

/* dla pewności: zamknięte ma brak dolnego paddingu */
.faq-question[aria-expanded="false"] + .faq-answer {
	padding: 0 24px 0 24px;
}

.section-two-cols h2 {
	margin-bottom: 32px;
}

.section-two-cols h3, .section-two-cols h4 {
	margin-bottom: 16px;
}

.content {
	text-align: center;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
	padding: 60px 0;
}

.content:last-of-type {
	padding: 0;
}

.content h2 {
	margin-bottom: 24px;
}

.featured .col-d-66:has(:only-child) .section-intro {
	margin-bottom: 0;
}

.mkz-section-caption {
	font-size: 20px;
}

@media (max-width: 1100px) {
	.single-services section:not(.page-header) {
		padding: 32px 0;
	}
	
	.content {
		padding: 40px 12px;
		text-align: left;
	}
	
	.content:last-of-type {
		padding: 0 12px;
	}
	
	.section-intro, .mkz-section-caption {
		font-size: 18px;
	}
	
	.section-two-text-cols .container:has(.first) {
		flex-direction: column;
	}
}

/* Kontakt */

.kontakt-ikonki .layout-2-cols {
	gap: 48px;
}

.kontakt-ikonki img {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.kontakt-ikonki h4 {
	margin-bottom: 12px;
}

.kontakt-ikonki p {
	margin-bottom: 24px;
}

@media (max-width: 1100px) {
	.formularz-mapka .layout-2-cols {
		gap: 24px;
	}
	
	.formularz-mapka .col {
		width: 100%;
	}
}

/* Opinie */

.opinie-cols {
	display: flex;
	gap: 32px;
}

/* Zespół */

.lekarz .pozycja {
	width: 100%;
	display: inline-block; 
	margin-bottom: 16px;
	font-size: 18px;
	color: var(--color-primary);
	text-transform: uppercase;
	font-weight: 600;
}

.lekarz-description {
	margin-bottom: 24px;
}

.lekarz-przyciski {
	display: flex;
	gap: 12px;
}

@media (max-width: 1100px) {
	.lekarz-content.flex-column.ai-center {
		text-align: center;
	}
	
	.lekarz-title {
		align-self: center;
	}
	
	.lekarz-przyciski {
		flex-direction: column;
		width: 100%;
	}
	
	..lekarz-przyciski a {
		width: 100%:
	}
}

/* Profil lekarza */

.profil-lekarza .container.flex {
	gap: 80px;
}

.profil-lekarza h1 {
	font-size: 48px;
	margin-bottom: 16px;
}

.profil-lekarza .spec {
	margin-bottom: 32px;
}

.profil-lekarza .spec-title {
	font-weight: 600;
	text-transform: uppercase;
}

.profil-lekarza .spec-content, .profil-lekarza .lekarz-subtitle {
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-primary);
}

.certyfikaty .gallery-grid-list, .stowarzyszenia .gallery-grid-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	list-style-type: none;
}

.certyfikaty .gallery-grid-list img, .stowarzyszenia .gallery-grid-list img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
}

.certyfikaty .flex-column, .stowarzyszenia .flex-column {
	gap: 64px;
}

@media (max-width: 1100px) {
	.certyfikaty .gallery-grid-list, .stowarzyszenia .gallery-grid-list {
    grid-template-columns: repeat(1, 1fr);
	gap: 0;
	}
	
	.profil-lekarza h1 {
		font-size: 36px;
	}
}

/* Cennik */

.cennik .container.flex {
	gap: 80px;
}

.pricelist-item-title {
	margin-bottom: 16px;
}

.pricelist-item-content {
	margin-bottom: 24px;
}

.pricelist-item {
	margin-bottom: 48px;
}

.pricelist-item table {
	margin-bottom: 0;
	border: 0;
	border-spacing: 0;
}

.pricelist-item table th {
	text-align: left;
	padding: 10px;
}

.pricelist-item table td {
	text-align: right;
	padding: 10px;
}

.pricelist-table tr:nth-child(odd) {
  background-color: #f0f1f2;
}

.pricelist-table tr:nth-child(even) {
  background-color: #fff;
}

.cennik ul, .cennik li {
	list-style-type: none;
}

.cennik ul li:not(:last-of-type) {
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
	margin-bottom: 16px;
}

.pricelist-nav__item a {
	text-decoration: none;
	color: #000;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricelist-nav__item a:hover {
	color: var(--color-primary);
}

@media (max-width: 1100px) {
	.pricelist-nav {
		display: none;
	}
}

/* Efekty leczenia */

.metamorfozy {
	padding-top: 0;
}

.metamorfozy .flex-column {
	gap: 32px;
}

.metamorfoza-single {
	background: #F0F1F1;
	color: #5A5C5F;
}

/* Historie leczenia */

.hl-second-title {
	color: #fff; text-align: center; margin-top: 48px; margin-bottom: 32px;
}

@media (max-width: 1100px) {
	.hl-second-title {
		margin-top: 32px;
		margin-bottom: 24px;
		text-align: left;
	}
}

/* Sekcja formularz CTA */

#formularz .wpcf7-acceptance a, .wpcf7-list-item-label {
	color: #fff;
}

#formularz h2 {
	margin-bottom: 16px;
}

span[data-name="acceptance-137"] .wpcf7-list-item {
	margin: 0;
	margin-left: 4px;
	font-size: 12px;
}

@media (max-width: 1100px) {
#formularz .layout-2-cols {
	flex-direction: column-reverse;
	gap: 32px;
}
	
#formularz img {
	aspect-ratio: 2 / 1;
    object-fit: cover;
}
	
	#formularz .col {
		gap: 32px;
	}
	
	span[data-name="acceptance-137"] {
		margin-bottom: 16px;
	}
	
}

/* Blog */

.single-post .article {
	padding-top: 200px;
	padding-bottom: 80px;
}

.blog-container {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 0 16px;
	position: relative;
}

.blog-container.thumbnail-area {
	max-width: 980px;
}

@media (min-width: 980px) {
.blog-container.content-area img {
	width: calc(100vw - 32px); /* 32px = suma paddingów rodzica */
  max-width: 948px;
  display: block;
  margin-left: -100px;
}
}

.single-post h1 {
	text-align: center;
	display: block;
	margin-bottom: 8px;
}

.single-post .title-area {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.single-post ul.post-categories {
	list-style-type: none;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.single-post ul.post-categories li {
	background: #EEEEEE;
	line-height: 1.5;
	padding: 8px 16px;
	display: inline-block;
	margin-bottom: 0;
}

.single-post .post-date {
	font-size: 14px;
	color: var(--color-primary);
}

.single-post .post-subtitle {
	color: #888888;
	display: block;
	margin-bottom: 24px;
}

.single-post .thumbnail-area img {
	margin: 64px 0;
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	object-position: center center;
}

.single-post .content-area p {
	margin-bottom: 24px;
}

.single-post .content-area p.intro {
	font-size: 18px;
	font-weight: 600;
}

.single-post .author {
	display: flex;
	gap: 24px;
	align-items: center;
}

.single-post .author-name {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.author-img {
	width: 64px;
	height: 64px;
}

@media (max-width: 768px) {
	.single-post article {
	padding-bottom: 60px;
}
}


/************** ??????????????????? ******************/

.w-100 {
	width: 100%;
}

.v2-kontener {
	width: 100%;
	padding: 112px 64px;
	display: flex;
	align-items: center;
	gap: 80px;
}

.v2-row {
	width: 100%;
	display: flex;
}

.v2-kontener.layout-one-col {
	flex-direction: column;
}

.v2-kontener.layout-two-cols {
	flex-direction: row;
}

.v2-kontener.layout-two-cols .v2-column {
	flex: 1 0 0;
}

	.layout-two-cols {
		display: flex; gap: 80px;
		align-items: center;
	}
	
	.layout-two-cols .v2-column {
		flex: 1;
	}

.v2-column-img {
	border-radius: 10px;
}

.v2-column-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	gap: 48px;
}

.v2-column-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	gap: 48px;
}

.v2-section-title-wrapper {
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.v2-content-wrapper {
	width: 100%;
}

.v2-kontener.layout-one-col .v2-section-title-wrapper {
	text-align: center;
}

.flex-3x {
	flex-wrap: wrap;
	gap: 48px;
}

.flex-3x .v2-column {
	width: calc((100% - 96px) / 3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flex-2x {
	flex-wrap: wrap;
	gap: 80px;
}

.flex-2x .v2-column, .flex-2x .column {
	width: calc((100% - 80px) / 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.v2-section-subtitle {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
	color: #888;
}

.v2-section-title {
	font-family: "Black Mango";
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
}

h1.v2-section-title {
	font-size: 72px;
}

.v2-section-caption {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
}

.video-container {
        flex: 1;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
		border-radius: 12px;
    }

@media all and (max-width: 768px) {
	.v2-kontener {
		padding: 60px 20px;
		gap: 40px;
	}
	
	.v2-section-title {
		font-size: 24px;
		text-align: center;
	}
	
	h3, h4 {
		font-size: 20px;
	}
	
	.v2-section-subtitle, .v2-section-caption {
		text-align: center;
	}
	
	h1.v2-section-title {
		font-size: 32px;
	}
	
	.flex-2x {
		flex-direction: column;
		gap: 20px;
	}
	
	.flex-2x-column, .flex-2x .v2-column {
		width: 100%;
	}
	
	.v2-kontener.layout-two-cols {
		flex-direction: column;
	}
}


















/****************** N2.css *********************/

/* GENERAL AND RESET */

:root {
	--primary-color: #84A799;
	--primary-lighter: #ADCDC0;
	--primary-darker: #648c7c;
	--secondary-color: #DAD3C3;
	}
	
html{
    line-height:1.15;
    -webkit-text-size-adjust:100%
}
*,:after,:before{
    box-sizing:border-box
}
body{
    background-color:#fff;
    color:#333;
    font-family: "Montserrat", -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size:18px;
    font-weight:400;
    line-height:1.5;
    margin:0;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}
h1,h2,h3,h4,h5,h6{
    color:inherit;
    font-family: "Montserrat";
    font-weight:500;
    line-height:1.2;
    margin-block-end:1rem;
    margin-block-start:.5rem;
}
h1{
    font-size:2.5rem
}
h2{
    font-size:2rem
}
h3{
    font-size:1.75rem;
}
h4{
    font-size:1.5rem
}
h5{
    font-size:1.25rem
}
h6{
    font-size:1rem
}
p{
    margin-block-end:.9rem;
    margin-block-start:0
}
hr{
    box-sizing:content-box;
    height:0;
    overflow:visible
}
pre{
    font-family:monospace,monospace;
    font-size:1em;
    white-space:pre-wrap
}
a{
    background-color:transparent;
    color: var(--primary-darker);
    text-decoration:none
}

a:active,a:hover{
    color:var(--primary-lighter);
}

a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{
    color:inherit;
    text-decoration:none
}

a:not([href]):not([tabindex]):focus{
    outline:0
}

abbr[title]{
    border-block-end:none;
    -webkit-text-decoration:underline dotted;
    text-decoration:underline dotted
}

b,strong{
    font-weight:bolder
}

}
img{
    border-style:none;
    height:auto;
    max-width:100%
}
details{
    display:block
}
summary{
    display:list-item
}
figcaption{
    color:#333;
    font-size:16px;
    font-style:italic;
    font-weight:400;
    line-height:1.4
}
[hidden],template{
    display:none
}
@media print{
    *,:after,:before{
        background:transparent!important;
        box-shadow:none!important;
        color:#000!important;
        text-shadow:none!important
    }
    a,a:visited{
        text-decoration:underline
    }
    a[href]:after{
        content:" (" attr(href) ")"
    }
    abbr[title]:after{
        content:" (" attr(title) ")"
    }
    a[href^="#"]:after,a[href^="javascript:"]:after{
        content:""
    }
    pre{
        white-space:pre-wrap!important
    }
    blockquote,pre{
        -moz-column-break-inside:avoid;
        border:1px solid #ccc;
        break-inside:avoid
    }
    thead{
        display:table-header-group
    }
    img,tr{
        -moz-column-break-inside:avoid;
        break-inside:avoid
    }
    h2,h3,p{
        orphans:3;
        widows:3
    }
    h2,h3{
        -moz-column-break-after:avoid;
        break-after:avoid
    }
}
label{
    display:inline-block;
    line-height:1;
    vertical-align:middle
}
button,input,optgroup,select,textarea{
    font-family:inherit;
    font-size:1rem;
    line-height:1.5;
    margin:0
}
input[type=date],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{
    border:1px solid #666;
    border-radius:3px;
    padding:.5rem 1rem;
    transition:all .3s;
    width:100%
}
input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{
    border-color:#333
}
button,input{
    overflow:visible
}
button,select{
    text-transform:none
}
[type=button],[type=reset],[type=submit],button{
    -webkit-appearance:button;
    width:auto
}
[type=button],[type=submit],button{
    background-color:transparent;
    border:1px solid #c36;
    border-radius:3px;
    color:#c36;
    display:inline-block;
    font-size:1rem;
    font-weight:400;
    padding:.5rem 1rem;
    text-align:center;
    transition:all .3s;
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
    white-space:nowrap
}
[type=button]:focus:not(:focus-visible),[type=submit]:focus:not(:focus-visible),button:focus:not(:focus-visible){
    outline:none
}
[type=button]:focus,[type=button]:hover,[type=submit]:focus,[type=submit]:hover,button:focus,button:hover{
    background-color:#c36;
    color:#fff;
    text-decoration:none
}
[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){
    cursor:pointer
}
fieldset{
    padding:.35em .75em .625em
}
legend{
    box-sizing:border-box;
    color:inherit;
    display:table;
    max-width:100%;
    padding:0;
    white-space:normal
}
progress{
    vertical-align:baseline
}
textarea{
    overflow:auto;
    resize:vertical
}
[type=checkbox],[type=radio]{
    box-sizing:border-box;
    padding:0
}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{
    height:auto
}
[type=search]{
    -webkit-appearance:textfield;
    outline-offset:-2px
}
[type=search]::-webkit-search-decoration{
    -webkit-appearance:none
}
::-webkit-file-upload-button{
    -webkit-appearance:button;
    font:inherit
}
select{
    display:block
}
table{
    background-color:transparent;
    border-collapse:collapse;
    border-spacing:0;
    font-size:.9em;
    margin-block-end:15px;
    width:100%
}
table td,table th{
    border:1px solid hsla(0,0%,50%,.502);
    line-height:1.5;
    padding:15px;
    vertical-align:top
}
table th{
    font-weight:700
}
table tfoot th,table thead th{
    font-size:1em
}
table caption+thead tr:first-child td,table caption+thead tr:first-child th,table colgroup+thead tr:first-child td,table colgroup+thead tr:first-child th,table thead:first-child tr:first-child td,table thead:first-child tr:first-child th{
    border-block-start:1px solid hsla(0,0%,50%,.502)
}
table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th{
    background-color:hsla(0,0%,50%,.071)
}
table tbody tr:hover>td,table tbody tr:hover>th{
    background-color:hsla(0,0%,50%,.102)
}
table tbody+tbody{
    border-block-start:2px solid hsla(0,0%,50%,.502)
}
@media(max-width:767px){
    table table{
        font-size:.8em
    }
    table table td,table table th{
        line-height:1.3;
        padding:7px
    }
    table table th{
        font-weight:400
    }
}
dd,dl,dt,li,ol,ul{
    background:transparent;
    border:0;
    font-size:100%;
    margin-block-end:16px;
    margin-block-start:0;
    outline:0;
    vertical-align:baseline
}

ul {
list-style-type: disc inside;
padding-left: 0;
}
 

/* HEADER AND FOOTER */
	
header .section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
	padding: 0;
}

.header-right {
        display: flex;
        gap: 48px;
        align-items: center;
    }

    .header-menu {
        display: flex;
        gap: 48px;
        list-style: none;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 500;
		margin-bottom: 0;
		align-items: center;
    }

    .header-menu > li {
        position: relative;
		margin-bottom: 0;
    }

    .header-menu a {
        color: #000;
        text-decoration: none;
        white-space: nowrap;
		font-size: 14px;
		font-weight: 500;
    }

    .header-menu a:hover {
        color: #666;
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 500px;
        background: #fff;
        border: 1px solid #f0f0f0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dropdown-item {
        padding: 8px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item a {
        font-size: 14px;
        text-transform: none;
        font-weight: normal;
        display: block;
    }

    .dropdown-item a:hover {
        color: #1a73e8;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #000;
    }

    .mobile-overlay {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background: #fff;
        z-index: 998;
        padding: 20px;
        display: none;
        overflow: hidden;
    }

    .mobile-overlay.active {
        display: block;
    }

    .mobile-menu-wrapper {
        height: 100%;
        overflow-y: auto;
    }

    .mobile-menu {
        list-style: none;
    }

    .mobile-menu li {
        border-bottom: 1px solid #f0f0f0;
		margin-bottom: 0;
    }

    .menu-item-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
		min-height: 44px;
    }
	
	.mobile-menu li:not(.mobile-dropdown) a {
		padding: 25px 0;
	}

    .mobile-menu a {
        color: #000;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        display: block;
        flex-grow: 1;
        padding: 10px 0;
    }

    .mobile-dropdown-btn {
        background: none;
        border: none;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #000;
        font-size: 20px;
        margin-left: 10px;
    }

    .mobile-submenu {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 15px;
    }

    .mobile-submenu.active {
        max-height: none;
        overflow-y: visible;
    }

    .mobile-submenu li {
        border-bottom: none;
    }

    .mobile-submenu a {
        font-size: 16px;
        font-weight: normal;
        padding: 12px 0;
        color: #666;
    }

    .mobile-button {
        margin-top: 20px;
    }
	
	header .mobile-menu-btn i {
		font-size: 20px;
	}
	
	header .mobile-menu-btn {
		width: 44px;
		height: 44px;
		padding: 0;
	}
	
	header .mobile-menu-btn:hover,
header .mobile-menu-button:focus {
    background-color: var(--primary-color);
	width: 44px;
	height: 44px;
	padding: 0;
}
	
	.dropdown-toggle {
		display: flex;
		align-items: center;
	}
	
	.fa-caret-down {
		font-size: 12px;
		margin-left: 8px;
	}
	
.footer-one-outer {
background: #000; color: #fff; width: 100%; height: auto;
}

.footer-one {
width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	display: flex;
justify-content: space-between;
padding: 48px 0;
border-bottom: 1px solid #666;
	}

.footer-one div {
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-one div span {
color: #fff;
line-height: 1;
}

.footer-one div a {
color: #fff;
text-decoration: none;
}

.footer-one div a:hover {
color: #fff;
text-decoration: underline;
}

@media all and (max-width: 900px) {
.footer-one {
flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
		padding: 32px 0;
}
}
	
	
	
	
	
	
	
	
	
	
/* LAYOUT */
	
	section {
		display: block;
		width: 100%;
		padding: 80px 20px;
	}
	
	section:nth-of-type(odd) {
		background: #fff;
	}
	
	section:nth-of-type(even) {
		background: rgb(246, 252, 246); /*#F6F6F6*/
	}
	
	.section-inner {
		display: flex;
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
	}
	
	.section-inner .row {
		display: flex;
		align-items: center;
		gap: 64px;
		width: 100%;
	}

.section-inner .row.reverse {
	flex-direction: row-reverse;
}
	
	.section-inner .row .column {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	
	.row .column img {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
		object-position: center center;
		border-radius: 16px;
	}

.flex {
	display: flex;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.two-cols a:not(.btn), .section-2-cols a:not(.btn), .layout-2-cols a:not(.btn), .one-col a:not(.btn) {
	color: var(--primary-color);
	text-decoration: underline;
}

.buttons {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
	
	.btn {
		display: inline-block;
		padding: 12px 36px;
		border-radius: 50px;
		font-size: 18px;
		line-height: 1;
		text-transform: uppercase;
		text-align: center;
	}
	
	.primary-button {
		display: inline-block;
		background: var(--primary-lighter);
		border: 1px solid var(--primary-lighter);
		color: #000;
		/* padding: 12px 36px; */
		
		padding: 15px;
		font-size: 15px;
		font-weight: 600;
		
		border-radius: 5px;
		/* font-size: 18px; */
		line-height: 1;
		text-transform: uppercase;
		text-align: center;
		transition: all 0.3s;
	}
	
	.primary-button:hover {
		background: var(--primary-darker);
		border: 1px solid var(--primary-darker);
		color: #fff;
		text-decoration: none;
	}
	
	.secondary-button {
		background: transparent;
		border: 1px solid var(--primary-darker);
		color: var(--primary-darker);
		
		/* padding: 12px 36px; */
		
		padding: 15px;
		font-size: 15px;
		font-weight: 600;
		border-radius: 5px;
		
		line-height: 1;
		text-transform: uppercase;
		text-align: center;
		transition: all 0.3s;
	}
	
	.secondary-button:hover {
		background: var(--primary-color);
		border: 1px solid var(--primary-color);
		color: #fff;
		text-decoration: none;
	}

.tetriary-button {
	color: var(--primary-color);
	text-decoration: underline;
}

.tetriary-button:hover {
	color: #930E10;
}
	
	h2 {
		font-size: 40px;	
		color: #000;
		text-wrap: balance;
		margin-bottom: 24px;
	}
	
	.page-content p, .page-content span {
		font-size: 18px;
		line-height: 1.5;
	}

.subtitle {
	text-transform: uppercase;
	color: var(--primary-color);
}

strong, b {
	color: #000;
}



@media (min-width: 1101px) {
    .col-d-25 {
        width: 25%;
    }
	
	.col-d-33 {
        width: 33.33%;
    }
	
	.col-d-50 {
        width: 50%;
    }
	
	.col-d-66 {
        width: 66.66%;
    }
	
	.col-d-75 {
        width: 75%;
    }
}

@media (max-width: 1100px) {
    .col-m-100 {
        width: 100%;
    }
}
	
	/* Specific */
	
	.hero {
		/* height: calc(100vh - 110px); */
	}
	
	.hero .section-inner {
		display: flex;
		align-items: center;
		gap: 64px;
	}
	
	.hero .section-inner .column {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	
	.hero .section-inner img {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
		object-position: center center;
		border-radius: 16px;
	}
	
	.hero .section-inner .hero-stars {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 8px;
	}
	
	.fa-star {
		color: var(--primary-color);
	}
	
	.hero .section-inner .hero-stars span {
		font-size: 18px;
		line-height: 1;
		text-transform: uppercase;
	}
	
	.hero .section-inner h1, h1 {
		font-size: 52px;
		color: #000;
	}
	
	.hero .section-inner p.intro {
		font-size: 18px;
		line-height: 1.5;
	}
	
	.hero .section-inner ul.benefits, .o-nas ul.benefits {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding-left: 0;
		list-style-type: none;
	}
	
	.hero .section-inner ul.benefits li, .o-nas ul.benefits li {
		position: relative;
		font-size: 18px;
		line-height: 1;
		text-transform: uppercase;
		padding-left: 32px;
		color: #000;
		font-weight: 600;
		margin-bottom: 0;
	}
	
	.hero .section-inner ul.benefits li::before, .o-nas ul.benefits li::before {
	content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    /* background-image: url("data:image/svg+xml;utf8,<svg fill='black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 25'><path d='M3.8 13.52L7.84 17.3L8.59 18L9.35 17.31L20.21 7.44L18.71 6L8.59 15.2L5.32 12.1L3.8 13.52Z'/></svg>"); */
	   background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2384a799" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
	}
	
	.hero h1, .hero p, .hero ul, .o-nas ul {
		margin-top: 0;
		margin-left: 0;
		margin-bottom: 0;
		margin-right: 0;
	}
	
	.section-inner.column {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 48px;
	}
	
	.uslugi .section-inner {
	gap: 48px;
}
	
	.uslugi .section-inner .title-container {
		width: 100%;
		max-width: 760px;
	}
	
	.uslugi .section-inner .title-container p {
		text-wrap: balance;
	}
	
	.lista-uslug {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 32px;
	}
	
	.lista-uslug .usluga {
		background: #fff;
		color: #000;
		border-radius: 16px;
		padding: 32px;
		display: flex;
		flex-direction: column;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.3s;
	}

.lista-uslug .usluga:hover {
	background: var(--primary-color);
	color: #fff;
}
	
	.lista-uslug .usluga .icon {
		background: var(--primary-color); width: 48px; height: 48px; display: flex; justify-content: center; align-items: center; border-radius: 50%;
		margin-bottom: 0;
	}
	
	.lista-uslug .usluga .icon i {
		color: #fff;
		font-size: 20px;
	}
	
	.lista-uslug .usluga h3 {
		margin-bottom: 0;
		flex: 1;
		text-wrap: balance;
	}
	
	.lista-uslug .usluga p {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.lista-uslug .usluga span {
		display: inline-block;
		margin-top: 12px;
		color: var(--primary-color);
		text-decoration: underline;
	}

.lista-uslug .usluga:hover span {
	color: #fff;
}

	
	section.liczby .section-inner {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 48px;
	}
	
	section.liczby .column {
			align-items: center;
			background: rgba(255,255,255,1);
			border-radius: 16px;
			display: flex;
			flex: 1;
			flex-direction: column;
			gap: 40px;
			padding: 0;
		}
	
	section.liczby .title-container, section.efekty .title-container, section.opinie .title-container, section.stowarzyszenia .title-container {
		width: 100%;
		max-width: 760px;
	}
	
	section.liczby h2, section.liczby p, section.liczby span {
		color: #000;
	}
		
		section.liczby .column .title {
			display: inline-block; margin-bottom: 8px; 
			font-size: 18px;
			font-weight: 600; 
			text-transform: uppercase;
			color: #000;
			text-wrap: balance;
		}
	
	section.liczby .column .description {
		color: #444;
	}
	
	section.liczby .fill {
		color: var(--primary-color);
	}
	
	section.liczby i {
	    color: var(--primary-darker);
    background: rgba(173, 205, 192, 0.3);
    padding: 10px;
    border-radius: 50px;
	}
	
	section.liczby .row {
		width: 100%;
	}
	
	section.liczby .row .column {
		flex: 1;
		flex-direction: row;
		gap: 12px;
	}
	
	section.liczby .row .column div {
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	}
	
	/* LISTA EFEKTÓW */

	.efekty .section-inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 48px;
	}

	.lista-efektow {
	display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr 1fr;
	}
	
	.efekt {
		flex: 1;
	}
	
.efekt-img {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: 12px;
}

.efekt-img img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.efekt-img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  clip-path: inset(0 0 0 0); /* start - "po" całe widoczne */
  transition: clip-path 1.2s ease;
}
	
	.efekt-tytul {
	display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 32px 0 8px 0;
	}
	
	.efekt-opis {
		display: block;
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 32px;
	}

/* uchwyt (linia + kółko) */
.efekt-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 1px;
  background: #fff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: left 1.2s ease, opacity 0.6s ease;
  pointer-events: none;
}

.efekt-handle::before {
  content: "↔";
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 5px black;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 4px 8px;
}
	
	/* OPINIE */
	
	.opinie .section-inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 48px;
	}
	
	/* STOWARZYSZENIA */
	.stowarzyszenia .section-inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 48px;
	}
	
	.stowarzyszenia-logotypy {
		display: flex;
		align-items: center;
		gap: 24px;
	}
	
	
	.stowarzyszenia-logotypy img {
		width: calc(20% - 24px * 4/5);
		height: auto;
	}
	
	/* KONSULTACJA */
	
	section.konsultacja, section.konsultacja-nano {
		background: var(--primary-color);
		color: #fff;
	}
	
	section.konsultacja h2, section.konsultacja li, section.konsultacja-nano h2, section.konsultacja-nano li {
		color: #fff;
	}
	
	.konsultacja .title-container {
		width: 100%;
		max-width: 500px;
	}

.konsultacja-nano .title-container, .konsultacja-nano .wpcf7 {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
	
	.konsultacja-korzysci {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

.konsultacja-nano .konsultacja-korzysci {
	align-self: center;
}
	
	.konsultacja-korzysci li {
		position: relative;
		font-size: 18px;
		line-height: 1;
		text-transform: uppercase;
		padding-left: 32px;
		color: #000;
		font-weight: 600;
	}
	
	.konsultacja-korzysci li::before {
	content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 25'><path d='M3.8 13.52L7.84 17.3L8.59 18L9.35 17.31L20.21 7.44L18.71 6L8.59 15.2L5.32 12.1L3.8 13.52Z'/></svg>"); 
		/* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM18.0303 8.53033L10.0303 16.5303C9.73744 16.8232 9.26256 16.8232 8.96967 16.5303L5.96967 13.5303C5.67678 13.2374 5.67678 12.7626 5.96967 12.4697C6.26256 12.1768 6.73744 12.1768 7.03033 12.4697L9.5 14.9393L16.9697 7.46967C17.2626 7.17678 17.7374 7.17678 18.0303 7.46967C18.3232 7.76256 18.3232 8.23744 18.0303 8.53033Z" fill="%2300C3A5"></path></svg>'); */
	   /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23d31417" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>'); */
	}
	
	.konsultacja-korzysci {
	list-style-type: none;
}
	
	.wpcf7 {
		width: 100%;
		max-width: 500px;
	}

#primary {
	margin-top: 120px;
}
	
	#top #main .wpcf7 input:not([type="checkbox"]), .wpcf7 textarea {
	width: 100%;
    line-height: 1;
    margin: 0;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 0;
}
	
	#top #main .wpcf7 p {
		margin: 0;
	}
	
	#top #main .wpcf7 .primary-button {
		background: #2e2320;
	}
	
	.wpcf7 .wpcf7-list-item {
		margin-left: 0;
	}
	
	.wpcf7-acceptance {
		display: inline-block;
		margin-bottom: 12px;
	}
	
	.wpcf7-acceptance .wpcf7-list-item-label, .wpcf7-acceptance .wpcf7-list-item-label a {
		font-size: 12px;
		color: #fff!important;
	}
	
	#top form, .wpcf7-submit {
		margin-bottom: 0!important;
	}

#top #main .wpcf7 input.wpcf7-submit, input[type=submit] {
		padding: 12px 36px;
		border-radius: 50px;
		font-size: 18px;
		text-transform: uppercase;
		background: #000;
		border: 1px solid #000;
		color: #fff;
		line-height: 1;
}
	
	.wpcf7-spinner {
		display: none;
	}

.wpcf7-not-valid-tip { 
text-align: left;
	color: #ffaaaa;
	margin-bottom: 16px;
}

/* SLIDER LEKARZE */

/* LEKARZE */

.lekarze .section-inner .row .column {
	width: 50%;
}
	
.slider-lekarze {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.single-lekarz {
  /* Zamiast min-width: 100%; */
  flex: 0 0 100%; /* Nie rośnij, nie kurcz się, bazowa szerokość 100% */
  box-sizing: border-box;
  display: flex;
  gap: 12px;
  padding: 20px;
}

.lekarz-imie {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
}

.lekarz-opis {
  display: block;
  font-size: 16px;
}

.row .column .single-lekarz img {
	border-radius: 0;
	object-position: top;
}

.single-lekarz a {
	display: inline-block;
	margin-top: 8px;
}

.slider-dots {
  text-align: center;
  margin-top: 10px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0 5px;
  background: #ccc;
  cursor: pointer;
}
.slider-dots button.active {
  background: #000;
}

/* FAQ */

.faq {
	text-align: center;
}

.faq-list, .faq .title-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

/* .faq-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.faq-item {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item .question {
	font-weight: 700;
	font-size: 18px;
	color: #000;
	text-wrap: balance;
}

.faq-item .answer {
	font-weight: 400;
	font-size: 16px;
}

.faq .section-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
} */

/* MIX */

.av-main-nav li {
	margin-bottom: 0;
}

.box-container {
    display: flex;
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
}

.glink:not(.gt-current-lang) span {
color: #000;
}

section:nth-of-type(even) .box {
    width: calc(25% - 12px);
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-sizing: border-box;
    text-align: center;
}

section:nth-of-type(odd) .box {
    width: calc(25% - 12px);
    background: #fff;
	border: 1px solid #ddd;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-sizing: border-box;
    text-align: center;
}



/* SWIPER HOME */

/* --- Podstawowy układ Swipera --- */
.swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  text-align: center;
  cursor: pointer;
}

.swiper-slide img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

/* --- Strzałki Swipera --- */
.swiper-button-next,
.swiper-button-prev {
  color: #000!important;
  background-color: rgba(255, 255, 255, 0.7);
    background-size: 14px;
    border-radius: 50px;
	width: 44px!important;
	height: 44px;
	font-size: 14px;
  transition: opacity 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  opacity: 0.7;
  font-size: 14px!important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

/* --- Paginacja --- */
.swiper-pagination {
position: relative!important;
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color)!important;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox iframe {
  width: 80vw;
  height: 45vw;
  max-width: 960px;
  max-height: 540px;
  border: none;
  border-radius: 12px;
}

/* --- Przyciski nawigacji --- */
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 0 20px;
}

.lightbox .prev { left: 0; }
.lightbox .next { right: 0; }

/* --- Zamknięcie --- */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.wyrozniki-lista {
		display: flex; 
		gap: 32px;
		flex-wrap: nowrap;
	}
	
	.wyroznik-single {
		flex: 1;
		display: flex;
		gap: 12px;
	}
	
	.wyroznik-single div {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	
	.wyroznik-single .title {
		color: #000000;
		font-size: 20px;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.wyroznik-single .description {
		color: #909090;
		font-size: 16px;
		font-weight: 400;
	}


/* MEDIA QUERIES */

@media all and (max-width: 1280px) {
		.hero .section-inner h1 {
		font-size: 48px;
		}
	}


@media all and (min-width: 1101px) {
	.only-mobile {
			display: none!important;
		}
	
	.konsultacja-nano .konsultacja-korzysci {
		flex-direction: row;
		width: calc(100% + 300px);
	}
}


@media all and (max-width: 1100px) {
		
		.only-desktop {
			display: none!important;
		}
		
		section {
			padding: 48px 20px;
		}
		
		.section-inner .row {
			gap: 48px;
		}
		
		.lista-efektow {
			display: flex;
		}
		
		.section-inner, .section-inner .row, .buttons, .lista-efektow {
			flex-direction: column;
		}
		
		.section-inner .row.reverse {
			flex-direction: column;
		}
		
		section.hero {
			padding-left: 12px;
			padding-right: 12px;
			padding-top: 40px;
			background: transparent;
			/* background-image: url('https://dentestica.pl/wp-content/uploads/2022/02/sesja_biznesowa0468-scaled.jpg'); */
			background-size: cover;
			background-position: center;
			position: relative;
		}
	
	.hero .section-inner .hero-stars {
		flex-direction: row;
	}
	
	.hero li a {
		text-wrap: balance;
		line-height: 1.2;
	}
		
		/*.single-uslugi section.hero {
			 background-image: url('https://dentestica.pl/wp-content/uploads/2021/03/protetyka.jpg'); 
		} */
		
		.hero::before {
			content:'';
			display: block;
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			background: rgba(255,255,255, 0.7);
		}
		
		.hero * {
			z-index: 2;
		}
		
		.hero .section-inner h1, h2 {
			font-size: 32px;
		}
		
		.hero .section-inner .hero-stars span, .fas, .fa {
			font-size: 16px;
		}
		
		.primary-button, .secondary-button {
			width: 100%;
		}
		
		.lista-uslug {
			grid-template-columns: repeat(1, 1fr);
		}
		
		.hero .section-inner img, .row .column img {
			aspect-ratio: 5/3;
			border-radius: 10px;
		}
		
		.row .column img.usmiech
		{
			object-position: top 40% left 0;
		}
		
		.row {
			margin-bottom: 0;
		}
		
		.buttons {
			width: 100%;
			margin-top: 32px;
		}
		
		.lekarze .section-inner .row .column {
			width: 100%;
		}
		
		section.liczby::before {
			display: none;
			content: none;
		}
		
		section.liczby .column {
			background: rgb(252, 246, 246);
		}
		
		section.liczby h2, section.liczby p, section.liczby span {
			color: #000;
		}
		
		section:nth-of-type(odd) .box, section:nth-of-type(even) .box {
			width: 100%;
		}
	}
	
@media all and (max-width: 768px) {
		.wyrozniki-lista {
			flex-direction: column;
		}
		
		.hero .section-inner h1, h1 {
			font-size: 36px;
		}
		
		.section-two-cols h2 {
			font-size: 32px;
		}
	
	h3, h4 {
		font-size: 20px;
	}
	

	}

.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  margin-left: 8px;
}

.tooltip-icon {
  cursor: pointer;
  font-size: 14px;
  color: #555;
  line-height: 1;
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Responsywność */
@media (max-width: 600px) {
  .tooltip-content {
    font-size: 12px;
    padding: 6px 10px;
    white-space: normal;
    max-width: 220px;
    text-align: center;
  }
}

.tooltip-wrapper:hover .tooltip-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
