.lazy-batcher {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 0;
}

.lazy-batcher .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lazy-batcher__heading {
  font-size: 64px;
  text-align: center;
  margin-bottom: 40px;
}
.lazy-batcher__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lazy-batcher__card {
  background: #fff;
  overflow: hidden;
}
.lazy-batcher__link {
  align-items: center;
  border-bottom: 1px solid #D0D6E3;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  padding: 20px 0;
  width: 100%;
}
.lazy-batcher__img { 
  border-radius: 16px;
  display: block;
  flex: none;
  height: auto; 
  object-fit: cover;
}

.lazy-batcher__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 540px;
  margin
  width: 100%;
}
.lazy-batcher__sentinel { height: 1px; width: 100%; }
.lazy-batcher--complete .lazy-batcher__sentinel { display: none; }

.lazy-batcher .spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--Deck-Blue);
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 650px) {
  body .lazy-batcher__heading {
    font-size: 40px !important;
  }
  .lazy-batcher__link {
    flex-direction: column-reverse;
    gap: 30px;
  }
}