/* ============================================================
   SKN Home Teasers — skn-teasers.css
   Evoke · Version 1.0.0
   Spec: black buttons / white text, #980707 icons, black top line
   ============================================================ */

.skn-teasers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .skn-teasers-row {
    grid-template-columns: 1fr;
  }
}

.skn-teaser-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-top: 3px solid #000000;
  border-radius: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}

.skn-teaser-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.skn-teaser-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #980707;
}

.skn-teaser-title {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.2px;
}

.skn-teaser-sub {
  font-size: 12px;
  color: #666666;
  margin: 0 0 12px;
  line-height: 1.4;
}

.skn-teaser-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.skn-teaser-thumb {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.skn-teaser-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
}

.skn-teaser-item-meta {
  font-size: 11px;
  color: #777777;
  margin-top: 2px;
}

.skn-teaser-ferry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #333333;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.skn-teaser-ferry-row:last-of-type {
  border-bottom: none;
}
.skn-teaser-ferry-row strong {
  font-weight: 600;
  color: #111111;
}

.skn-teaser-empty {
  font-size: 12px;
  color: #888888;
  font-style: italic;
  padding: 12px 0;
}

.skn-teaser-btn {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  background: #000000;
  color: #ffffff !important;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: opacity 0.15s;
}

.skn-teaser-btn:hover {
  opacity: 0.82;
  color: #ffffff !important;
}
