*{
  color: rgb(30, 29, 29);
}

main{
    background: #ddd9d9;

    width: 100vw;
    min-height: 100vh;
}



.container{
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Lista geral */
.result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px; /* espaço entre cards */
}

/* Card */
.result-card {
  width: 100%;
}

.card-link {
  display: flex;
  gap: 12px;
  background-color: rgb(255, 255, 255);
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;

  /* sombra estilo apps modernos */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.card-link:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Imagem */
.card-image {
  min-width: 64px;
  min-height: 64px;
  max-width: 64px;
  max-height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #eee; /* fallback caso não tenha foto */
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Conteúdo */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 4px;
}

.card-category {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  margin-bottom: 6px;
}

/* Linha de informações */
.card-info {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: #555;
}

i{
    margin-right: 3px;
}