/* GRID */
.ilsolco-remote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* TABLET */
@media (max-width: 1024px) {

  .ilsolco-remote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* MOBILE */
@media (max-width: 767px) {

  .ilsolco-remote-grid {
    grid-template-columns: 1fr;
  }

}

/* CARD */
.ilsolco-remote-card {
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: 0;
}

/* IMAGE */
.ilsolco-remote-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.ilsolco-remote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  display: block;
}

/* CONTENT */
.ilsolco-remote-content {
  padding-top: 10px;
}

.ilsolco-remote-title {
  margin-bottom: 10px;
}

.ilsolco-remote-excerpt {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.ilsolco-remote-meta {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 10px;
}

/* PAGINATION */
.ilsolco-remote-pagination {
  margin-top: 30px;
  text-align: center;
}

.ilsolco-remote-page {
  background: none;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin: 0 4px;
  cursor: pointer;
}

.ilsolco-remote-page.active {
  background: black;
  color: white;
}


/* TABLET: 2 colonne */
@media (max-width: 1024px) {

  .ilsolco-remote-grid {
    grid-template-columns: 50% 50%;
  }

}

/* MOBILE: 1 colonna */
@media (max-width: 767px) {

  .ilsolco-remote-grid {
    grid-template-columns: 100%;
  }

}

/* Remove padding from hero */
#page > div.elementor.elementor-510 > div.elementor-element.elementor-element-7ffe414.e-con-full.e-flex.wcf-starter-animations-none.e-con.e-parent.e-lazyloaded.wcf-animate.wcf-played {
	padding-left: 0;
	padding-right: 0;
}