:root {
	--blue-dark-color: #1757AE;
	--blue-light-color: #5685C4;
	--blue-gray-color: #405979;

	--blue-light-gray-color: #F0F4F9;

	--pink-dark-color: #B71653;
	--pink-light-color: #EF85AD;
	
	--gray-light-color: #F7F7F6;

	--font-main-color: #4D545D;

	--font-family-main: "Inter", sans-serif;

}

html { font-size: 80%; } /* zostawia domyślną bazę użytkownika */
body { font-size: 1rem; } /* 16px */

body {
	padding: 0;
	color: var(--font-main-color);
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--font-main-color);
	font-family: "Krub", sans-serif;
}

.homepage {
	background-color: #fff;
	font-family: var(--font-family-main);
}

.flex-1 { flex: 1; }
.mw-max-content { max-width: max-content !important; }

/* sm ≥ 576px */
@media (min-width: 576px) {
  .w-sm-100 { width: 100% !important; }
  .w-sm-auto { width: auto !important; }

  .mw-sm-max-content { max-width: max-content !important; }
}

/* md ≥ 768px */
@media (min-width: 768px) {
  .w-md-100 { width: 100% !important; }
  .w-md-auto { width: auto !important; }
  .h-md-fill-available { height: -webkit-fill-available !important; }

  .mw-md-max-content { max-width: max-content !important; }
}

/* lg ≥ 992px */
@media (min-width: 992px) {
  .w-lg-100 { width: 100% !important; }
  .w-lg-auto { width: auto !important; }

  .mw-lg-max-content { max-width: max-content !important; }
}

/* xl ≥ 1200px */
@media (min-width: 1200px) {
  .w-xl-100 { width: 100% !important; }
  .w-xl-auto { width: auto !important; }

  .mw-xl-max-content { max-width: max-content !important; }
}

/* xxl ≥ 1400px */
@media (min-width: 1400px) {
  .w-xxl-100 { width: 100% !important; }
  .w-xxl-auto { width: auto !important; }

  .mw-xxl-max-content { max-width: max-content !important; }
}

.admin-view .wpinacz-admin-mark {
  position: relative;
  isolation: isolate;
}

.admin-view .wpinacz-admin-mark {
  position: relative;
  isolation: isolate;
}

/* Overlay border jako prawdziwy <span> */
.admin-view .wpinacz-admin-outline {
  position: absolute;
  inset: 0;
  outline: 3px dashed var(--pink-dark-color);
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
  z-index: 20;
  box-sizing: border-box;
}

/* Klikalna zakładka */
.admin-view .wpinacz-admin-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 21;

  display: block;
  max-width: min(80vw, 760px);

  background: var(--pink-dark-color);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;

  padding: 8px 10px;
  border-radius: 0 10px 0 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);

  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.admin-view .wpinacz-admin-badge__code {
  display: block;
  margin-bottom: 2px;
}


/* Pokazuj dopiero po hover */
.admin-view .wpinacz-admin-mark:hover > .wpinacz-admin-outline {
  opacity: 1;
}

.admin-view .wpinacz-admin-mark:hover > .wpinacz-admin-badge {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.625em;
}

/* UWAGA: to są style GLOBALNE dla wszystkich tabel */

.article-section table:not(.tabexp) {
  border: 2px solid var(--blue-light-color);
  border-top: none;
  border-bottom: none;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  overflow: hidden; /* radius + tło */
  margin-bottom: 1rem;
}

/* nagłówek */
.article-section table:not(.tabexp) thead th{
  background: var(--blue-light-gray-color);
  color: var(--blue-gray-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 20px;
  border-bottom: 1px solid #cfe0ff;
  text-align: left;
  vertical-align: middle;
}

/* komórki */
.article-section table:not(.tabexp) td{
  padding: 18px 20px;
  color: #4b5563;
  line-height: 1.55;
  vertical-align: top;
  font-size: 1rem;
}

/* pionowa linia między kolumnami */
.article-section table:not(.tabexp) th + th,
.article-section table:not(.tabexp) td + td{
  border-left: 1px solid #d9dde5;
}

/* zebra */
.article-section table:not(.tabexp) tbody tr:nth-child(even) td{
  background: #f7f7f7;
}

/* delikatne oddzielenie wierszy (opcjonalnie – jak chcesz, zostaw) */
.article-section table:not(.tabexp) tbody tr + tr td{
  border-top: 1px solid #f0f2f6;
}

/* responsywność: przewijanie poziome tylko na małych ekranach */
@media (max-width: 700px){
.article-section table:not(.tabexp){
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width:768px) {
.article-section table:not(.tabexp){margin-left: 1.5rem;}
}

.btn {
	padding: 16px 40px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	border-width: 2px !important;
	border-style: solid !important;
	box-sizing: border-box;
}

.btn-blue {
	background-color: var(--blue-light-color);
	color: #fff;
}


.btn-blue-dark {
	background-color: var(--blue-dark-color);
	color: #fff;
}

.btn-pink {
	background-color: var(--pink-light-color);
	border-color: var(--pink-light-color);
}

.btn-blue-border-alt {
	border-color: var(--blue-light-color) !important;
	color: var(--blue-dark-color);
}

.btn-pink-border-alt {
	border-color: var(--pink-light-color) !important;
	color: var(--pink-light-color);
}

.btn-blue-not-hover:not(.btn-transparent) {
	color: #fff;
}

.btn-blue-not-hover,
.btn-blue-not-hover:hover {
	border-color: var(--blue-light-color) !important;
	background-color: var(--blue-light-color);
}


.btn-blue:hover {
	border-color: var(--blue-light-color)
}

.btn-blue-dark:hover {
	border-color: var(--blue-dark-color);
}

.btn-pink:hover {
	border-color: var(--pink-light-color) !important;
}

.btn-transparent,
.btn-transparent:hover {
	background-color: transparent;
}

.text-dark-pink,
.text-dark-pink:hover {
	color: var(--pink-dark-color);
}


.text-white {
	color: #fff;
}

.text-blue-light {
	color: var(--blue-light-color);
}

.text-blue-gray {
	color: var(--blue-gray-color);
}

.text-blue-dark {
	color: var(--blue-dark-color);
}

.text-pink {
	color: var(--pink-light-color);
}

.text-blue-gray {
	color: var(--blue-gray-color);
}

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

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

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

.section-title-home {
	font-size: 28px;
	font-weight: 500;
	color: var(--blue-gray-color);
}

.main-top-menu__list {
	list-style-image: none;
}

main ul,
footer ul {
	list-style-image: url('/images/arrow-right-icon-pink.png');
	padding: 0px;
	margin-left: 19px;
}

.how-to-take-care-section{
  position: relative;
  background: url("/images/bg-how-to-take-care.png") no-repeat left center / contain;
}


.list-with-chevron-right-arrow {
  list-style: none;
  padding-left: 0;        /* albo zostaw i dopasuj pod siebie */
  margin: 0;
  margin-left: 30px;
}

.list-with-chevron-right-arrow li {
  position: relative;
  padding-left: 22px;     /* miejsce na ikonkę */
}

.list-with-chevron-right-arrow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;            /* <- tym obniżasz/podnosisz marker */
  width: 14px;
  height: 14px;
  background: url("/images/chevron-direction-right-icon-2.png") no-repeat center;
  background-size: contain;
}

.homepage p {
	font-size: 18px;
}
.homepage p,
ul,
ol {
	color: var(--blue-gray-color);
}
.alignleft {
    display: inline !important;
    float: left;
    margin-right: 1.625em !important;
}
.promo-bar {
	font-size: 14px;
	padding: 12px 0px;
}
.promo-bar p {
	margin: 0px;
}
.top-nav {
	font-weight: 600;
}


.top-bar .socials-block {
	display: flex;
	gap: 16px;
}

.top-bar .about-contact a {
	padding: 0 8px;
}

.top-bar .about-contact a:last-child {
	padding-right: 0px;
}

.top-bar .about-contact {
	border-left: 2px solid;
	border-color: #D1DBEB;
}

.top-bar .top-bar__right {
	gap: 8px;
}

.top-nav a {
	color: var(--font-main-color);
}

.search-label-art {
	max-width: 396px;
	position: relative;
	background-color: var(--gray-light-color);
	border-radius: 180px;
	min-width: 40px;
    height: 40px;
}

.search-label-art:before {
	background-image: url('/images/search-icon-pink.png');
	content: '';
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 24px;
	transform: translate(-50%, -50%);
	margin: 0 auto;
	pointer-events: none;
}


.search-label-art .search-art-input {
	padding: 8px 55px;
	padding-right: 30px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: transparent;
	width: 100%;
	height: 100%;
}


.main-top-menu__list {
	list-style-type: none;
	padding: 0px;
}

.main-top-menu__list li {
	position: relative;
	
}

.main-top-menu__list .sub-menu li {
	width: 100%; 
	list-style-type: none;
}

.main-top-menu__list li a {
	position: relative;
	display: block;
	padding-right: 26px;
	max-width: max-content;
}

.main-top-menu__list .menu-item-has-children > a::after {
	display: inline-block;
	position: absolute;
	width: 12px;
	height: 7px;
	content: '';
	background-image: url('/images/arrow-down-icon-blue.png');
	background-repeat: no-repeat;
	top: 50%;
	right: 0;
	transform: translate(-50%,-50%);
}

.main-top-menu__list li a {
	font-weight: 600;
	display: block;
}


.header-hero-homepage {
  position: relative;
  background: var(--blue-light-gray-color);
  overflow: hidden;
}



/* parents na wierzchu */
.homepage:not(.page-id-159222,.page-id-159228,.page-id-159796) .header-hero-homepage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/bg-parents.png") no-repeat 70% bottom / auto 100%;
  pointer-events: none;
}

