.ilc-cluster {
  box-sizing: border-box;
  margin: 1.5em 0;
  width: 100%;
}

.ilc-cluster *,
.ilc-cluster *::before,
.ilc-cluster *::after {
  box-sizing: inherit;
}

.ilc-cluster__grid {
  display: grid;
  gap: clamp(10px, 2vw, 22px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ilc-card {
  background: transparent;
  border: 1px solid rgba(127, 127, 127, 0.25);
  border-radius: 6px;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.ilc-card__link {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.ilc-card__link:hover .ilc-card__title,
.ilc-card__link:focus .ilc-card__title {
  text-decoration: underline;
}

.ilc-card__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.ilc-card__media {
  aspect-ratio: 16 / 9;
  background: rgba(127, 127, 127, 0.1);
  display: block;
  overflow: hidden;
  width: 100%;
}

.ilc-card__media img {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.ilc-card__content {
  display: block;
  padding: clamp(10px, 2vw, 18px);
}

.ilc-card__title {
  color: inherit;
  font-family: inherit;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-style: inherit;
  font-weight: inherit;
  hyphens: none;
  line-height: 1.25;
  margin: 0 0 0.45em;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: normal;
}

.ilc-card__description {
  display: -webkit-box;
  font-family: inherit;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  hyphens: none;
  line-height: 1.45;
  margin: 0;
  opacity: 0.82;
  overflow: hidden;
  overflow-wrap: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: normal;
}

@media (max-width: 600px) {
  .ilc-cluster__grid {
    gap: 8px;
  }

  .ilc-card {
    border-radius: 4px;
  }

  .ilc-card__content {
    padding: 9px;
  }

  .ilc-card__title {
    font-size: 0.9rem;
  }

  .ilc-card__description {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }
}
