/* NoMoore Card Styles */
.nomoore-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.nomoore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  background: var(--nm-bg, #0B4B7B);
  color: var(--nm-text, #fff);
  padding: var(--nm-pad, 24px);
  border-radius: var(--nm-radius, 16px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transform: translateY(0);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  height: var(--nm-height, auto);
  min-height: 200px;
}

.nomoore-card:hover {
  transform: translateY(calc(var(--nm-hover-move, 5px) * -1));
  background: var(--nm-hover, var(--nm-bg, #0B4B7B));
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.nomoore-icon {
  position: absolute;
  top: var(--nm-pad, 24px);
  right: var(--nm-pad, 24px);
  transition: color .2s ease, fill .2s ease;
}

.nomoore-icon svg {
  width: 100%;
  height: 100%;
  fill: inherit;
}

.nomoore-content {
  display: flex;
  flex-direction: column;
}

.nomoore-text {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 18px 0;
  font-weight: 700;
  color: var(--nm-text, #fff);
  transition: color .2s ease;
}

.nomoore-meta {
  font-size: .9rem;
  color: var(--nm-meta, rgba(255,255,.8));
  transition: color .2s ease;
}

.nomoore-card:hover .nomoore-text,
.nomoore-card:hover .nomoore-meta {
  color: var(--nm-text-hover, var(--nm-text));
}

.nomoore-error {
  color:#b10000;
  font-weight:600;
}