/* treść nad wszystkim */
.header-hero-homepage > * { position: relative; z-index: 1; }

.header-hero-homepage h1 {
	font-size: 48px;
}

.header-hero-homepage .box-content {
	font-weight: 400;
}

.header-hero-homepage .box-content h1 {
	margin-bottom: 18px;
}

.header-hero-homepage .box-content p {
	font-size: 20px;
}

.sub-menu {
  min-width: 250px;
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;        /* żeby nie dało się kliknąć gdy ukryte */
  transition: opacity 180ms ease, transform 180ms ease;
  top: 100%;
  left: 0;
  background-color: #fff;
  margin: 0px;
  border-radius: 3px;
  padding: 0px 16px;
  z-index: 25;
}



/* pokaż na hover */
.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
  .main-top-menu .menu-item-has-children.opened-menu > a:after {
    transform: rotate(180deg);
  }
  .main-top-menu .menu-item-has-children > a:after {
    transition: transform 200ms;
  }
@media (max-width: 991.98px) {
  .main-top-menu .menu-item-has-children > .sub-menu {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }

  .main-top-menu .menu-item-has-children.opened-menu > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-top-menu .menu-item-has-children > a:after {
    transition: transform 200ms;
  }


}

.features-section .card-item {
	height: 100%;
    padding: 13px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
	margin: 0;
}

.features-section .card-item h3 {
	font-size: 24px;
	font-weight: 500;
}

.features-section .card-item p {
	margin-top: 12px;
	margin-bottom: 24px;
}

.features-section .card-item .card-item__check-link {
	font-weight: 600;
	font-size: 18px;
	display: block;
	color: var(--blue-dark-color);
}

.features-section .card-item .card-item__icon {
	margin-bottom: 20px;
}

.card-item {
	background-color: var(--gray-light-color);
	border-radius: 6px;
}

.card-item h3 {
	color: var(--blue-gray-color);
}

.why-we-created-poronilam-section {
  position: relative;           /* jeśli masz absoluty w środku */
  margin-bottom: 20px;

	  /* background-image:
    linear-gradient(90deg,
      rgba(240,244,249,1) 0%,
      rgba(240,244,249,1) 55%,
      rgba(229,226,235,.92) 70%,
      rgba(217,190,203,.82) 87%,
      rgba(198,147,170,.70) 100%
    ),
    url('/images/bg-dlaczego-stworzylismy-poronilam.png'); */
	
	background-image: url('/images/bg-dlaczego-stworzylismy-poronilam-2.png');

  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover; 
}



.why-we-created-poronilam-section {
	margin-bottom: 20px;
	z-index: 50;
}

.why-we-created-poronilam-section h2 {
	margin-bottom: 15px;
}

.why-we-created-poronilam-section .box-content{
	max-width: 538px;
}

.card-item {
	padding: 26px;
}

.card-item__article-tag {
	color: var(--pink-light-color);
	font-weight: 500;
}

.card-item h3 {
	font-size: 24px;
	font-weight: 500;
}

.card-item p {
	font-weight: 400;
}

.useful-materials-section .card-item p {
	margin-top: 10px;
	margin-bottom: 10px;
}

.useful-materials-section .card-item .btn {
	padding-top: 8.5px;
	padding-bottom: 8.5px;
}

/* strzałki tylko mobile */
@media (min-width: 768px){
  .guides-slider__container .guides-nav{
    display: none !important;
  }
  .guides-slider__container .card-item {
	min-height: 287px;
  }
}

/* na desktop chcemy normalny układ (bez “slajdowania”) */
@media (min-width: 768px){
  .guides-slider__container .swiper-wrapper{
    transform: none !important;   /* żeby nie było przesunięcia z loop/autoplay */
  }
}

@media (min-width: 768px){
  .guides-slider__container .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;
  }
  .guides-slider__container .swiper-slide{
    width: auto !important;
    flex: 1 1 0;
  }
}
.guides-slider__container{ position: relative; } 

/* strzałki */
.guides-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;

  background: #0b4aa2;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);

  display: grid;
  place-items: center;
}

.guides-nav svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* “wystaw” strzałki poza 1320px */
.guides-nav--prev{ left: -58px; }
.guides-nav--next{ right: -58px; }

/* Na mniejszych ekranach trzymaj je przy krawędzi, żeby nie ucinało */
@media (max-width: 1399.98px){
  .guides-nav--prev{ left: 8px; }
  .guides-nav--next{ right: 8px; }
}

/* TYLKO MOBILE: na desktop ma być grid, więc strzałki chowamy */
@media (min-width: 768px){
  .guides-nav{ display: none; }
}

.sharing-history-section{
  background-image:
    linear-gradient(90deg,
      rgba(240,244,249,1) 23%,
      rgba(240,244,249,1) 55%,
      rgba(240,244,249,0.055) 100%,
      rgba(240,244,249,0) 85%
    ),
    url("/images/bg-dzielenie-sie-historia.jpg");

 	background-repeat: no-repeat, no-repeat;
    background-position: 103% 0, 230% center;
    background-size: 80%;

	padding-bottom: 0px;
}

.fp2 {
	box-shadow: 0px 4px 24px 0px rgba(164, 175, 188, 0.32);
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 40px;
	border-bottom-right-radius: 2px;
	font-size: 18px;
	font-weight: 400;

	padding: 32px;
	max-width: 424px;
	width: 100%;
	top: 0;
}

.sharing-history-section .box-content {
	max-width: 538px;
	position: relative;
}

.example-realizations-section {
	background-color: var(--blue-light-gray-color);
}

.history-realizations-slider {
	gap: 12px;
}

.history-realizations-slider__item {
	background-color: #ffffff;
	border-radius: 32px;
	border-bottom-left-radius: 2px;
	max-width: 424px;
	padding: 32px;
}

.history-author-row {
	color: var(--blue-gray-color);
	font-size: 16px;
	font-weight: 600;
}

.history-author-text {
	color: var(--font-main-color);
	font-size: 18px;
	font-weight: 500;
}

.history-author-link {
	color: var(--blue-dark-color);
	font-size: 18px;
	font-weight: 600;	
	max-width: max-content;
}

.support-group-section .box-content {
	max-width: 648px;
	position: relative;
}

.support-group-section .box-content > p {
	font-weight: 500;
	margin: 15px 0px;
}



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

.box-white .poronilam-konsultantka-img {
	position: relative;
    top: -34px;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
}

.box-white address {
	margin-top: -34px;
}

.white-bar p {
	margin: 0px;
}

.white-bar {
	padding: 11px 24px;
	border-radius: 16px;
	gap: 12px;
}

.white-bar p {
	font-size: 16px;
}

.white-bar .btn {
	padding: 16px 24px;
	max-width: 158px;
	font-size: 14px;
    text-wrap: nowrap;
}

.support-group-section {
	background:
  linear-gradient(90deg,
    rgba(240,244,249,0) 0%,
    rgba(240,244,249,0.85) 35%,
    var(--blue-light-gray-color) 50%
  ),
  url('/images/bg-grupa-wsparcia.png');

	background-repeat: no-repeat;
	background-position: center left; 
}

.articles-slider-row__item {
	background-color: var(--gray-light-color);
	border-radius: 6px;
	padding: 32px;
	column-gap: 24px;
	display: flex;
	flex-direction: column;
}

.articles-slider-row__item img {
	width: 100%; 
	object-fit: contain;
}

