/* Agentmink Design System v1.2
   Layout utilities + shared components only. */

/* Container */
.container,
.container-fluid {
  width: 100%;
  max-width: var(--theme-block-max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Grid background (behind cards) */
.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.btn-primary:hover {
  background: #333;
}
.btn-secondary {
  background: transparent;
  color: #111;
  border-color: #ccc;
}
.btn-secondary:hover {
  background: #f5f5f5;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  background: #f5f5f5;
  color: #555;
}
.pill {
  border-radius: 9999px;
}
.sharp {
  border-radius: 0;
}

/* Visibility helpers */
.hide-mobile {
  display: block;
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}