.ws-partner-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.ws-partner-box {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
}

.ws-partner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.ws-partner-img img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  border-radius: 6px;
}

/* 🏅 Badge oben rechts */
.ws-danke-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #4CAF50;
  color: #fff;
  font-weight: bold;
  font-size: 0.85em;
  padding: 6px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
}

.ws-partner-box h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 1.2em;
  color: #222;
  text-align: center;
}


.ws-partner-box p {
  margin: 5px 0;
  font-size: 0.95em;
  color: #444;
  text-align: left;
}


/* 💚 Dankes-Panel Styling */
.ws-danke-auswahl {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.ws-danke-auswahl label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-size: 1em;
}

/* Emoji-Button Styling */
.ws-danke-btn {
  font-size: 24px;
  background: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 8px 14px;
  margin: 6px 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.ws-danke-btn:hover {
  background-color: #e6f7ed;
  border-color: #4CAF50;
  transform: scale(1.1);
}

.ws-danke-btn.active {
  background-color: #4CAF50;
  border-color: #388e3c;
  color: white;
}

.ws-danke-name {
  width: 100%;
  padding: 8px;
  margin: 12px 0 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95em;
}

.ws-danke-absenden {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  font-size: 1em;
}

.ws-danke-feedback {
  margin-top: 6px;
  font-size: 0.9em;
  color: #222;
  text-align: center;
}

/* 🧾 Wer hat schon Danke gesagt */
.ws-danke-liste {
  margin-top: 12px;
  text-align: left;
  font-size: 0.9em;
}

.ws-danke-liste summary {
  cursor: pointer;
  font-weight: bold;
  color: #444;
  margin-bottom: 5px;
}

.ws-danke-liste ul {
  list-style: none;
  padding-left: 0;
  margin: 5px 0 0;
}

.ws-danke-liste li {
  padding: 3px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9em;
  color: #333;
}
