.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.brand {
  display: flex;
  align-items: center;
  width: min(280px, 52vw);
}

.wordmark {
  width: 100%;
  height: auto;
  display: block;
}

.day {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: var(--font-medium);
}

@media (max-width: 1000px) {
  .top {
    margin-bottom: 26px;
  }
}

@media (max-width: 640px) {
  .top {
    gap: 12px;
    margin-bottom: 22px;
  }

  .brand {
    width: min(190px, 50vw);
  }

  .day {
    font-size: 24px;
    text-align: right;
  }
}
