.achievements-hero {
  padding-bottom: 1.15rem;
}

.achievements-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem 1.1rem;
  align-items: start;
}

.achievements-hero .section-intro {
  margin-bottom: 0;
}

.achievements-hero-notes {
  position: relative;
  padding: 0.7rem 0.4rem 0.7rem 1rem;
  display: grid;
  gap: 0.65rem;
  isolation: isolate;
}

.achievements-hero-notes::before {
  content: '';
  position: absolute;
  inset: -12% -8% -12% -10%;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 36%, rgba(15, 95, 221, 0.2) 0%, rgba(15, 95, 221, 0.08) 38%, transparent 72%),
    radial-gradient(circle at 70% 55%, rgba(13, 150, 204, 0.16) 0%, rgba(13, 150, 204, 0.06) 35%, transparent 72%);
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
}

.achievements-hero-notes::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 95, 221, 0.2), rgba(15, 95, 221, 0.95), rgba(13, 150, 204, 0.45));
  box-shadow: 0 0 18px rgba(15, 95, 221, 0.3);
  pointer-events: none;
}

.achievements-hero-notes p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
  color: var(--ink);
  text-wrap: balance;
}

.achievements-hero-notes strong {
  color: var(--surface-strong);
}

.achievement-group {
  border: 1px solid rgba(15, 95, 221, 0.12);
  border-radius: calc(var(--radius-lg) + 2px);
  padding: clamp(0.95rem, 2vw, 1.2rem);
  background:
    radial-gradient(circle at 8% 14%, rgba(15, 95, 221, 0.06), transparent 45%),
    radial-gradient(circle at 90% 12%, rgba(13, 150, 204, 0.06), transparent 42%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(233, 243, 255, 0.9) 58%, rgba(244, 249, 255, 0.96) 100%);
  box-shadow: var(--shadow-md), 0 0 46px -22px rgba(15, 95, 221, 0.18);
}

.achievement-group-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  max-width: 72ch;
}

.achievement-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.achievement-panel {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.8rem;
  align-items: start;
  min-height: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 95, 221, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(236, 245, 255, 0.88) 100%);
  box-shadow: 0 10px 18px -16px rgba(10, 42, 86, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.achievement-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
}

.achievement-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 95, 221, 0.26);
  box-shadow: 0 14px 22px -16px rgba(10, 42, 86, 0.5), 0 0 24px -16px rgba(15, 95, 221, 0.24);
}

.achievement-panel:focus-within {
  outline: 2px solid rgba(15, 95, 221, 0.35);
  outline-offset: 2px;
}

.achievement-icon,
.achievement-copy {
  position: relative;
  z-index: 1;
}

.achievement-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 95, 221, 0.18);
  background: linear-gradient(145deg, rgba(15, 95, 221, 0.08), rgba(255, 255, 255, 0.97));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.achievement-icon-logo {
  padding: 0.28rem;
  background: #fff;
}

.achievement-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.achievement-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.achievement-copy {
  display: grid;
  gap: 0.32rem;
}

.achievement-copy h3 {
  font-size: 1rem;
  line-height: 1.16;
  color: var(--surface-strong);
}

.achievement-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.42;
  color: var(--ink-soft);
}

.achievement-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.achievement-link {
  padding: 0.38rem 0.72rem;
  font-size: 0.73rem;
  line-height: 1.2;
}

.achievement-link.primary {
  color: #fff;
}

.achievement-link.primary:hover {
  color: #fff;
}

.achievement-link:focus-visible {
  outline: 2px solid rgba(15, 95, 221, 0.38);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .achievements-hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .achievement-group-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .achievement-group {
    padding: 0.85rem;
  }

  .achievement-panel {
    grid-template-columns: 46px 1fr;
    gap: 0.7rem;
    padding: 0.8rem;
  }

  .achievement-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .achievement-icon svg {
    width: 20px;
    height: 20px;
  }

  .achievement-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .achievement-panel {
    transition: none;
  }
}
