/* German-California Tile System - Einfache Kacheln wie Seitenblöcke */

.gcrp-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gcrp-tile-wrap {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: move;
}

.gcrp-tile-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gcrp-tile-wrap.is-dragging {
  opacity: 0.8;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.gcrp-tile-wrap.drag-over {
  border: 2px dashed var(--gold);
  transform: scale(1.02);
}

.gcrp-tile-content {
  padding: 20px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.6;
}

.gcrp-tile-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gcrp-tile-content a:hover {
  text-decoration: none;
}

.gcrp-tile-content h1,
.gcrp-tile-content h2,
.gcrp-tile-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

.gcrp-tile-content ul,
.gcrp-tile-content ol {
  margin: 8px 0;
  padding-left: 20px;
}

.gcrp-tile-content li {
  margin: 4px 0;
}