.articles-slider__container{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

/* strzałki */
.articles-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;

  background: #0b4aa2;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);

  display: grid;
  place-items: center;
}

.articles-nav svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* “wystaw” strzałki poza 1320px */
.articles-nav--prev{ left: -58px; }
.articles-nav--next{ right: -58px; }

/* Na mniejszych ekranach trzymaj je przy krawędzi, żeby nie ucinało */
@media (max-width: 1399.98px){
  .articles-nav--prev{ left: 8px; }
  .articles-nav--next{ right: 8px; }
}

/* opcjonalnie: na mobile możesz je schować */
@media (max-width: 767.98px){
  /* .articles-nav{ display:none; } */
}

.articles-nav--prev,
.articles-nav--next,
.guides-nav--prev,
.guides-nav--next {
	background-repeat: no-repeat !important;
    background-position: 50% !important;
} 

.articles-nav--prev,
.guides-nav--prev {
	background-image: url('/images/arrow-left-blue-icon.png') !important;
}
.articles-nav--next,
.guides-nav--next {
	background-image: url('/images/arrow-right-blue-icon.png') !important;
}

@media screen and (min-width:768px) {
	.articles-nav--prev,
	.guides-nav--prev {
		background-image: url('/images/arrow-left-white-icon.png') !important;
	}
	.articles-nav--next,
	.guides-nav--next {
		background-image: url('/images/arrow-right-white-icon.png') !important;
	}
	.articles-slider-row__item {
		height: auto;
	}
}

.articles-slider-row__item h3 {
	margin-top: 24px;
}

.articles-slider-row__item a {
	color: #405878;
	font-size: 25px;
	font-weight: 500;
}

.faq-answers-section {
	background-image:
    linear-gradient(180deg, rgba(236,238,246,0.9) 100%, rgba(255,255,255,0.2) 100%),
    url('/images/bg-czesto-zadawane-pytania.png');
  background-size: cover;
  background-position: center;

	
}

.faq-list {
	max-width: 1096px;
	gap: 16px;
	display: flex;
	flex-direction: column;
	list-style-position: inside;
}

.faq-list li {
	position: relative;
	font-weight: 500;
	font-size: 16px;
	background-color: #fff;
	color: var(--blue-gray-color);
	border-radius: 8px;
	padding: 24px 40px;
	cursor: pointer;
}

.faq-list li h3 {
	position: relative;
	width: 96%;
	font-weight: 500;
    font-size: 18px;
	padding-right: 50px;
	margin: 0px;
}

