#page {
  overflow: hidden;
}

main * {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #231815;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.archiveBody {
  padding: 2.5rem 1.25rem clamp(3.75rem, 8.9286vw, 6.25rem);
}

.searchForm .searchForm__label {
  margin: 0;
}

.searchForm__row {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.searchForm input[type="search"] {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  padding-left: 2.8rem;
  width: 100%;
}

.searchForm input[type="submit"] {
  border-radius: 0.625rem;
  font-size: 1.125rem;
  max-width: 7.0625rem;
  width: 100%;
}

.searchField {
  display: block;
  max-width: 31rem;
  position: relative;
  width: 100%;
}

.searchField::after {
  background: url(../../images/ed-business/icon-search.svg) no-repeat center / cover;
  content: "";
  height: 1.5rem;
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
}

.archive__nav,
.noPosts {
  margin-top: 2.5rem;
}

.noPosts {
  font-size: 1.125rem;
  font-weight: 700;
}

.archive__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive__item {
  background: #f3f3f3;
  padding: clamp(1.625rem, 3.5714vw, 2.5rem);
}

.archive__item:has(.archive__thumbnail) {
  display: grid;
  gap: 0 1.5rem;
  grid-template-columns: 7.75rem auto;
}

.archive__details {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.archive__item .edCTA {
  height: 2.5rem;
  max-width: 10.25rem;
}

.archive__title {
  color: #9a0c1b;

/* Max 24 Min 18 */
  font-size: clamp(1.125rem, 0.823rem + 0.97vw, 1.5rem);
  font-weight: 500;
}

.archive__thumbnail img {
  border-radius: 0.625rem;
}

@media screen and (max-width: 550px) {
  .archive__item,
  .archive__item:has(.archive__thumbnail) {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  .archive__item .edCTA {
    margin: 0 auto;
    width: 100%;
  }
  .archive__title {
    text-align: center;
  }
}
