/*
Theme Name: Arche
*/

/* Global */
:root {
  --sand: #F5E3CA;
  --lightsand: #FFF7EC;
  --darkblue: #1F6E96;
  --midblue: #98D4FC;
  --blue: #DBF1FF;
  --lightblue: #EDF8FF;
  --darkgreen: #25716D;
  --green: #2A817D;
  --mint: #A2DDD0;
  --dark: #171717;
  --white: #FFFFFF;
}

html {
    font-size: 62.5%;
    background: var(--white);
}

* {
  box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

body, a, p, h1, h2, h3, h4, h5 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
	line-height: 2.4rem;
    font-weight: 300;
    color: var(--dark);
    margin: 0;
    padding: 0;
	letter-spacing: 0.02rem;
}

a {
    text-decoration: none;
	font-weight: 700;
}

a:hover {
    text-decoration: none;
}

::selection {
	background: var(--lightsand);
	color: var(--darkgreen);
}

::-moz-selection {
	background: var(--lightsand);
	color: var(--darkgreen);
}

strong, b {
    font-weight: 700;
}

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

.thumbnail {
    width: 100%; /* Adjust as needed */
    height: 210px; /* Set the desired height */
    object-fit: cover; /* Resize the image to cover the entire container while preserving aspect ratio */
}

h1 {
	font-family: 'Carlito', sans-serif;
    font-size: 6.6rem;
	line-height: 6.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
}

h2 {
    font-size: 3.2rem;
	line-height: 3.4rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
}

h3 {
	font-family: 'Carlito', sans-serif;
    font-size: 2rem;
	line-height: 3.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
}

h4 {
    font-size: 2.4rem;
	line-height: 3.4rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
}

h5 {
    font-size: 1.8rem;
	line-height: 2.6rem;
    font-weight: 300;
    letter-spacing: 0.02rem;
}

/* Strzałki */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Odstęp między tekstem a strzałką */
}

.btn::after {
    content: '';
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
	background-image: url('images/arrow-mint.svg');
    width: 32px;
    height: 32px;
}

.btn:hover::after {
    transform: translateX(4px); /* Ruch w prawo dla strzałki */
}

/* Header */
.navbar-brand img {
	width: 200px;
	height: auto;
}

.navbar {
    background-color: transparent; /* Change background to transparent */
    position: absolute; /* Position the navbar absolutely */
    top: 60px; /* Position at the top of the page */
    left: 0; /* Align with the left side of the page */
    width: 100%; /* Occupy the full width of the viewport */
    z-index: 1000; /* Ensure it's above other content */
	padding: 0;
	margin: 0;
}

.navbar .container {
    align-items: center;
}

.navbar a {
	font-family: 'Carlito', sans-serif;
	color: var(--dark);
    font-size: 2rem;
	line-height: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.04rem;
}

.navbar ul li:last-child a {
	background-color: var(--white);
	border-radius: 6px;
	padding: 16px 32px !important;
	display: inline-block;
}

.navbar-toggler {
    z-index: 1100;
    border: none;
}

.navbar-collapse.show {
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1050;
}

.navbar-nav {
    margin-left: auto; /* Odsuwa menu na prawą stronę */
    display: flex;
    gap: 28px; /* Odległość między linkami */
    align-items: center; /* Wyśrodkowanie linków w pionie */
}

.navbar-nav .nav-link {
    font-weight: 200; /* Lekka grubość czcionki */
    padding: 0; /* Usuń nadmiarowe paddingi */
    transition: color 0.3s ease; /* Płynna zmiana koloru */
}

.header-pages .navbar-nav .nav-link {
    
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}


/* Modal Menu */
.navbar-toggler-icon {
	width: 40px;
	height: 40px;
}
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 113, 109, 0.9);
  z-index: 2000;
  display: none; /* Ukryty domyślnie */
}

.menu-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.modal-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.modal-menu li {
  margin: 30px 0;
}

.modal-menu li a {
    font-size: 2.4rem;
	line-height: 3.4rem;
  color: #fff;
  text-decoration: none;
}