.faq-list li h3::after {
	width: 20px;
	height: 11.64px;
	content: '';
	display: block;
	background: url('/images/arrow-down-icon-blue.png') no-repeat;
	position: absolute;
    background-position: center;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.faq-list li.opened h3::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-list li > * {
	display: inline-flex;
}

.faq-list li .faq-answer {
	display: none;
}

.faq-list li.opened .faq-answer {
	display: block;
	margin-top: 20px;
}

.faq-list{
  max-width: 1096px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* pojedynczy element FAQ = su-spoiler */
.faq-list .su-spoiler{
  position: relative;
  font-weight: 500;
  font-size: 16px;
  background-color: #fff;
  color: var(--blue-gray-color);
  border: none;
  border-radius: 8px;
  padding: 0;            /* padding damy na tytuł/treść */
  cursor: pointer;
  margin: 0;             /* SU czasem dodaje marginesy */
}

/* tytuł (klikany) */
.faq-list .su-spoiler-title,
.su-spoiler {
  position: relative;
  width: 96%;
  font-weight: 500;
  font-size: 1.2rem !important;
  margin: 0;
  padding: 24px 40px;
  padding-right: 90px;   /* miejsce na strzałkę */
  background: var(--gray-light-color) !important;
  border: none !important;
  outline: none;
}
.su-spoiler-title {
	padding-right: 0px !important;
}
.su-spoiler {
	padding: 24px 40px !important;
}
.su-spoiler-title:focus {
	outline: none !important;
}
.su-spoiler-style-fancy>.su-spoiler-title {
	border: none !important;
	background: transparent !important;
	margin: 0px !important;
}
/* usuń domyślne ikonki/tło z SU, bo robimy własne */
.faq-list .su-spoiler-title .su-spoiler-icon,
.su-accordion .su-spoiler-title .su-spoiler-icon {
  display: none !important;
}

/* Twoja strzałka jak wcześniej */
.faq-list .su-spoiler-title::after,
.su-accordion .su-spoiler-title .su-spoiler-icon {
  width: 20px;
  height: 11.64px;
  content: '';
  display: block;
  background: url('/images/arrow-down-icon-blue.png') no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(180deg) !important;
}
.faq-list .su-spoiler-closed .su-spoiler-title::after,
.su-accordion .su-spoiler-closed .su-spoiler-title .su-spoiler-icon  {
	transform: translateY(-50%) rotate(360deg) !important;
}
/* stan otwarty w SU */
.faq-list .su-spoiler.su-spoiler-open .su-spoiler-title::after, 
.su-accordion .su-spoiler.su-spoiler-open .su-spoiler-title::after{
  transform: translateY(-50%) rotate(180deg);
}

/* treść odpowiedzi */
.faq-list .su-spoiler-closed .su-spoiler-content,
.su-accordion .su-spoiler-closed .su-spoiler-content {
  display: none;                 /* SU zwykle steruje displayem, ale to ujednolica */
  padding: 0 40px 24px 40px;
  margin: 0;
}

/* gdy otwarte */
.faq-list .su-spoiler.su-spoiler-open .su-spoiler-content,
.su-accordion .su-spoiler.su-spoiler-open .su-spoiler-content{
  display: block;
}

/* odstęp po otwarciu (jak Twoje margin-top:20px) */
.faq-list .su-spoiler.su-spoiler-open .su-spoiler-content > :first-child,
.su-accordion .su-spoiler.su-spoiler-open .su-spoiler-content > :first-child {
  margin-top: 20px;
}

/* opcjonalnie: usuń „trim” z SU jeżeli przycina marginesy */
.faq-list .su-u-trim,
.su-accordion .su-u-trim{
  padding: 0;
}
.su-accordion .su-spoiler-style-fancy {
	border: none !important;
}
/* Domyślnie pokazuj tylko 5 pierwszych */
.faq-answers-section .faq-list .su-accordion > .su-spoiler-closed.is-hidden:nth-child(n+6) {
  display: none;
}

.su-spoiler-style-fancy>.su-spoiler-title {
	max-width: max-content;
	padding: 0px;
}
.su-spoiler-icon {
	display: none !important;
}

.faq-answers-section .su-spoiler{
	margin-bottom: 15px;
}

/* Po rozwinięciu pokaż resztę */
.faq-list.is-expanded > li:nth-child(n+6) {
  display: list-item;
}

.experts-work-with-us-section .card-item {
	max-width: none;
	height: auto;
	background-color:  var(--gray-light-color);
}

.experts-slider__container{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.experts-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;

  background: #0b4aa2;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);

  display: grid;
  place-items: center;
}

.experts-nav svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* strzałki na zewnątrz */
.experts-nav--prev{ left: -58px; }
.experts-nav--next{ right: -58px; }

@media (max-width: 1399.98px){
  .experts-nav--prev{ left: 8px; }
  .experts-nav--next{ right: 8px; }
}

.experts-swiper {
  overflow: hidden; /* albo overflow: clip; */
}
.experts-swiper .swiper-wrapper{
  display: flex;              /* Swiper i tak daje flex, ale jak coś nadpisuje to naprawia */
}


.experts-swiper .card-item img{
  display: block;
  border-radius: 50%;
}


.experts-work-with-us-section .card-item h3 {
	margin-bottom: 15px;
}

.experts-work-with-us-section .card-item p {
	margin-bottom: 0px;
	font-size: 14px;
	font-weight: 400;
}

.experts-slider__container{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.experts-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;

  background: #0b4aa2;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);

  display: grid;
  place-items: center;
}

.experts-nav svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* strzałki na zewnątrz */
.experts-nav--prev{ left: -58px; }
.experts-nav--next{ right: -58px; }

@media (max-width: 1399.98px){
  .experts-nav--prev{ left: 8px; }
  .experts-nav--next{ right: 8px; }
}


.experts-swiper .card-item img{
  display: block;
  border-radius: 50%;
}


/* pozwól wyjść poza kontener */
.our-partners-section .container{
  overflow: visible;
}

/* Swiper domyślnie ma overflow hidden – my chcemy widzieć “poza” */
.our-partners-section .partners-swiper{
  overflow: visible;
}

/* stała szerokość slajdu (zmień jak chcesz) */
.our-partners-section .partners-swiper .swiper-slide{
  width: 240px;                 /* np. 240; możesz dać 312 jeśli chcesz */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* logo */
.our-partners-section .partners-swiper img{
  max-width: 180px;             /* dopasuj do designu */
  height: auto;
  display: block;
}

/* opcjonalnie: delikatna przerwa między logami */
.our-partners-section .partners-swiper .swiper-wrapper{
  align-items: center;
   transition-timing-function: linear !important; /* najważniejsze */
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}


.footer-n {
	background-color: #e6ecf5;

}

.footer-n > .container {
	padding-top: 80px;
	padding-bottom: 80px;
	padding-top: 25px;
	padding-bottom: 25px;
}

.footer-n * {
	font-size: 14px;
}

.footer-n p,
.footer-n ul li a {
	color: var(--font-main-color);
}

.footer-n address a {
	color: var(--pink-light-color);
	font-size: 24px;
	font-weight: 600;
}

.footer-n h3 {
	color: var(--blue-gray-color);
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 24px;
}

.footer-n ul {
	margin: 0px;
	margin-left: 19px;
}

.footer-n ul li a {
	display: block;
	padding: 5.6px 0px;
	font-weight: 500;
}

.footer-n h4 {
	font-size: 24px;
	font-weight:500;
}

.footer-n .we-are-here-support__social-row {
	margin-top: 15px;
}

.we-are-here-support__social-row .we-are-here-support-block {
	max-width: 49%;
}

.footer-n .we-are-here-support-block {
	padding: 16px;
	border-radius: 6px;
	background-color: #dfe6f2;
	text-align: center;
}

.copy-bar {
	background-color: #dfe6f2;
	padding: 10px 0;
}





.page-id-159222 .header-hero-homepage{
  /* background:
    linear-gradient(90deg,
      #5685c4 0%,
      #5685c4 54%,
      rgba(86,133,196,.85) 57%,
      rgba(86,133,196,0) 62%,
      rgba(86,133,196,0) 100%
    ),

    linear-gradient(270deg,
      rgba(86,133,196,.85) 0%,
      rgba(255,255,255,0) 18%,
      rgba(255,255,255,0) 100%
    ),

    url("/images/bg-hero-przed-poronieniem.png") no-repeat right center; */


	
	 background: var(--blue-light-color) url("/images/bg-hero-przed-poronieniem-2-new.png") no-repeat right center;
	 background-size: contain;
}

.page-id-159222 .header-hero-homepage *,
.page-id-159228 .header-hero-homepage *,
.page-id-159796 .header-hero-homepage * {
	color:#fff; 
}

.page-id-159228 .header-hero-homepage {
	background: url("/images/bg-hero-po-poronieniu.png") no-repeat right center;
	background-size: cover;
}

.page-id-159796 .header-hero-homepage {
	background: var(--blue-light-color)  url("/images/bg-wasze-historie.png") no-repeat right center;
	background-size: contain;
}
.przed-poronieniem-page .header-hero-homepage::before,
.przed-poronieniem-page .header-hero-homepage::after { content:none; }

.przed-poronieniem-page .section-with-gray-boxes h2 {
	font-size: 40px;
}

.section-with-gray-boxes .gray-box h3 {
	font-size: 24px;
	font-weight: 500;
	color: var(--blue-gray-color);
}

.section-with-gray-boxes .gray-box {
	display: flex;
	flex-direction: column;
	background: var(--gray-light-color);
	padding: 32px;
	gap: 24px;
	border-radius: 6px;
	justify-content: space-between;
}

.section-with-gray-boxes .gray-box * {
	font-size: 18px;
	font-weight: 400;
	color: var(--font-main-color);
}

.section-with-gray-boxes .gray-box p {
	margin: 0px;
}

.section-with-gray-boxes .gray-box ul {
	margin-left: 19px;
}

.section-with-gray-boxes .gray-box .white-bar {
	padding: 32px 24px;
}

.gray-box .white-bar address {
	margin: 0px;
}

.gray-box .white-bar address a {
	color: var(--pink-light-color);
	font-size: 1.225rem;
	font-weight: 700;
}


.how-to-take-care-section .box-bottom ul li{
	margin-bottom: 20px;
}

.section-with-gray-boxes .gray-box__link {
	font-size: 18px;
	font-weight: 600;
	color: var(--blue-dark-color);
}

.page-id-159228 .section-with-gray-boxes .gray-box__link {
	color: var(--pink-light-color);
}

@media screen and (min-width: 768px) {
	.section-with-gray-boxes .row:first-child .gray-box {
		max-width: 480px;
	}
	.page-id-159228 .section-with-gray-boxes .row:first-child .gray-box {
		max-width: 424px;
	}
	.section-with-gray-boxes .box-with-heading {
		max-width: 312px;
	}
	.gray-box-with-img-mobile {
		padding-top: 180px;
	}
	.articles-slider-row__item {
		height: -webkit-fill-available !important;
	}
	.articles-slider-row__item img {
		max-height: 225px;
	}
	.su-spoiler-title {
		padding-right: 50px !important;
	}
}




/* ZMIANA ROZMIARU CZCIONEK */

.btn { font-size: 1.125rem; } /* 18px */

.section-title-home { font-size: 1.75rem; } /* 28px */
.homepage p { font-size: 1.125rem; } /* 18px */
.article-section ul,.article-section ol {font-size: 1.125rem;}
.promo-bar { font-size: 0.875rem; } /* 14px */

.header-hero-homepage h1 { font-size: 3rem; } /* 48px */
.header-hero-homepage .box-content p { font-size: 1.25rem; } /* 20px */

.features-section .card-item h3 { font-size: 1.5rem; } /* 24px */
.features-section .card-item .card-item__check-link { font-size: 1.125rem; } /* 18px */

.card-item h3 { font-size: 1.5rem; } /* 24px */

.fp2 { font-size: 1.125rem; } /* 18px */

.history-author-row { font-size: 1rem; } /* 16px */
.history-author-text { font-size: 1.125rem; } /* 18px */
.history-author-link { font-size: 1.125rem; } /* 18px */

.white-bar p { font-size: 1rem; } /* 16px */
.white-bar .btn { font-size: 0.875rem; } /* 14px */

.articles-slider-row__item a { font-size: 1.5625rem; } /* 25px */

.faq-list li { font-size: 1rem; } /* 16px */
.faq-list li h3 { font-size: 1.125rem; } /* 18px */

.experts-work-with-us-section .card-item p { font-size: 0.875rem; } /* 14px */

.footer-n * { font-size: 0.875rem; } /* 14px */
.footer-n address a { font-size: 1.5rem; } /* 24px */
.footer-n h3 { font-size: 1.25rem; } /* 20px */
.footer-n h4 { font-size: 1.5rem; } /* 24px */

@media screen and (min-width: 768px) {
  .section-title-home { font-size: 2.5rem; } /* 40px */
}

.przed-poronieniem-page .section-with-gray-boxes h2 { font-size: 2.5rem; } /* 40px */
.section-with-gray-boxes .gray-box h3 { font-size: 1.5rem; } /* 24px */
.section-with-gray-boxes .gray-box * { font-size: 1.125rem; } /* 18px */
.section-with-gray-boxes .gray-box__link { font-size: 1.125rem; } /* 18px */


/* END ZMIANA ROZMIARU CZCIONEK END */


.blue-light-bar {
	background-color: var(--blue-light-gray-color);
	padding: 20px 24px;
	border-radius: 8px;
}

.page-id-159222 .your-rights-after-miscarriage-section {
	background: url('/images/bg-twoje-prawa-po-poronieniu.png') left center no-repeat;
	background-size: auto;
	padding-bottom: 40px;
}

.your-rights-after-miscarriage-section .box-content {
	max-width: 648px;
}

.your-rights-after-miscarriage-section .box-content ul li {
	margin-bottom: 20px;
}

.support-section {
	background: linear-gradient(270deg,
      rgba(240,244,249,1) 23%,
      rgba(240,244,249,1) 55%,
      rgba(240,244,249,0.055) 100%,
      rgba(240,244,249,0) 85%
    );
}



.support-section ul li {
	margin-top: 20px;
}

.support-section .box-white {
	background-color: #fff;
	border-radius: 8px;
	max-width: 424px;
	padding: 24px 40px;
}

.support-section .box-white a {
	color: var(--pink-light-color);
}

.support-section .box-white address a {
	font-size: 1.8rem;
	font-weight: 700;
}

.page-id-159222 .useful-materials-section .guides-slider__container .swiper-wrapper {
	grid-template-rows: repeat(1, 1fr)
}

.page-id-159222 .how-to-take-care-section{
  position: relative;
  background: url("/images/bg-how-to-take-care.png") no-repeat left top / auto 851px;
} 

.page-id-159228 .how-to-take-care-section{
  position: relative;
  background: url("/images/bg-jak-sobie-poradzic-po-poronieniu.png") no-repeat left center / contain;
} 


@media screen and (max-width: 991px) {
	.main-top-menu a {
		padding: 7.5px 0px;
	}
	.main-top-menu.menu-active {
		display: block !important;
	}
}
@media screen and (max-width: 768px) {
	.bg-white-mobile {
		background: #fff;
	}
	.border-top-gray-mobile {
		border-top: 1px solid #d1dbeb;
	}
	.top-bar {
		border-bottom: 1px solid #D1DBEB;
	}
	
	
	.header-hero-homepage {
		padding: 185px 0px 20px;
	}

	.homepage:not(.page-id-159222,.page-id-159228,.page-id-159976,.page-id-159796) .header-hero-homepage::after {
		content: "";
		position: absolute;
		top: 0; bottom: 0;
		right: 0;
		width: 100%; /* <-- kontrolujesz gdzie zaczyna się prawa grafika */
		background: url("/images/bg-parents-mobile.png") no-repeat top;
		pointer-events: none;
	}
	.features-section .card-item {
		display: block;
	}
	.features-section .card-item .card-item__icon {
		margin: 0px;
	}

	.why-we-created-poronilam-section {
		padding: 212px 0px 20px;
		/* 1) biały “panel” wchodzący w zdjęcie */
  		background:  url('/images/bg-dlaczego-stworzylismy-poronilam-mobile.png') var(--blue-light-gray-color) no-repeat;
		background-position: center top;
		background-size: 100%;
	}
	.guides-slider__container {
		text-align: center;
	}

	.experts-swiper .card-item img {
		margin: 0 auto;
	}
	.features-section .card-item__header {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	button.experts-nav,
	button.articles-nav,
	button.guides-nav {
		background: #fff;
		box-shadow: none;
		border: 1px solid #d1dbeb;
	}
	.experts-nav svg,
	.articles-nav svg,
	.guides-nav svg {
		stroke: var(--blue-dark-color);
	}
	.sharing-history-section {
		background-image: url('/images/bg-dzielenie-sie-historia-mobile.png');
		background-position: center 73%;
        background-size: 360px 280px;
		background-size: 100%;
	}
	.sharing-history-section .box-content {
		display: flex;
		flex-direction: column;
	}
	.sharing-history-section .rows-btns {
		margin-top: 330px;
	}
	.support-group-section {
		background: url('/images/bg-grupa-wsparcia-mobile.png') var(--blue-light-gray-color) no-repeat;
		background-size: 100% auto;
		padding-top: 150px;
		padding-bottom: 20px;
	}
	.support-group-section .white-bar  {
		padding: 16px;
	}
	.support-group-section .white-bar .btn {
		max-width: none;
		width: 100%;
	}
	.articles-guides-section {
		padding: 16px;
	}
	.faq-answers-section {
		padding-top: 286px;
		padding-bottom: 20px;
		background-image: url('/images/bg-czesto-zadawane-pytania-mobile.png');
		background-size: 360px 270px;
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: top;
		background-color: var(--blue-light-gray-color);
	}
    .faq-list li {
		padding: 20px 16px;
	}
	.su-spoiler-style-fancy>.su-spoiler-title {
		max-width: none;
	}
	.faq-list .su-spoiler-title::after,
	.su-accordion .su-spoiler-title .su-spoiler-icon {
		right: -40px
	}
	.experts-work-with-us-section {
		padding: 20px 0;
	}
	.our-partners-section {
		padding: 40px 0;
	}
	.page-id-159222 .header-hero-homepage {
		background: var(--blue-light-color) url("/images/bg-hero-przed-poronieniem-mobile.png") no-repeat top;
		background-size: 100%;
	}
	.page-id-159228 .header-hero-homepage {
		background: var(--pink-light-color) url("/images/bg-hero-po-poronieniu-mobile.png") no-repeat top;
		background-size: 100%;
	}
	.page-id-159796 .header-hero-homepage {
		background: var(--blue-light-color) url("/images/bg-wasze-historie-mobile.png") no-repeat top;
		background-size: 100%;
	}
	.page-id-159222 .how-to-take-care-section {
		background: url("/images/how-to-take-care-mobile.png") no-repeat top;
		background-size: 100%;
		padding-top: 250px;
	}
	.page-id-159222 .your-rights-after-miscarriage-section {
		background: url("/images/bg-twoje-prawa-po-poronieniu-mobile.png") no-repeat top;
		background-size: 100%;
		padding-top: 250px;
		padding-bottom: 20px;
	}
	.page-id-159228 .how-to-take-care-section {
		background: url("/images/bg-jak-sobie-poradzic-po-poronieniu-mobile.png") no-repeat top;
		background-size: 100%;
		padding-top: 250px;
	}

	.how-to-take-care-section .box-bottom{
		max-height: 510px;   /* ustaw ile chcesz */
		overflow-y: auto;
		scrollbar-gutter: stable; /* opcjonalnie */
	}

	/* Firefox */
	.how-to-take-care-section .box-bottom{
		scrollbar-width: thin;
		scrollbar-color: var(--blue-light-color) transparent;
	}

	/* Chrome / Edge / Safari */
	.how-to-take-care-section .box-bottom::-webkit-scrollbar{
		width: 6px;
	}
	.how-to-take-care-section .box-bottom::-webkit-scrollbar-track{
		background: transparent;
	}
	.how-to-take-care-section .box-bottom::-webkit-scrollbar-thumb{
		border-radius: 999px;
	}
	.page-id-159222 .how-to-take-care-section .box-bottom {
		scrollbar-color: var(--blue-light-color) transparent;
	}
	.page-id-159222 .how-to-take-care-section .box-bottom::-webkit-scrollbar-thumb{
		background: var(--blue-light-color);
	}
	.page-id-159228 .how-to-take-care-section .box-bottom {
		scrollbar-color: var(--pink-light-color) transparent;
	}
	.page-id-159228 .how-to-take-care-section .box-bottom::-webkit-scrollbar-thumb{
		background: var(--pink-light-color)
	}
	
}

@media screen and (max-width: 550px) {
	.faq-list li h3 {
		width: 90%;
	}
	.experts-swiper,
	.experts-swiper .swiper-wrapper,
	.articles-swiper,
	.articles-swiper .swiper-wrapper {
		/* max-width: 360px; */
		max-width: 296px;
		box-sizing: content-box;
	}
	.articles-swiper img {
		display: block;
		max-width: 264px;
        max-height: 165px;
		margin: 0 auto;
	}
	
	
	.footer-n > .container {
		padding-top: 0px;
	}
	.our-partners-section {
		padding: 16px 0px;
	}
}

@media screen and (max-width: 425px) {
	.btn {
		padding: 16px 24px;
	}
	.copy-bar p {
		font-size: 11px !important;
	}
	.experts-nav--prev,
	.articles-nav--prev {
		left: -17px;
	}
	.experts-nav--next,
	.articles-nav--next {
		right: -17px;
	}
	.page-id-159222 .gray-box-with-img-mobile{
		background: var(--gray-light-color) url("/images/objawy-poronienia-box-mobile.png") no-repeat top;
		background-size: 100% auto;
		padding-top: 180px;
	}
	.page-id-159228 .gray-box-with-img-mobile {
		background: var(--gray-light-color) url("/images/badania-po-poronieniu-jak-rozpoznac-box-mobile.png") no-repeat top;
		background-size: 100% auto;
		padding-top: 180px;
	}
	.section-with-gray-boxes .gray-box {
		gap: 12px;
		padding-bottom: 24px;
	}
	.search-label-art .search-art-input {
		padding: 8px 35px;
    	font-size: 12px;
	}
	.search-label-art:before {
		left: 11px;
		transform: translate(0%, -50%);
	}
}

@media screen and (min-width: 768px) {
	.container {box-sizing: content-box;}
	
	.padding-homepage-section {
		/* padding: 80px 0px 120px; */
		padding: 50px 0px 90px;
		padding: 30px 0px 70px;
	}



	.card-item {
		max-width: 424px; 
	}

	.header-hero-homepage {
		padding: 100px 0;
		padding: 75px 0;
		padding: 55px 0;
	}

	.main-top-menu__list .sub-menu > li {
		position: relative;
	}

	/* 2. poziom */
	.main-top-menu__list .sub-menu > li > .sub-menu{
		top: 0;
		left: calc(100% + 16px);
	}

	/* mostek hover między menu a submenu */
	.main-top-menu__list .sub-menu > li.menu-item-has-children::after{
		content: "";
		position: absolute;
		top: 0;
		right: -16px;     /* tyle ile masz przerwy */
		width: 16px;
		height: 100%;
	}
	
	/* hall tylko po prawej */
	.homepage:not(.page-id-159222,.page-id-159228,.page-id-159796) .header-hero-homepage::before {
		content: "";
		position: absolute;
		top: 0; bottom: 0;
		right: 0;
		width: 60%; /* <-- kontrolujesz gdzie zaczyna się prawa grafika */
		background: url("/images/bg-hall-office-medical-hospital.png") no-repeat right center;
		background-size: 100%;
		pointer-events: none;

		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%);
		mask-image: linear-gradient(90deg, transparent 0%, #000 25%);
	}

	.why-we-created-poronilam-section {
		padding-top: 70px;
	}

	.why-we-created-poronilam-section:before {
		content: '';
		position: absolute;
		display: block;
		background-image: url('/images/heart-drawing-pink.png');
		background-repeat: no-repeat;
		background-position: left top;
		/* width: 208px;
		height: 182px; */
		top: -60px;
		left: 9%;
		width: 156px;
        height: -webkit-fill-available;
        background-size: 100%;
	}

	.features-section .card-item {
		/* padding: 32px; */
		padding: 20px;
	}

	.features-section .card-item {
		max-width: 312px;
		margin: 0 auto;
	}

	

	.sub-menu li {
		padding: 5px 0px;
	}
   
	.sub-menu {
		display: block;
		border: 1px solid var(--blue-gray-color);
		position: absolute;
	}

	.search-label-art:before {
		background-image: url('/images/search-icon-pink.png');
		content: '';
		top: 50%;
		bottom: 0;
		transform: translateY(-50%);
	}
	
	.menu-item-has-children:hover > a:after {
		transform: rotate(180deg);
	}

	.header-hero-homepage .box-content {
		max-width: clamp(320px, 71vw, 648px);
	}

	.how-to-take-care-section .box-content {
		max-width: clamp(320px, 51vw, 984px);
	}

	.fp2 {
		position: absolute;
		left: 606px;
		padding: 16px 24px;
		max-width: 284px;
	}

	.support-group-section {
		/* padding: 145px 0px; */
		padding: 100px 0px;
		padding: 80px 0px;
	}

	.support-group-section .box-content::after {
		display: block;
		content: '';;
		background-image: url('/images/heart-drawing-blue.png');
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		top: -134px;
		right: calc(0vw - 2vw);

		width: 156px;
        height: 130px;
        background-size: 100%;
	}
	.header-hero-homepage .box-content p {
		margin-bottom: 55px;
	}
}

@media screen and (min-width: 992px) {
	.main-top-menu__list > li > a {
		padding: 0px 16px;
		padding-right: 26px;
	}
}
@media screen and (min-width: 1200px) {
	.fp2 {
		padding: 32px;
    	max-width: 424px;
	}
}

@media screen and (min-width: 550px) and (max-width: 1200px) {
   .page-id-159222 .header-hero-homepage {
		position: relative;
		background: var(--blue-light-color); /* kolor zostaje w 100% */
		overflow: hidden;          /* opcjonalnie, żeby nic nie wystawało */

	}

	.page-id-159222 .header-hero-homepage::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('/images/bg-hero-przed-poronieniem-2-new-cutted.png') no-repeat right center;
	background-size: contain;
	opacity: 0.4;              /* <- tu ustawiasz “lekko” (np. 0.1–0.4) */
	pointer-events: none;
	z-index: 0;
	}

	/* żeby treść była NAD obrazkiem */
	.page-id-159222 .header-hero-homepage > * {
	position: relative;
	z-index: 1;
	}
	.page-id-159228 .header-hero-homepage {
			position: relative;
			background: #f085ae; /* kolor zostaje w 100% */
			overflow: hidden;          /* opcjonalnie, żeby nic nie wystawało */

	}

	.page-id-159228 .header-hero-homepage::before {
		content: "";
		position: absolute;
		inset: 0;
		background: url('/images/bg-hero-po-poronieniu-2.png') no-repeat right center;
		background-size: contain;
		opacity: 0.3;              /* <- tu ustawiasz “lekko” (np. 0.1–0.4) */
		pointer-events: none;
		z-index: 0;
	}

		/* żeby treść była NAD obrazkiem */
	.page-id-159228 .header-hero-homepage > * {
		position: relative;
		z-index: 1;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
   .page-id-159222 .header-hero-homepage {
		background: var(--blue-light-color) url('/images/bg-hero-przed-poronieniem-2-new-cutted.png') no-repeat right center;
		background-size: contain;
   }
}



/* ===== Filtry (DIV + underline aktywnej) ===== */
.tips-filters{
  display:flex;
  flex-direction: column;
  flex-wrap:wrap;
  align-items: flex-start;
  gap:10px;
  row-gap: 15px;
  padding-bottom:10px;
  text-transform: uppercase;
}

.tips-filter-item{
  position:relative;
  cursor:pointer;
  user-select:none;
  font-weight:600;
  color: rgba(0,0,0,.7);
}

.tips-filter-item.is-active{
  color: rgba(0,0,0,1);
}

.tips-filter-item.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:2px;
  background:#2F6FDD; /* możesz dopasować */
  border-radius:2px;
}

.tips-filter-group { display:inline-flex; gap:10px; align-items:center;  }
.tips-filter-children { display:inline-flex; gap:10px; align-items:center; flex-wrap: wrap; align-items: flex-start;}
.tips-filter-group.has-children {
  flex-direction: column;
  align-items: flex-start;
}
.tips-filter-group.has-children .tips-filter-children {
	flex-direction: column;
}

.tips-filter-child{
  position: relative;
  padding-left: 28px; /* miejsce na znacznik */
  color: rgb(0 0 0 / 49%);
}

.tips-filter-child::before{
  content: "↳";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .75;
  font-weight: 700;
}


/* ===== Loader ===== */
.tips-loader{
  display:flex;
  justify-content:center;
  padding:12px 0;
}

.tips-spinner{
  width:28px;
  height:28px;
  border:3px solid rgba(0,0,0,.15);
  border-top-color: rgba(0,0,0,.55);
  border-radius:50%;
  animation: tipsSpin .8s linear infinite;
}
@keyframes tipsSpin { to { transform: rotate(360deg); } }

/* ===== Karty artykułów ===== */
.tip-card.card{
  padding: 32px;
  background-color: var(--gray-light-color);
  border: none;
  border-radius:14px;
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease;
}



.tip-card .card-body {
	padding: 0px;
}

.tip-card .card-body h3 {
	font-size: 1.5625rem;
	font-weight: 500;
	color: #405878;
	margin-top: 24px;
}

.tip-card .card-img-top{
  object-fit: contain;
  height: 190px;
}
@media (max-width: 767.98px){
  .tip-card .card-img-top{ height: 210px; }
}

/* ===== Paginacja (jak na screenie) ===== */
.pp-pagination-inner{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.pp-page{
  width:38px;
  height:38px;
  border:2px solid #d1dbeb;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-weight:700;
  font-size: 15px;
  color: var(--blue-dark-color);
  background:#fff;
}

.pp-page.is-active{
  background:var(--blue-light-color);
  border-color:var(--blue-light-color);
  color:#fff;
}

.pp-page.is-disabled{
  cursor:not-allowed;
  border-color: #e4e4e4;
  color: #e4e4e4;
}

.pp-page.pp-dots{
  border-color: transparent;
  cursor: default;
  width:auto;
  padding:0 6px;
}

@media screen and (min-width: 768px) {
	.pp-page{
		width:48px;
		height:48px; 
		font-size: 18px;
	}
	.tips-filters {
		flex-direction: row;
		align-items: center;
	}
	.tips-filter-children {
		flex-wrap: nowrap;
		align-items: center;
	}
	.tips-filter-group.has-children {
		flex-direction: row;
		align-items: center;
	}
	.tips-filter-group.has-children .tips-filter-children {
		flex-direction: row;
	}
}

@media screen and (min-width: 768px) {
	.page-id-159796 .header-hero-homepage {
		padding: 80px 0px;
	}
	.page-id-159796 .header-hero-homepage h1 {
		margin-top: 55px;
	}
}


/* opcjonalnie: utnij opis do 3 linijek */
.text-clamp-3{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}





@media screen and (min-width: 1200px) {
	.page-id-159796 .art-card {
		padding: 16px;
	}
	.page-id-159796 .art-card .art-card-title {
		font-size: 20px;
	}
	.page-id-159796 .art-card {
		font-size: 14px;
	}
	
	.art-card__img-wrapper {
		max-width: 256px;
		max-height: 176px;
	}
	.art-card__img-wrapper img {
		height: 100%;
	}
}

.art-list {
	max-width: 1136px;
}
.art-card {
	border: 1px solid transparent;
}
.art-card:hover {
	background: var(--blue-light-gray-color);
	border: 1px solid var(--blue-light-color);
}
.art-card a:hover {
	color: var(--pink-light-color);
}
.art-card a:hover .circle-arrow-right-icon {
	filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(1800%) hue-rotate(300deg) brightness(105%) contrast(102%);
}

/* paginacja z paginate_links() */
.art-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 10px;
  border:1px solid #dee2e6;
  border-radius:.5rem;
  text-decoration:none;
  color:#212529;
  background:#fff;
  margin-right:6px;
}

.art-pagination .page-numbers.current{
  background:#0d6efd;
  border-color:#0d6efd;
  color:#fff;
}

.art-pagination .page-numbers.dots{
  border:0;
  background:transparent;
  min-width:auto;
}

/* żeby wrapper nie psuł obrazka */
.art-card__img-wrapper img{
  object-fit: cover;
}


.share-story-banner {
	background-image: url('/images/bg-banner-share-history-with-us.png');
	background-repeat: no-repeat;
	background-position: center right;
	padding: 19px;
}

.c-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.c-popup * {
	width: 100%;
}
.c-popup .story-consents label {
	width: auto;
}

.c-popup input:not(.btn),
.c-popup textarea {
	background-color: var(--gray-light-color);
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	margin-top: 10px;
	flex: 0;
}

.c-popup label {
	font-size: 16px;
	font-weight: 600;
	color: var(--blue-gray-color);
	margin-bottom: 12px;
}
.c-popup label .required-text {
	font-size: 14px;
	font-weight: 400;
}
.c-popup .wpcf7-spinner {
	margin: 0px;
	display: none;
}
.c-popup.is-open {
  display: block;
}

.c-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.c-popup__panel {
  position: relative;
  max-width: 872px;
  width: calc(100% - 32px);
  margin: 6vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 16px;
  max-height: 88vh;
  overflow-y: scroll;
}

.c-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  max-width: max-content;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

.c-popup__panel{
  overflow-y: auto;
  overflow-x: hidden;
}

/* Chrome / Edge / Safari */
.c-popup__panel::-webkit-scrollbar{
  width: 12px !important;        /* ważne: nadpisze "width:0" */
}

.c-popup__panel::-webkit-scrollbar-track{
  background: #eef1f4 !important; /* żeby track był widoczny */
}

.c-popup__panel::-webkit-scrollbar-thumb{
  background: #ff4fa3 !important; /* kolor “kciuka” */
  border-radius: 999px;
  border: 3px solid #eef1f4;      /* odstęp od tracka */
}

/* (opcjonalnie) ukryj te trójkąty */
.c-popup__panel::-webkit-scrollbar-button{
  display: none;
}

/* Firefox */
.c-popup__panel{
  scrollbar-width: 8px;
  scrollbar-color: var(--pink-light-color) #eef1f4;
}

#shareStoryPopup .c-popup__panel{
  max-height: 88vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* testowe, mega widoczne */
#shareStoryPopup .c-popup__panel::-webkit-scrollbar{ width: 16px !important; }
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-track{ background: lime !important; }
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-thumb{
  background: red !important;
  border-radius: 0 !important;
  border: 0 !important;
  min-height: 60px;
}

/* Chrome/Edge/Safari – “wyłącz” strzałki scrollbara */
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-button,
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-button:single-button {
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important; /* paradoksalnie pomaga, bo rozmiar = 0 */
}

/* dodatkowo: usuń ewentualne obrazki/glyphy */
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-button:vertical:start:decrement,
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-button:vertical:end:increment,
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-button:horizontal:start:decrement,
#shareStoryPopup .c-popup__panel::-webkit-scrollbar-button:horizontal:end:increment {
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}


/* Układ zgód */
.story-consents .wpcf7-acceptance .wpcf7-list-item {
  margin: 0px;
}

.story-consents .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
}

.story-consents .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
	margin-right: 12px;
}

