/**
 * Table to Cards — korttityyli
 * Kaytetaan table-to-cards.js:n kanssa.
 */

.ttc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.ttc-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ttc-card .ttc-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.3;
}

.ttc-card .ttc-title a {
  color: #2a8595;
  text-decoration: none;
}

.ttc-card .ttc-title a:hover {
  text-decoration: underline;
}

/* Kalastusmuodot tageina */
.ttc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ttc-tag {
  display: inline-block;
  background: #2a8595;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Kuvaus */
.ttc-desc {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* CTA-nappi */
.ttc-cta {
  display: inline-block;
  background: #2a8595;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.ttc-cta:hover {
  background: #1e6a77;
  color: #fff;
  text-decoration: none;
}