.modal-menu li a:hover {
  color: var(--mint);
}

/* Przycisk zamknięcia modalu */
.menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.hero-home {
	background-color: var(--sand);
}

.hero-home img {
	width: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto;
	padding-top: 120px;
	position: relative;
	margin-bottom: -140px;
	z-index: 2;
}

.hero-home .hero-header {
	position: absolute;
	top: 180px;
	left: 50%;
  	transform: translateX(-50%);
	font-family: 'Carlito', sans-serif;
    font-size: 16rem;
	line-height: 20rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
	color: var(--white);
	z-index: 3;
}

.hero-home .hero-header span{
	font-family: 'Carlito', sans-serif;
    font-size: 6rem;
	line-height: 0;
    font-weight: 400;
    letter-spacing: 0.04rem;
	color: var(--dark);
	display: block;
	margin-top: -32px;
	margin-left: 32px;
	width: max-content;
}

.news-section {
  padding: 140px 0;
  margin-top: 100px;
  background-color: var(--mint);
  position: relative;
  z-index: 1;
}

.news-header h2 {
  color: var(--white);
	font-family: 'Carlito', sans-serif;
    font-size: 6.6rem;
	line-height: 5.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
}

.news-arrows {
  display: flex;
  gap: 20px;
}

.custom-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

.arrow-img.rotate {
  transform: rotate(180deg);
}

.custom-arrow.is-disabled .arrow-img {
  opacity: 0.3;
  pointer-events: none;
}

.news-carousel {
  margin-top: 48px;
}

.news-cell {
  width: 100%;
  max-width: 300px;
  margin-right: 30px;
	margin-bottom: 15px;
  height: auto; /* ważne: Flickity zadba o wyrównanie, nie wymuszamy sztywnej wysokości */
}

/* jeśli używasz Flickity – zadbaj o równe rozciągnięcie */
.flickity-slider {
  display: flex;
  align-items: stretch;
}

.news-card {
  background: var(--lightblue);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
  height: 100%;
  transition: all 0.4s;
	min-height: 470px
}

.news-card:hover {
  background: var(--blue);
}

.news-image {
  height: 208px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.news-pill {
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
}

.news-card h5 {
  font-weight: 700;
  margin-bottom: 16px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  margin-top: auto; /* żeby zawsze było przyklejone na dół */
  color: var(--dark);
}

.news-arrow img {
  width: 32px;
  height: 32px;
}

.flickity-page-dots {
  display: none !important;
}

.about-section {
  background-color: var(--lightblue);
}

.about-section img {
	width: auto;
	max-width: 100%;
	display: block;
	position: relative;
	z-index: 2;
	margin-bottom: -66px;
}

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-content h2 {
	font-family: 'Carlito', sans-serif;
    font-size: 6.6rem;
	line-height: 5.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
}

.about-content p {
	padding: 60px 0 30px;
}

.values-section {
  background-color: var(--midblue);
  padding: 80px 0 100px;
}

.values-section h2 {
  font-weight: 300;
  padding-bottom: 60px;
  text-align: center;
}

.values-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.values-item {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 320px;
  flex: 1 1 auto;
}

.values-item img {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
}

.values-item h5 {
  font-weight: 700;
  margin: 0;
}

.values-item p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
  margin: 0;
}

.team-section {
  background-color: var(--blue);
}

.team-content {
  padding: 100px 0;
}

.team-section img {
	width: auto;
	max-width: 100%;
	display: block;
	position: relative;
	z-index: 2;
	margin-bottom: -30px;
}

.team-section h2 {
  font-weight: 300;
  margin-bottom: 40px;
}

.team-carousel {
  margin-bottom: 40px;
	padding: 40px 43px 0;
}

.team-cell {
  width: 220px;
  margin: 0 12px;
  text-align: center;
  flex-shrink: 0;
}

.team-image-wrapper {
  position: relative;
  width: 220px;
  height: 246px;
  margin: 0 auto;
}