.story-consents .wpcf7-acceptance input[type="checkbox"]{
  margin-top: 4px;
  max-width: max-content;
  width: max-content;
}

.story-consents .consent-title{
  display:block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.story-consents .consent-desc{
  display:block;
  color: #6c757d;
  line-height: 1.5;
  font-size: 14px;
}

/* Boksy informacyjne */
.story-info-box,
.story-warning-box{
  background: #f3f6f8;
  border-radius: 12px;
  padding: 16px;
  margin-top: 14px;
}

.story-info-title{
  font-weight: 700;
  margin-bottom: 8px;
}

.story-info-box p{
  margin: 0;
  color: #6c757d;
}


/* Jeśli nie masz własnego btn-outline-pink */
.btn-outline-pink{
  border: 1px solid #ff4fa3;
  color: #ff4fa3;
  background: transparent;
}
.btn-outline-pink:hover{
  background: rgba(255,79,163,.08);
}


@media screen and (min-width: 768px) {
	.share-story-banner .box-content {
		max-width: clamp(320px, 51vw, 720px);
		position: relative;
		z-index: 25;
    }	
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
	.share-story-banner {
		position: relative;
        background: var(--blue-light-gray-color);
        overflow: hidden;
	}
	.share-story-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/bg-banner-share-history-with-us.png') no-repeat right center;
        background-size: contain;
        opacity: 0.4;
        pointer-events: none;
        z-index: 0;
    }
}

