.reels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    margin-left: 0 !important;
    margin-right:0 !important;
    max-width:100%;
  }
  
  .reel-item {
    width: calc(33.333% - 16px); /* Ajusta el porcentaje según el número de columnas */
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .reel-item iframe {
    width: 100% !important;
    max-width:100% !important;
    min-width: 100% !important;
  }
  @media (max-width:991px) {
    .reel-item {
        width: calc(50% - 16px); /* Ajusta el porcentaje según el número de columnas */
    }
  }
  @media (max-width:650px) {
    .reel-item {
        width: calc(100% - 16px); /* Ajusta el porcentaje según el número de columnas */
    }
  }
.ca__news-facebook iframe {
	max-width: 100%;
}