.guides-main {
  min-height: calc(100vh - 145px);
}

.guides-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #3b4952;
}

.guides-heading .button-link {
  flex: 0 0 auto;
}

.customer-guide-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.customer-guide-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.customer-guide-number {
  color: var(--accent);
  font: 700 28px Consolas, monospace;
  text-align: center;
}

.customer-guide-copy h2 {
  margin-bottom: 7px;
  font-size: 22px;
}

.customer-guide-copy .eyebrow {
  margin-bottom: 5px;
}

.customer-guide-copy .hint {
  margin-bottom: 0;
}

.customer-guide-watch {
  min-width: 155px;
  white-space: nowrap;
}

.guide-empty {
  margin-top: 26px;
}

@media (max-width: 760px) {
  .guides-heading,
  .customer-guide-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .customer-guide-number {
    text-align: left;
  }

  .customer-guide-watch {
    width: 100%;
  }
}