@media screen and (max-width: 768px) {
	.share-story-banner  {
		background: var(--blue-light-gray-color) url('/images/bg-banner-share-history-with-us-mobile.png') no-repeat top;
        background-size: 100%;
        padding-top: 250px;
        padding-bottom: 20px;
	}		   
	.mobile-search-bar {
		display: none;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		background: #fff;
	}
	.mobile-search-bar .search-label-art {
		width: 100%;
		max-width: none;
	}
	.mobile-search-bar.is-open {
		display: block;
	}

	.mobile-search-bar .search-label-art {
		display: block;
		width: 100%;
		position: relative;
	}

	.mobile-search-bar .search-label-art label {
		display: block;
		width: 100%;
		margin: 0;
	}

	.mobile-search-bar #search-art-input-mobile {
		display: block;
		width: 100%;
		padding: 0 16px 0 44px;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		box-sizing: border-box;
	}
}



/* Wasze historie poj. artykul */
.article-section .article .article-img-wrapper {
	max-width: 560px;
}

.article-section main {
	background-color: #fdfdfd;
	box-shadow: 0px 4px 32px #4059791f;
}


.article-section {
	margin: 0 auto;
}

.article-section .entry-content p a{
	color: var(--pink-light-color);
}


.article-section .entry-content img {
	display: block;
	margin: 0 auto;
}