.team-image-bg {
  background-image: url('images/member-bg.svg');
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 190px;
  height: 226px;
  top: 0;
  left: 0;
  z-index: 1;
  margin-left: 10px;
}

.team-image {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
		margin-top: 15px;
}

.team-name p {
    font-size: 2.4rem;
	line-height: 3.4rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
}

.team-name strong {
  font-weight: 500;
  font-size: 1.2rem;
  display: block;
  margin-top: 8px;
  color: var(--dark);
}

.team-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.team-arrows img {
	width: 60px;
	height: 60px;
}

.categories-section {
  background-color: var(--green);
	padding: 80px 0;
}

.categories-section h2 {
	color: var(--white);
	font-weight: 300;
}

.category-button {
  background-color: var(--darkgreen);
  border-radius: 6px;
  transition: background-color 0.3s ease;
  padding: 16px 24px;
	margin: 8px;
}

.category-button:hover {
	  background-color: rgba(255, 255, 255, 0.1);
}

.category-button img {
  display: block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
}

.category-button span {
	font-size: 1.8rem;
	line-height: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
	color: var(--white);
}

.cat-smaller {
	padding: 12px 16px;
}

.cat-smaller span {
	font-size: 1.6rem;
	font-weight: 500;
}

.site-footer {
  background-color: var(--lightsand);
  font-size: 1.2rem;
}

.contact-footer {
	gap: 30px;
	padding: 40px 0 40px;
	justify-content: space-between;
}

.footer-logo {
  width: 190px;
}

.footer-info span {
  font-weight: 700;
  font-size: 1.6rem;
}

.footer-info img {
  width: 24px;
	height: 24px;
	margin-right: 6px;
}

.footer-social img {
  transition: opacity 0.2s ease;
	height: 20px;
	margin-right: 16px;
}

.footer-social img:hover {
  opacity: 0.7;
}

.copy div {
	justify-content: space-between;
	padding: 16px 0;
	border-top: 0.8px solid var(--dark);
}

.copy p, .copy a {
	font-weight: 300;
	font-size: 1.2rem;
}

/* Blog */
.hero-sites {
  position: relative;
  display: flex;
  align-items: center;
	width: 100%;
  height: 563px;
  background-size: cover;
  background-position: center;
  background-color: var(--mint);
}

.hero-sites .container {
  position: relative;	
}

.hero-sites h1 {
	position: absolute;
	top: 50%;
	left: 0;
  	transform: translateY(-50%);
	padding-top: 100px;
	    z-index: 3;
}

.hero-sites img {
	width: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto;
	position: absolute;
	right: 50%;
	transform: translateX(50%);
	top: 0;
	z-index: 2;
}

.sites-content {
	padding: 120px 0;
}

.category-button:hover {
	background-color: var(--green);
}

.category-button.active {
  background-color: var(--green);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
	margin-top: 80px;
}

