body {
  margin: 0;
  background: #08111f;
  color: #f4f7fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  width: min(calc(100% - 2rem), 1120px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
  box-sizing: border-box;
}

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

.box {
  min-height: 132px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.35rem;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(182, 205, 232, 0.18);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(89, 214, 187, 0.1), transparent 58%),
    #14243a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  color: #f4f7fb;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.box:hover,
.box:focus-visible {
  transform: translateY(-3px);
  border-color: #59d6bb;
  background-color: #182b45;
}

.box:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 3px;
}

.left-taper,
.right-taper {
  background:
    linear-gradient(145deg, rgba(89, 214, 187, 0.1), transparent 58%),
    #14243a;
}

.box h2,
.box h3 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.2;
}

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

  .box {
    min-height: 104px;
  }
}
