/** Storage Cards Enhanced **/

.storage-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.storage-card:hover {
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.storage-card .storage-image {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.storage-card .storage-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 500ms ease;
}

.storage-card:hover .storage-image img {
  transform: scale(1.05);
}

.storage-card .storage-content {
  position: relative;
  padding: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: none;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
}

.storage-card .storage-content h5 {
  position: relative;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 12px;
  font-family: var(--title-font);
}

.storage-card .storage-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.storage-card .storage-list li {
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-color);
  padding-left: 20px;
  margin-bottom: 8px;
  transition: all 300ms ease;
  font-weight: 500;
}

.storage-card .storage-list li:last-child {
  margin-bottom: 0;
}

.storage-card .storage-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 12px;
  color: var(--theme-color);
}

.storage-card:hover .storage-list li {
  padding-left: 26px;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .storage-card .storage-image {
    height: 65%;
  }
  
  .storage-card .storage-content {
    height: 35%;
    padding: 15px;
  }
  
  .storage-card .storage-content h5 {
    font-size: 16px;
  }
}
