.planes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 20px;
  margin: auto;
  width: 100%;
}

.planes-card {
  background-color: var(--furi-card-current);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 8px 8px 8px rgba(44, 55, 68, 0.059);
  margin: 0 auto;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 100%;
  max-width: 20rem;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.planes .planes-card {
    min-height: 22rem;
}

.planes-card ul {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
  line-height: 1.5rem;
}

.planes-card h2 {
    padding: 1rem 0rem;
}

.planes-card img {
  width: 100%;
  height: 23rem;
  border-radius: 10px;
  object-fit: cover;
  object-position: 0px 0px;
}

.planes-card.outlined {
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.1);
}

.planes-card.accent {
  border-left: 4px solid var(--furi-accent-current);
}

.planes-card:hover {
  transition: transform 0.3s ease, box-shadow 0.2s ease, border 0.3s ease;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-left: 4px solid var(--furi-accent-current);
}

@media (prefers-color-scheme: dark) {
  .planes-card {
    box-shadow: 0 4px 20px rgba(30, 31, 34, 0.6);
  }
}
