#tweets .section-cont{
    display:grid;
    /*grid-template-columns: repeat(3, 30%);*/
    grid-template-columns: repeat(4, 24%);  /* 26/3/2025 agregamos un 4to tweet para mostrar más info */
    gap:1em;    
    /*max-width: 90%;*/
    max-width: 80%;
    align-items: center;
}
#tweets .title-cont{
    /*min-width: 12em;*/
	min-width: 9em;
}
/*#tweets .section-cont .tweet:nth-of-type(1n+4) {
    display: none;
}*/
#tweets .section-cont .tweet:nth-of-type(1n+5) { /* recién del 5to en adelante se ocultarán */
    display: none;
}
#tweets .section-cont .tweet:hover{
	background-color:#00693628;
}

.tweet {
    border: solid 1px #c4c4c4;
    border-radius: 10px;
    padding: 1em;
    /* height:fit-content; */
	height: -webkit-fill-available;
    font-size:0.9em;
}

.tweet a{
     /* color:#006937;
      font-weight: bold;*/
	 color:#6f716e;
}
.tweet a:hover{
	 color:#000000;
}

/*
.tweet a.tweet-link {
    text-align: right;
    margin-bottom: 0.5em; 
}
*/
.tweet aoff{
      /* color:#00acee; */
      color:#006937;
      font-weight: bold;
}
.tweet aoff.tweet-link {
    text-align: right;
    margin-bottom: 1em; 
}

.tweet-head{
    display: flex;
    justify-content: space-between;
}
}
.bysul{
    font-weight: bold;
}
  .tweet img {
    width: 100%;
    border-radius: 10px;
    margin-bottom:0.5em;
  }
  .tweet-text{
    white-space:pre-line;
    margin-bottom:0.5em;
    line-height: 1.1em;
	color: #555;
  }
  .tweet-date{
      color:#c4c4c4;
	  font-size: 0.8em;
  }
@media only screen and (max-width: 768px) {
    #tweets .section-cont{
        grid-template-columns: repeat(2, 49%);
        max-width: 98%;
        margin-top:1em;
        margin-bottom:1em;
    }
    #tweets .section-cont .tweet:nth-of-type(1n+3) {
        display: none;
    }
  }
  
@media only screen and (max-width: 420px) {
    #tweets .section-cont{
        grid-template-columns: 1fr;

    }
    #tweets .section-cont .tweet:nth-of-type(1n+3) {
        display: none;
    }
  }