/* ===== Componente Card InkPages ===== */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5em;
  margin-bottom: 1.5em;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
body.theme-dark .card {
  background: #232323;
  color: #fff;
}
.card__header {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.7em;
}
.card__body {
  margin-bottom: 0.7em;
}
.card__footer {
  text-align: right;
}
.preview-expand-btn-fixed {
  position: absolute;
  right: 12px;
  z-index: 20;
  background: #ff2d7a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.preview-expand-btn-fixed:hover, .preview-expand-btn-fixed:focus {
  background: #b508cd;
  color: #fff;
  outline: 2px solid #fff;
  transform: scale(1.08);
}
[data-theme="dark"] .preview-expand-btn-fixed {
  background: #764ba2;
  color: #fff;
}
[data-theme="dark"] .preview-expand-btn-fixed:hover, [data-theme="dark"] .preview-expand-btn-fixed:focus {
  background: #ff2d7a;
  color: #fff;
  outline: 2px solid #fff;
} 