.beautify-page {
  gap: 12px;
}

.beautify-content {
  display: grid;
  gap: 12px;
  padding-bottom: 12px;
}

.beautify-card {
  display: grid;
  gap: 12px;
}

.beautify-grid {
  display: grid;
  gap: 10px;
}

.beautify-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.beautify-entry-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.beautify-entry-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.beautify-entry-body strong {
  font-size: 14px;
  color: var(--text-main);
}

.beautify-entry-body span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-soft);
}

.beautify-entry-arrow {
  margin-left: auto;
  color: #94a3b8;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 480px) {
  .beautify-entry {
    padding: 12px;
  }

  .beautify-entry-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 15px;
  }

  .beautify-entry-body strong {
    font-size: 13px;
  }

  .beautify-entry-body span {
    font-size: 11px;
  }
}
