@charset "utf-8";

:root .latest-stories .latest-stories-btn {
  display: none;
}

:root .latest-stories .latest-stories-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}

:root .latest-stories .latest-stories-item {
  width: auto;
  height: auto;
  margin: 0;
}

.latest-stories-load-status {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 30px;
  border: 0;
  background: transparent;
  color: var(--color-text-secondary);
  font: inherit;
  text-align: center;
}

.latest-stories-load-status[data-retry="true"] {
  color: var(--color-primary);
  cursor: pointer;
}

.latest-stories-load-status.is-animating::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: -4px;
  content: "";
  animation: festivals-events2-loading-spin 0.7s linear infinite;
}

.latest-stories-load-status[hidden] {
  display: none;
}

.latest-stories-load-sentinel {
  height: 1px;
}

@keyframes festivals-events2-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 767px) {
  :root .latest-stories .latest-stories-list {
    grid-template-columns: 1fr;
  }
}
