/* Для ВСЕХ ячеек внутри Grid Container */
.tn-grid__item {
  background: white !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(255,234,167,0.1) !important;
  border: 1px solid rgba(255,234,167,0.3) !important;
  transition: all 0.3s ease !important;
}

/* При наведении на ячейку */
.tn-grid__item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(255,234,167,0.2) !important;
  border-color: #FFEAA7 !important;
}