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

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-link:hover {
  color: var(--blue-dark);
}

.detail-panel {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 36px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.detail-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--blue-dark);
}

.bullets {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.5;
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .links {
    display: none;
  }
}
