.sponsors {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  background-color: #fff;
}

.sponzors_img_left {
	max-width: 1440px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-top: 50px;
  padding-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
  
}

.sponzors-podakovanie {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 50px;
  box-sizing: border-box;
}

.sponzors-podakovanie h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-family: "Saira", sans-serif;
	text-transform: uppercase;
	color: #292929;
}

.sponzors-podakovanie h2{
	font-size: 1.0rem;
	margin-bottom: 0px;
	font-family: "Saira", sans-serif;
	text-transform: uppercase;
	color: #696969;
}

.sponzors-podakovanie p{
	font-size: 1.0rem;
	line-height: 1.6;
	font-family: "Saira", sans-serif;
	color: #292929;
	padding-bottom: 15px;
}

.sponzors_img_box {
  min-height: auto; /* odstránime 600px */
  position: relative;
  overflow: hidden;
}

.sponzors_img_box img {
  width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sponzors-podakovanie,
.sponzors_img_box {
  width: calc(50% - 40px); /* padding 50px vs reality, lepšie použiť calc */
  box-sizing: border-box;
}

.sponzors_button {
  cursor: pointer;
  text-transform: uppercase;
  color: #70e906;
  font-size: 1.2rem;
	font-family: "Saira", sans-serif;
  background-color: #292929;
  height: 100px;
  width: 300px;
  margin-top: 20px;
}

.sponsor-grid_main {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 stĺpce na desktop */
  gap: 20px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.sponsor-grid_main img {
  width: 100%;
  height: 150px; /* jednotná výška */
  object-fit: contain; /* udržuje pomer strán loga */
  filter: grayscale(100%); /* čiernobiele */
  transition: filter 0.3s ease;
  padding-bottom: 15px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 stĺpce na desktop */
  gap: 20px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.sponsor-grid img {
  width: 100%;
  height: 100px; /* jednotná výška */
  object-fit: contain; /* udržuje pomer strán loga */
  filter: grayscale(100%); /* čiernobiele */
  transition: filter 0.3s ease;
  padding-bottom: 15px;
}

.sponsor-grid img:hover {
  filter: grayscale(0%);
}

.sponsor-grid_main img:hover {
  filter: grayscale(0%);
}


.sponzoring-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.622);
  backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	font-family: "Saira", sans-serif;
}

.close-modal {
  position: absolute;
  top: 05px;
  right: 20px;
  font-size: 50px;
  font-weight: bold;
  color: #646363;
  cursor: pointer;
  transition: color 0.3s;
}
.close-modal:hover {
  color: #292929;
}

.sponzoring-modal-content {
	background-color: white;
	color: #292929;
	padding: 30px;
	border-radius: 0px;
	width: 90%;
	max-width: 1000px;
  max-height: 75vh;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
	text-align: left;
	position: relative;
	top: 10%;
	margin-left: auto;
	margin-right: auto;
  position: relative;
}

.sponzoring-modal-content h1 {
  font-size: 25px;
}

.sponzoring-modal-content li {
  margin-left: 15px;
}

.sponzoring-modal-content a {
  color: black;
  text-decoration: none;
}

.sponzoring-modal-content button {

  cursor: pointer;
  text-transform: uppercase;
  color: #70e906;
	font-family: "Saira", sans-serif;
  background-color: #646363;
	margin-top: 20px;
	padding: 10px 20px;
	font-size: 16px;
	transition: background-color 0.3s;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.sponzoring-modal-content button:hover {
	background-color: #292929;
}


/* Tablet */
@media (max-width: 1024px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 vedľa seba */
  }
}

/* Responzivita pre menšie obrazovky */
@media (max-width: 768px) {
  .sponzors_img_left {
    flex-direction: column;
    padding-top: 0px;
  }

  .sponzors_img_box,
  .sponzors-podakovanie {
    width: 100%;
  }

  .sponzors-podakovanie {
    padding-top: 50px;
  }

  .sponzors_img_box {
    height: 500px; /* nastavíš pevnú výšku boxu */
    overflow: hidden; /* skryje prebytok */
  }

  .sponzors_img_box img {
    width: 100%;      /* natiahne sa do šírky rodiča */
    height: 100%;     /* vždy vyplní výšku rodiča */
    object-fit: cover; /* oreže, aby sa nedeformoval */
  }
}

/* Mobil */
@media (max-width: 600px) {
 
  
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 vedľa seba */
  }

  .sponsor-grid_main {
    grid-template-columns: repeat(1, 1fr); /* 2 vedľa seba */
  }

  .sponsors {
    flex-direction: column; /* text pod obrázok */
  }

  .sponzors_button {
    margin-left: auto;
	  margin-right: auto;
  }

}

