/* KOLOROWY OPIS CENNIK */

.yoso-list li.subvalue {
  font-size: 0.85em;
  background: linear-gradient(90deg, rgb(82, 244, 27) 0%, rgb(173, 255, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -3px;
  margin-bottom: 10px;
  padding-left: 2.4em;
}


/* MENU PROJEKT ROZSÓWANY */

.menu-item {
  position: relative;
}

/* Submenu bezpiecznie pod linkiem */
.submenu {
  position: absolute;
  top: 100%; /* dokładnie pod linkiem */
  left: 0;
  background: #f8f8f8;
  padding: 5px 0; /* lekki padding */
  display: none;
  min-width: 250px; /* szerokość menu */
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 100;
}

/* Animacja wysuwania */
.menu-item:hover .submenu {
  display: block;
}

/* Linki w submenu */
.submenu-link {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

/* Gradientowy tekst przy hover */
.submenu-link:hover {
  background: linear-gradient(90deg, rgb(82, 244, 27) 0%, rgb(173, 255, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Data Projektu */

.postProjekt {
  position: absolute;
  top: 0;
  left: 0;
  height: 75px;
  border-bottom-right-radius: 15px;
  width: 100px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Unbounded";
  font-size: 20px;
  font-weight: 600;
  color: var(--bg-color);
}
.postProjekt span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color-2);
}
.postProjekt .data {
  background: var(--primary-gradiant);
  font-size: 12px;
  color: var(--text-color-2);
}

/* Zachowaj naturalne proporcje obrazków z atrybutami width/height (CLS-fix) */
.gallerySingle img {
  height: auto;
  object-fit: cover;
}

