.ds-mischkultur {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 22px 70px;
  font-family: inherit;
  color: #25452d;
}

.ds-mischkultur * {
  box-sizing: border-box;
}

.ds-mischkultur h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 14px;
  color: #244b2c;
}

.ds-mischkultur-intro {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ds-game-panel {
  background: #fffaf1;
  border: 1px solid #eadbc1;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(78, 53, 26, 0.08);
  margin-bottom: 24px;
}

.ds-game-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ds-control-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
  color: #244b2c;
}

.ds-control-group select,
.ds-control-group input {
  min-height: 44px;
  border: 1px solid #d8c6a8;
  border-radius: 14px;
  padding: 9px 13px;
  background: #fffdf8;
  color: #244b2c;
  font-size: 0.98rem;
}

.ds-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ds-filter-btn,
.ds-action-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  background: #e8dcc7;
  color: #244b2c;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.ds-filter-btn:hover,
.ds-action-btn:hover {
  transform: translateY(-1px);
  background: #d9c49f;
}

.ds-filter-btn.is-active {
  background: #7fa36f;
  color: #fff;
}

.ds-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.ds-action-btn.primary {
  background: #6f955f;
  color: #fff;
}

.ds-action-btn.secondary {
  background: #b97a24;
  color: #fff;
}

.ds-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 24px;
  align-items: start;
}

.ds-side h3,
.ds-board-wrap h3 {
  margin-top: 0;
  color: #244b2c;
}

.ds-plant-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 640px;
  overflow: auto;
  padding-right: 6px;
}

.ds-plant-card {
  border: 1px solid #eadbc1;
  background: #fffdf8;
  border-radius: 18px;
  padding: 12px 10px;
  text-align: center;
  cursor: grab;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease;
}

.ds-plant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(78, 53, 26, 0.1);
  border-color: #cba969;
}

.ds-plant-card:active {
  cursor: grabbing;
}

.ds-plant-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 7px;
}

.ds-plant-name {
  font-weight: 800;
  color: #244b2c;
  font-size: 0.95rem;
}

.ds-plant-meta {
  font-size: 0.78rem;
  color: #6c765f;
  margin-top: 3px;
}

.ds-board-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.ds-mission-box {
  background: #f4ecdf;
  border-left: 5px solid #b97a24;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  color: #34462e;
}

.ds-mission-box strong {
  color: #244b2c;
}

.ds-beet {
  display: grid;
  gap: 10px;
  /* Natural soil color with subtle texture */
  background: linear-gradient(135deg, #5a3d2a 0%, #6b4a32 50%, #5a3d2a 100%);
  background-size: 40px 40px;
  border-radius: 26px;
  padding: 18px;
  /* Warm wood frame with depth */
  border: 8px solid #8b6f47;
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}


.ds-field {
  min-height: 92px;
  /* Subtle soil area with minimal border */
  border: 1px solid rgba(139, 111, 71, 0.3);
  border-radius: 14px;
  background: rgba(90, 61, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  color: rgba(139, 111, 71, 0.5);
  text-align: center;
  transition: background 0.2s ease, border 0.2s ease;
  position: relative;
}

.ds-field.is-over {
  background: rgba(107, 74, 50, 0.35);
  border-color: rgba(139, 111, 71, 0.6);
}

.ds-field .ds-empty {
  opacity: 0.4;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(139, 111, 71, 0.45);
}

.ds-field-card {
  width: 100%;
  height: 100%;
  min-height: 76px;
  /* Plant sits on soil - very light creme or transparent */
  background: rgba(255, 250, 241, 0.7);
  border-radius: 12px;
  color: #244b2c;
  border: 1px solid rgba(139, 111, 71, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  /* Subtle shadow for plant presence on soil */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ds-field-card:hover {
  background: rgba(255, 250, 241, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ds-field-card .ds-plant-icon {
  font-size: 1.75rem;
  margin-bottom: 5px;
}

.ds-field-card .ds-plant-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #34462e;
}

.ds-remove-hint {
  font-size: 0.68rem;
  color: #7d6c55;
  margin-top: 2px;
}

.ds-result {
  margin-top: 20px;
  display: none;
}

.ds-result.is-visible {
  display: block;
}

.ds-score-card {
  background: #fffdf8;
  border: 1px solid #eadbc1;
  border-radius: 22px;
  padding: 18px;
}

.ds-score-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #244b2c;
  line-height: 1;
}

.ds-rating {
  font-weight: 900;
  color: #b97a24;
  margin: 7px 0 12px;
  font-size: 1.15rem;
}

.ds-pair-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ds-pair {
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ds-pair.good {
  background: #e8f2df;
  border-left: 4px solid #6f955f;
}

.ds-pair.bad {
  background: #f8e5dc;
  border-left: 4px solid #b85b3d;
}

.ds-pair.neutral {
  background: #f4ecdf;
  border-left: 4px solid #c5a56b;
}

.ds-tip {
  margin-top: 14px;
  background: #f4ecdf;
  border-radius: 16px;
  padding: 13px 15px;
  color: #34462e;
}

@media (max-width: 900px) {
  .ds-layout {
    grid-template-columns: 1fr;
  }

  .ds-plant-list {
    max-height: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ds-mischkultur {
    padding: 28px 14px 48px;
  }

  .ds-game-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .ds-plant-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-beet {
    padding: 12px;
    gap: 8px;
    border-width: 5px;
  }

  .ds-field {
    min-height: 76px;
    border-radius: 12px;
  }

  .ds-field-card {
    min-height: 62px;
  }

  
}




.ds-beet[data-size="small"] {
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  max-width: 380px;
}

.ds-beet[data-size="medium"] {
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  max-width: 520px;
}

.ds-beet[data-size="large"] {
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  max-width: 660px;
}

.ds-score-card {
  margin-top: 18px;
}

.ds-score-number::after {
  content: " / 100";
  font-size: 1rem;
  font-weight: 700;
  color: #6c765f;
}

.ds-article-box {
  margin-top: 20px;
}

.ds-article-box h4 {
  margin: 0 0 14px;
  color: #244b2c;
}

.ds-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ds-article-card {
  display: block;
  overflow: hidden;
  background: #fffaf1;
  border: 1px solid #eadbc1;
  border-radius: 22px;
  text-decoration: none;
  color: #244b2c;
  box-shadow: 0 8px 22px rgba(78, 53, 26, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ds-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(78, 53, 26, 0.12);
}

.ds-article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.ds-article-card-content {
  padding: 15px 16px 17px;
}

.ds-article-card-content span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f955f;
  margin-bottom: 7px;
}

.ds-article-card-content strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 11px;
}

.ds-article-card-content em {
  font-style: normal;
  font-weight: 900;
  font-size: 0.82rem;
  color: #b97a24;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ds-layout {
    grid-template-columns: 1fr;
  }

  .ds-article-grid {
    grid-template-columns: 1fr;
  }
}



.ds-plant-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.ds-plant-img-small {
  width: 46px;
  height: 46px;
  margin-bottom: 5px;
}



.ds-plant-emoji {
  display: none;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.ds-field-card .ds-plant-emoji {
  font-size: 1.75rem;
  margin-bottom: 5px;
}

/* Overrides: make UI image-only and more compact */
/* Layout tweaks: keep original image sizes/spacing, hide category and remove text */
/* keep emoji as fallback but hidden by default */
.ds-plant-emoji {
  display: none !important;
  font-size: 2.25rem !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
}

/* hide only category/group and remove hint; show plant name */
.ds-plant-meta,
.ds-remove-hint {
  display: none !important;
}