.conteiner{
  display:flex;
  width:1070px;
  margin:0 auto;
}

/* area contenuti */
.main-content{
  flex:1;
  font-family: 'Georgia', serif; 
  font-size: 14px; 
  color : #785c58;
  line-height: 1.5;
}

/* spazio colonna */
.colonna{
  border-left:1px dotted #d6b786;
  width:330px;
  padding:10px;
}  

/* Contenitore anteprime  */
.template-container{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-start;
  align-items:flex-start;
  margin-left: 8px;
}

/* Card */
.template-box{
  width:calc(49% - 8px); 
  border:1px solid #d6b786;
  padding:6px;
  box-sizing:border-box;
  background:#fcf5ec;
  border-radius:8px;
}

/* immagine */
.template-thumb img{
  width:100%;
  height:auto;
  border-radius:6px;
  display:block; 
}

/* titolo */
.template-title{
  text-align:center;
  margin:6px 0;
  font-size:16px;
  color : #882f22;
  margin-top: 15px;
}

/* azioni */
.template-actions{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-top:6px; 
  margin-bottom: 6px;
}

.template-action{
  width:48%;
  text-align:center;
}

.template-box:hover{
  transform:translateY(-3px);
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
}
.template-box{
  position:relative;
}

/* base badge */
.badge{
  position:absolute;
  top:10px;
  left:10px;
  padding:5px 10px;
  font-size:11px;
  color:#fff;
  border-radius:4px;
  z-index:2;
  line-height:1;
}
.badge.new{
  background:#c5959e;
}

.badge.trending{
  background:#FFDAB9;
  color:#979393;
}

.badge.rising{
  background:#72afc7;
}

.badge.top{
  background:#898f51;
}

.badge.popular{
  background:#8e44ad;
}

.badge.hot{
  background:#ce465f;
}

/* Facebook style */
.cover-container{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content: center;
}
  .cover-card {
  width: 600px;
  border:1px solid #d6b786;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background:#fcf5ec;
  overflow: hidden;
  padding: 20px;
}
/* azioni */
.cover-actions{
  display:flex;
  justify-content: space-around;
  font-size:12px;
  margin-top:4px; 
}
.cover-action{
  width:60%;
  text-align:center;
  font-family: Arial, sans-serif;
  margin-top: 15px;
}
.cover-action a{
  display:inline-block;
  padding:6px 20px;
  background-color: #ca757fff;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
  margin-right: 20px;
}
.cover-action a:hover{
  background-color: #af4e5aff;
}