#linjat_farmaci_container {
  width: 100%;
  text-align: center;
}

.linjat_title {
  font-style: italic;
  letter-spacing: 5px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* GRID */

.linjat_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

/* ITEM */

.linja_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.linja_item img {
  width: 100%;
  height: 130px;
}

.linja_item img:hover {
  transform: scale(1.05);
}

/* TEXT */

.linja_name {
  margin-top: 10px;
  font-weight: 600;
  color: #1f8c55;
}

.linja_discount {
  font-size: 14px;
  color: #1f8c55;
}

.linja_item:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .linjat_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .linja_item img {
    width: 100%;
    height: 120px;
  }
}
