.query-growth-entry {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 12px;
  padding: 18px 20px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(96, 165, 250, 0.22), transparent 38%),
    linear-gradient(135deg, #f8fbff 0%, #edf5ff 100%);
  box-shadow: 0 14px 34px rgba(36, 76, 136, 0.09);
  box-sizing: border-box;
  color: #15233b;
}

.query-growth-entry__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #1769e8;
  box-shadow: 0 10px 22px rgba(23, 105, 232, 0.24);
  color: #fff;
  font-size: 26px;
  font-weight: 300;
}

.query-growth-entry__copy {
  min-width: 0;
}

.query-growth-entry__proof {
  display: inline-block;
  margin-bottom: 5px;
  color: #1769e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.query-growth-entry h2 {
  margin: 0;
  color: #14213a;
  font-size: 17px;
  line-height: 1.45;
}

.query-growth-entry p {
  margin: 5px 0 0;
  color: #66758b;
  font-size: 13px;
  line-height: 1.6;
}

.query-growth-entry__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 14px;
  background: #102f59;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.query-growth-entry__action:hover {
  background: #1769e8;
  transform: translateY(-1px);
}

.query-growth-entry__action:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .query-growth-entry {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .query-growth-entry__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 23px;
  }

  .query-growth-entry__action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .query-growth-entry {
    padding: 14px;
  }

  .query-growth-entry h2 {
    font-size: 16px;
  }
}
