@import url("/fonts.css");

.pg-review-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 72px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: #5b6671;
  font-family:
    "Inter", "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo",
    "Malgun Gothic", "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  line-height: 1.65;
}

.pg-review-footer dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
}

.pg-review-footer div {
  display: inline-flex;
  min-width: 0;
  gap: 6px;
}

.pg-review-footer dt {
  color: #26323d;
  font-weight: 820;
  white-space: nowrap;
}

.pg-review-footer dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.pg-review-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-content: start;
  justify-content: flex-end;
}

.pg-review-footer a {
  color: #111820;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .pg-review-footer {
    grid-template-columns: 1fr;
  }

  .pg-review-footer dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pg-review-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .pg-review-footer {
    width: min(100% - 24px, 1180px);
    padding: 18px;
  }

  .pg-review-footer dl {
    grid-template-columns: 1fr;
  }
}