/* ===== KOMENTARZE - BOXy ===== */

#comments {
  margin-top: 32px;
}

#comments .comments-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

#comments .comments-title span {
  font-size: 0.6em;
  color: #666;
  font-weight: 400;
}

#comments .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

#comments .commentlist > li {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

#comments .commentlist .children {
  list-style: none;
  margin: 14px 0 0 28px;
  padding: 0;
}

/* Główny box komentarza (Twenty Eleven ma article.comment) */
#comments .commentlist article.comment {
  background: #f1f3f6;
  border: 0;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 0;
  box-shadow: none;
}

/* Meta / nagłówek komentarza */
#comments .comment-meta {
  margin-bottom: 10px;
}

#comments .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

#comments .comment-author .avatar {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

#comments .comment-author .fn {
  font-style: normal;
  font-weight: 600;
}

#comments .comment-author .says {
  display: none; /* ukrywa "says:" */
}

#comments .comment-meta .comment-metadata,
#comments .comment-meta .commentmetadata {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 0.9rem;
}

#comments .comment-meta a {
  text-decoration: none;
}

#comments .comment-meta a:hover {
  text-decoration: underline;
}

/* Treść */
#comments .comment-content {
  color: #374151;
  line-height: 1.65;
  margin-top: 8px;
}

#comments .comment-content p {
  margin: 0 0 10px;
}

#comments .comment-form-panel {
    padding: 18px 22px;
	border: 1px solid #e6ebf3;
	border-radius: 8px;
}