.pagination-wrapper {
  margin-top: 60px;
  text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-wrapper .page-numbers {
  font-size: 1.8rem;
	font-weight: 300;
	padding: 6px;
}

.pagination-wrapper .page-numbers.current {
  font-weight: 700;
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: var(--green);
  background-image: url('images/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  color: transparent;
  font-size: 0;
  border: none;
  margin: 0 12px;
  transition: background-color 0.3s ease-in-out;
}

.pagination-wrapper .page-numbers.prev:hover {
  background-color: var(--darkgreen);
}

.pagination-wrapper .page-numbers.next:hover {
  background-color: var(--darkgreen);
}

.pagination-wrapper .page-numbers.prev {
  transform: rotate(180deg);
}

.hero-sites.hero-single img {
	top: 115px;
	right: 40%;
}

.single-banner {
	height: 600px;
    background-size: cover;
    background-position: center;
	margin: -350px 0 80px;
	z-index: 3;
	border-radius: 12px;
}

.post-date {
	font-weight: 700;
	color: var(--green);
}

.single-content {
	padding: 60px 0 100px;
}

.entry-content {
  padding: 0;
	padding-top: 20px;
}

.entry-content p {
  padding: 30px 0 0;
}

.wp-block-columns {
	padding-top: 80px;
	align-items: center !important;
}

.wp-block-column {
	padding: 0 15px;
}

.wp-block-image img {
  width: auto;
	border-radius: 6px;
}

.wp-block-heading {
	padding-top: 40px;
}

.wp-block-columns .wp-block-heading {
	padding-top: 0;
}

.entry-content ul {
  list-style: none;
  margin: 0;
  padding: 0; /* <--- usuń padding tutaj */
	padding-top: 30px;
}

.entry-content ul li {
  position: relative;
  padding-left: 5rem; /* <-- przesuwasz tylko tekst */
  margin-bottom: 2rem;
}

.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* <--- centrowanie względem tekstu */
  width: 3rem;  /* 60px */
  height: 3rem;
  background-image: url('images/arrow-green.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.center {
	max-width: 700px;
	margin: 0 auto;
	line-height: normal;
}

.wp-block-gallery {
	padding-top: 80px;
}

.hero-sites.hero-about {
	background-color: var(--midblue);
}

.hero-sites.hero-about img {
	top: 40px;
}

.team-cell.about-team-cell {
  width: 18%; /* 100 / 5 = 20% */
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.team-about h2 {
	margin-bottom: 0;
}

.about-arrows {
	margin-top: -80px;
}

.hero-contact {
	background-color: var(--blue);
}

.hero-sites.hero-contact img {
	top: 40px;
}

.contact-data {
	padding: 60px 40px 60px 0;
}

.contact-info h2 {
	padding: 30px 0 60px;
	color: var(--darkblue);
}

.contact-info {

}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 30px;
}

p.nip {
	margin-top: 40px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.contact-row p {
  margin: 0;
}

.arche-form {
	margin-top: 100px;
}

.arche-form h2, .arche-form p {
	max-width: 700px;
	text-align: center;
	padding-bottom: 15px;
	margin: 0 auto;
}

.arche-form .wpcf7 {
	margin-top: 40px;
}

.arche-form .wpcf7 p {
	max-width: 100%;
	width: 100%;
	text-align: left;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
}

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

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

.full {
  width: 100%;
}

.contact-form-section label {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
	text-align: left;
	padding-left: 12px;
}

.contact-form-section .wpcf7-text,
.contact-form-section .wpcf7-email,
.contact-form-section select,
.contact-form-section .wpcf7-textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 20px 30px;
  border-radius: 6px;
  border: 1px solid var(--darkblue);
  font-weight: 400;
  color: var(--dark);
  background-color: transparent;
  transition: border 0.2s ease;
}

.contact-form-section .wpcf7-textarea {
  min-height: 200px;
  resize: none;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.form-consent {
  max-width: 43ch;
}

.form-consent p {
  font-size: 1.4rem;
  line-height: 1.8;
	font-weight: 500; 
	display: flex;
}

.form-consent a {
  color: var(--darkblue);
	 font-size: 1.4rem;
  line-height: 1.8;
	font-weight: 500; 
}

input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--darkblue);
}

.acceptance-text {
	padding-left: 15px;
}

.custom-submit {
  position: relative;
  color: var(--white);
	margin-right: 15px;
  border: none;
  background-color: var(--darkblue);
  border-radius: 6px;
  padding: 20px 40px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.custom-submit::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("images/arrow-mint.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-submit:hover {

}

.submit-arrow {
  height: 32px;
  width: auto;
}

.hero-donate {
  background-color: var(--lightblue);
}
.hero-sites.hero-donate img {
	top: 40px;
	right: 40%;
}

.donate-form {
 max-width: 960px;
	margin: 0 auto;
}

.donate-form h2 {
  text-align: center;
}

.donation-type-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  position: relative;
}

.donation-type-switch label.switch {
  border: 1px solid var(--darkblue);
  border-radius: 6px;
  padding: 6px;
  display: flex;
  gap: 0;
}

.donation-type-switch .switch-option {
  background-color: transparent;
  border: none;
  padding: 26px 72px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.donation-type-switch .switch-option.active,
.donation-amount .amount.active,
.payment-methods .btn-method.active {
  background-color: var(--midblue);
}

.donation-type,
.donation-amount,
.donation-data,
.payment-methods {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.donation-type .btn {
  border: none;
  border-radius: 6px;
  background-color: var(--dark);
  color: #fff;
  padding: 16px 30px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

.donation-type .btn:not(.active) {
  background-color: var(--lightblue);
  color: var(--txt);
}

.donation-amount .amount {
  background-color: var(--blue);
  border: none;
  border-radius: 6px;
  padding: 26px 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.donation-amount input[type="text"] {
  border: 1px solid var(--darkblue);
  border-radius: 6px;
  padding: 26px 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
}

.donation-amount input[type="text"]::placeholder {
  color: var(--dark);
}

.donation-amount {
	margin-bottom: 60px;
}

.donation-data {
	margin: 60px 0 40px;
}

.donation-data select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%2316398a" height="36" viewBox="0 0 24 24" width="36" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 30px center;
  background-color: #fff;
  background-size: 24px;
  padding: 26px 30px;
  padding-right: 60px;
  border-radius: 6px;
  border: 1px solid var(--darkblue);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.donation-data input[type="text"],
.donation-data input[type="email"] {
  flex: 1;
  min-width: 200px;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 26px 30px;
  border-radius: 6px;
  border: 1px solid var(--darkblue);
  color: var(--dark);
}

.donation-data input[type="text"]::placeholder,
.donation-data input[type="email"]::placeholder {
  color: var(--dark);
}

.notes {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.info-note {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.info-note a {
  color: var(--darkblue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  cursor: pointer;
}

.compliance-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dark);
}

#extra-fields.donation-data {
	margin-top: 20px;
}

.payment-methods {
	display: flex;
	justify-content: center;
}

.payment-methods .btn-method {
  min-width: 200px;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 26px 60px;
  border-radius: 6px;
  border: 1px solid var(--darkblue);
  color: var(--dark);
  text-align: center;
  background-color: transparent;
  cursor: pointer;
}

.blik-logo {
  height: 36px; /* wysokość logo */
  width: auto; /* proporcje */
  display: block;
}

.donate-actions {
  margin-bottom: 10px;
	padding: 0 134px;
}

.donate-consents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.4rem;
  color: var(--dark, #000);
}

.donate-consents .consent {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.donate-consents input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.donate-links {
  margin-top: 6px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.donate-links a {
  color: var(--darkblue, #003366);
  font-weight: 600;
  text-decoration: none;
}

.donate-links a:hover {
  text-decoration: underline;
}

.donate-submit {
  margin: 60px auto 0;
	display: block;
  color: #fff;
  border: none;
  position: relative;
  background-color: var(--darkblue);
  color: #fff;
  border-radius: 6px;
  padding: 26px 60px;
  font-weight: 700;
  font-size: 1.8rem;
}

.donate-submit .submit-arrow {
    display: inline-block;
    width: 32px;
    height: 32px;
	margin-left: 15px;
}

.firm-data p {
	font-size: 1.2rem;
}


@media (max-width: 1399.98px) {
	
	.values-wrapper {
		gap: 30px;
	}
	.team-carousel {
		padding: 40px 0 0;
	}
	.team-section img {
		margin-bottom: -110px;
	}
	.page-template-blogpage .news-cell {
		max-width: 100%;
	}
	.post-date {
    	margin-bottom: 10px;
	}

}


@media (max-width: 1199.98px) {
	
	.about-content {
		padding: 80px 0;
	}
	.values-wrapper {
		flex-wrap: nowrap;
	}
	.contact-footer {
		gap: 15px;
	}
	.footer-logo {
    	width: 120px;
	}
	.footer-social img {
		height: 14px;
	}
	.footer-info p, .footer-info a {
		font-size: 1.4rem;
	}
	.team-cell.about-team-cell {
    	width: 23%;
	}

}

@media (max-width: 991.98px) {
	
	.hero-sites img {
		right: -15%;
		transform: none;
	}
	
	.hero-sites.hero-donate img {
		right: -23%;
		transform: none;
	}
	
	.hero-home .hero-header {
		font-size: 12rem;
	}
	
	.hero-home .hero-header span {
		font-size: 4rem;
	}
	
	.about-content h2 {
		padding-top: 60px;
	}
	
	.values-wrapper {
        flex-wrap: wrap;
    }
	.team-section img {
        margin-bottom: -28px;
    }
	.categories-section h2 {
		margin-bottom: 30px;
	}
	.contact-footer {
		gap: 30px;
	}
	.wp-block-custom-arche-box {
    	padding: 5rem 6rem 8rem;
    	width: 100%;
	}
	.team-cell.about-team-cell {
        width: 30%;
    }
	.form-footer {
    	gap: 10px;
	}
	.donate-form {
		max-width: 100%;
	}
	
	.donation-type, .donation-amount, .donation-data, .payment-methods {
    	flex-wrap: wrap;
	}

}

@media (max-width: 767.98px) {

	.hero-sites img {
		right: -25%;
		bottom: -40px;
        top: auto;
	}
	
	.hero-sites.hero-about img {
    	top: auto;
		bottom: -45px;
	}
	
	.hero-sites.hero-contact img {
    	top: auto;
		bottom: -65px;
	}
	
	.hero-sites.hero-donate img {
		right: -45%;
		top: auto;
		bottom: -25px;
	}
	
	.hero-home .hero-header {
		font-size: 10rem;
		line-height: 16rem;
		top: 140px;
	}
	
	.hero-home .hero-header span {
		font-size: 3.6rem;
	}
	
	.values-item {
		width: 100%;
	}
	
	.team-cell {
		width: 260px;
	}
	
	.team-section img {
        margin-bottom: -21px;
    }
	
	.team-cell.about-team-cell {
        width: 45%;
    }
	
	.donate-actions {
		padding: 0;
	}

}


@media (max-width: 575.98px) {

	.navbar,
	.news-section,
	.about-section,
	.values-section,
	.team-section,
	.categories-section,
	.site-footer,
	.hero-sites,
	.sites-content,
	.content-area,
	.single-content
	{
    	padding-right: 20px;
    	padding-left: 20px;
	}
	
	.navbar {
		top: 30px;
	}
	
	.hero-sites {
    	align-items: flex-start;
		height: 463px;
	}
	
	.hero-sites h1 {
        top: 0;
        padding-top: 160px;
        left: 50%;
        transform: translateX(-50%);
		text-align: center;
	}
	
	.hero-sites img, .hero-sites.hero-donate img {
		right: 50%;
		bottom: -20px;
		transform: translateX(50%);
        top: auto;
	}
	
	.hero-home img {
		padding-top: 160px;
	}
	
	.hero-home .hero-header {
		font-size: 6rem;
		line-height: 13rem;
        top: 120px;
	}
	
	.hero-home .hero-header span {
		font-size: 2.6rem;
	}
	
	.news-header h2, .about-content h2 {
    	font-size: 5.4rem;
    	line-height: 4.8rem;
	}
	
	.news-section {
		padding-top: 80px;
	}
	
	h3 {
    	font-size: 1.8rem;
    	line-height: 3.2rem;
	}
	
	h4 {
    	font-size: 2rem;
    	line-height: 2.8rem;
	}
	
	.team-section img {
        margin-bottom: -14px;
    }
	
	h1 {
    	font-size: 5.4rem;
    	line-height: 5.4rem;
	}
	
	h2 {
    	font-size: 3rem;
		line-height: 3.2rem;
	}
	
	.team-cell.about-team-cell {
        width: 65%;
    }
	
	.contact-data {
    	padding: 40px 20px;
	}
	
	.form-grid {
    	grid-template-columns: repeat(1, 1fr);
	}
	
	.donation-type-switch .switch-option {
		padding: 26px;
	}

}
