/* Contenitore anteprime  */
.card-menu-container{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  align-items:flex-start;
}
/* elemento ghost (trucco per ultima card) */
.card-menu-container::after{
  content:"";
  flex: 0 0 310px;
}
/* Card */
.card-menu-box{ 
  display:flex;
  flex-direction:column;
  border:1px solid #d6b786;
  width: 310px;
  height: auto;
  padding: 12px;
  box-sizing:border-box;
  background:#fcf5ec;
  border-radius:6px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
/* Card box grafica*/
.card-menu-box-grafica{ 
  display:flex;
  flex-direction:column;
  border:1px solid #d6b786;
  width: auto;
  height: auto;
  padding: 12px;
  box-sizing:border-box;
  background:#fcf5ec;
  border-radius:6px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.card-preview {
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.card-preview-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  justify-items: center;
  align-items: center; 
}
.simple-x {
  grid-column: 1 / span 2;
}
.card-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}
/* azioni */
.card-menu-actions{
  display:flex;  
  text-align:center;
  font-size:12px;
  margin-bottom: 6px;
  justify-content: center;
  margin-top:auto; /* <-- questo le porta in basso */
  width: 100%;
}
.card-menu-action{
  width: 90%;
  text-align: center;
  margin-top:10px;
}
.card-menu-action a{
  display:inline-block;
  width: 90%;
  background-color: #ca757fff;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.card-menu-action a:hover{
  background-color: #af4e5aff;
  transform:translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
a.card_menu:link{
  font-family: 'Cookie', cursive; 
  color : #fff; 
  font-size : 28px;
  text-decoration: none
}
a.card_menu:hover{
  color: #410e14ff;
  text-decoration: underline
}
.small{
  display: inline-block;
  border:1px solid #ddd;
  background:#f5f5f5;
  padding:4px;
  margin-top: 6px;
  text-align:left;
  font-size: 12px;
  overflow-wrap:break-word;
  width: 550px;

}   