#comments h3,
#comments label {
	color: var(--blue-gray-color);
}

/* Reply link */
#comments .reply {
  margin-top: 10px;
  text-align: right;
}
#comments time {
	color: var(--font-main-color);
}

#comments .comment-reply-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--blue-dark-color);
}

#comments .comment-reply-link:hover {
  text-decoration: underline;
}

/* Formularz */

#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
}

#respond textarea {
  min-height: 140px;
  resize: vertical;
}

#respond input[type="submit"] {
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}


@media screen and (min-width: 768px) { 
	.article-section {
		max-width: 1136px;
	}
	.article-section .share-story-banner .box-content {
		max-width: clamp(320px, 31vw, 480px);
	}
	.article-section .share-story-banner {
		background-size: 50% 100%;
	}
	#comments .reply {
		text-align: left;
	}
}


.post-cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #cfd6e4;
  border-radius: 999px;
  color: #4b5a73;
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease;
}

.post-cat-badge:hover {
  border-color: #8fa3c7;
  color: #2f405f;
  background: #f7f9fc;
}

/* section > .container > article + aside (bez .row) */
.pp-layout{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

@media (min-width: 768px){
  .pp-layout.pp-layout--has-sidebar{
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1.5rem;
  }

  /* 75% / 25% + uwzględnienie gap */
  .pp-layout.pp-layout--has-sidebar > article{
    flex: 0 0 calc(75% - .75rem);
    max-width: calc(75% - .75rem);
  }

  .pp-layout.pp-layout--has-sidebar > aside{
    flex: 0 0 calc(25% - .75rem);
    max-width: calc(25% - .75rem);
  }
}

.toc-sidebar{
  position: sticky;
  top: 110px; /* dopasuj do wysokości sticky headera */
}

.article-section .sidebar-contents{
	position: sticky;
	top: 10px;
	right: 0;
}
#ez-toc-container {
	background: var(--blue-light-gray-color) !important;
	color: var(--font-main-color) !important;
	border: none !important;
	padding: 24px !important;
	border-radius: 6px !important;
}

#ez-toc-container .ez-toc-title-container {
	margin-bottom: 20px;
}

#ez-toc-container .ez-toc-title {
	color: var(--font-main-color);
}

#ez-toc-container .ez-toc-list .ez-toc-page-1:not(:last-child) {
	margin-bottom: 10px;
}

.article-section .faq-list {
	padding-left: 20px !important;
	margin-bottom: 1rem;
}
.article-section .su-spoiler-title {font-weight: 600;}

.su-spoiler-content {
	margin-top: 1.5rem;
	font-weight: 400;
}

.article-section .faq-list li {
	background-color: var(--gray-light-color);
	padding: 24px;
}


.pp-notka{
  border: 2px solid var(--pink-light-color);
  background: #fff3f6;
  padding: 16px 32px;
  border-radius: 10px;
  border-top: none;
  border-bottom: none;
  margin-bottom: 1rem;
}

.pp-notka__tytul{
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--pink-light-color);
}

.pp-notka__opis p:last-child{
  margin-bottom: 0;
}

.pp-cytat{
  position: relative;
  padding: 1rem 1.25rem 1rem 6.25rem;
  border-left: 4px solid var(--pink-light-color);
  border-radius: 6px;
  padding: 28px 32px;
  padding-left: 75px;
}


.pp-cytat::after{
  content: url('/images/quotation-mark-icon.png');
  position: absolute;
  left: 16px;
  top: 28px;
  line-height: 1;
  color: #f08aa3;
  width: 40px;
  height: 30px;
  font-weight: 700;
}

.pp-cytat__tekst{
  margin: 0;
  color: #3f5773;
  font-size: 1.1rem;
  line-height: 1.45;
}

@media (max-width: 600px){
  .pp-cytat{ padding-left: 4.75rem; }
  .pp-cytat::after{ font-size: 56px; left: 28px; top: 12px; }
}

.article-section h2,
.article-section h3,
.article-section h4,
.article-section h5,
.article-section h6 {
	margin-bottom: 2rem;
	color: var(--blue-gray-color);
}

.article-section p {
	margin-bottom: 2rem;;
}


/* BOX: Materiały do pobrania */
.pp-downloads{
  background: var(--blue-light-gray-color);
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 1rem;
}

.pp-downloads__title{
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  color: var(--blue-gray-color);
}

.pp-downloads__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.pp-downloads__item + .pp-downloads__item{
  margin-top: 8px;
}

.pp-downloads__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.pp-downloads__link:hover{
  text-decoration: underline;
}

.pp-downloads__icon{
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  font-size: 14px;
  line-height: 1;
}

.pp-downloads__name{
  font-size: 1.2rem;
  color: var(--font-main-color);
}

/* Form. zam. ulotek 02.11.20 */
#zamUlo, #zamInfo,.cf7vfb,.ktk-box-c7 {max-width:572px;margin:0 auto;clear:both;padding:15px;border:1px solid #d3d3d3;border-radius:3px;background-color:#eee}
#zamUlo h3, #zamInfo h3 {border-bottom:1px solid #ccc;color:#900;margin:0 0 10px 0;padding:0;font-size:20px;line-height:2.0em}
#zamUlo span.wpcf7-list-item, #zamInfo span.wpcf7-list-item {margin:0}
#zamUlo select, #zamInfo select {line-height:1.5;padding:7px 0;border:1px solid #dddddd}

#zamInfo.zInfN span.wpcf7-list-item {display:flex;align-items:flex-start;line-height:1.3;gap:3px;margin:3px 0;padding:4px 2px 4px}
#zamInfo.zInfN [data-name="acceptance-zu-2"] label {display:flex;align-items:flex-start;gap:3px;margin:3px 0}
#zamInfo.zInfN .lbl-first span.wpcf7-list-item {border-bottom: 1px solid #ccc}
.zInfN [data-name="jakie-materialy"] span.wpcf7-list-item label {display:flex;align-items:flex-start;gap:5px}
#zamInfo.zInfN input, #zamInfo.zInfN textarea, #zamInfo.zInfN select {border-radius:8px;}

#zamInfo.zInfN select {padding-left:5px}
#zamInfo.zInfN input {padding-left:8px}
#zamInfo.zInfN textarea {height:100px}
#zamInfo.zInfN .wpcf7-submit {background:#F05D91;border:1px solid #F05D91;color:#fff;padding:8px 25px;font-weight:bold}
.zInfN .lbl-first br {display:none}
.zInfN p {margin-bottom:1em}
label.rM-btn {font-weight:bold;display:inline-block;cursor:pointer}
#zamInfo.zInfN .rodoMore {display:inline-block;margin:5px 0 0 24px}
.popOv {position:relative;color:#ee84aa;font-size:13px;text-align:center;cursor:pointer;width:20px;height:20px;display:inline-block;padding:3px 0px 0px 0px;margin-left:.2em}
.popOv:after {position:absolute;content:"";top:0px;left:1px;margin:0;border-radius:50%;border:2px solid #ee84aa;width:15px;height:15px}
#zamInfo.zInfN h3 {margin:0 0 15px 0}
#zamUlo textarea,
#zamInfo textarea,
.cf7vfb textarea,
.cf7vfb label,
#zamUlo label, 
#zamInfo label {width:100%;}
@media (max-width: 768px) {
	#zamInfo.zInfN h3 {padding:0 0 5px;line-height:1.3}
	#zamInfo.zInfN input[type="text"], #zamInfo.zInfN textarea, #zamInfo.zInfN select {width:100%;}
}

.zInfN input[type=text], 
.zInfN input[type=password], 
.zInfN input[type=email], 
.zInfN input[type=url], 
.zInfN input[type=number], 
.zInfN textarea {
    background: #fafafa;
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    color: #888;
}

body.search-results #content {
	max-width: 900px;
}

body.search-results .entry-title a {
	color: var(--blue-gray-color);
	font-size: 1.6rem;
	font-weight: 600;
}

body.search-results .hentry {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #ddd;
}

body.search-results .entry-summary a {
	color: var(--pink-light-color);
	font-weight: 600;
}

.assistive-text, .screen-reader-text {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
}
body.search-results .nav-previous a {
	color: var(--pink-light-color);
	font-weight: 600;
}
body.search-results .page-title {
	color: #666;
	font-size: 1.5rem;
}

.wpcf7 input[type=text],
.wpcf7 input[type=password], 
.wpcf7 input[type=email], 
.wpcf7 input[type=url], 
.wpcf7 input[type=number], 
.wpcf7 textarea {
    /* background: #fafafa; */
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    color: #888;
}
