/* SG Desde el Jardín - 2 noticias en columnas */

/* wrapper general: 2 columnas en desktop */
.sgdj-wrapper{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

/* Cada item */
.sgdj-item{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* Encabezado desde el ACF (se deja el estilo al contenido del WYSIWYG) */
.sgdj-heading{
  margin-bottom:4px;
}

/* Tarjeta de color (sin imagen) */
.sgdj-card{
  border-radius:18px;
  padding:14px 18px 18px;
  color:#0b1120;
}

/* Paletas de color para las tarjetas y botones */
.sgdj-item.palette-1 .sgdj-card{
  background:#ffc600; /* amarillo */
}
.sgdj-item.palette-2 .sgdj-card{
  background:#00c4c7; /* turquesa */
}

.sgdj-date{
  font-size:.85rem;
  margin-bottom:6px;
}

.sgdj-title{
  margin:0 0 4px;
  font-size:1.05rem;
}
.sgdj-title a{
  text-decoration:none;
  color:#0b1120;
}
.sgdj-title a:hover{
  text-decoration:underline;
}

.sgdj-excerpt{
  font-size:.9rem;
  margin-bottom:10px;
}

/* Botón */
.sgdj-actions{margin-top:4px;}
.sgdj-btn{
  display:inline-block;
  font-weight:800;
  text-transform:uppercase;
  border-radius:999px;
  padding:10px 26px;
  text-decoration:none;
  color:#fff;
  font-size:.85rem;
}
.sgdj-btn.btn-1{background:#ff0073;}  /* fucsia */
.sgdj-btn.btn-2{background:#6216c9;}  /* morado */

/* responsive: una sola columna en móvil */
@media (max-width:768px){
  .sgdj-wrapper{
    grid-template-columns:1fr;
    gap:20px;
  }
}
