/* ═══════════ Feed dos Responsáveis ═══════════ */

.gf-intro {
  font-size: 0.78rem;
  color: var(--muted);
  margin: -4px 0 14px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px dashed var(--border2);
  border-radius: 8px;
  line-height: 1.5;
}

.gf-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gf-card {
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  transition: border-color 0.18s ease, transform 0.12s ease;
}

.gf-card:hover {
  border-color: var(--gold);
}

.gf-card.gf-mine {
  border-left: 4px solid var(--gold);
  background: linear-gradient(180deg, rgba(245, 200, 66, 0.06), var(--bg2));
}

.gf-card-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.gf-icon {
  font-size: 1.7rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border-radius: 50%;
  flex-shrink: 0;
}

.gf-card-meta {
  flex: 1;
  min-width: 0;
}

.gf-actor {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gf-mine-tag {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  background: var(--gold);
  color: #1a1430;
  border-radius: 10px;
}

.gf-time {
  font-size: 0.68rem;
  color: var(--muted2);
  margin-top: 2px;
}

.gf-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 4px;
}

.gf-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.gf-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border2);
}

.gf-applaud-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
}

.gf-applaud-btn:hover {
  border-color: var(--gold);
  color: var(--fg);
  transform: translateY(-1px);
}

.gf-applaud-btn:active {
  transform: translateY(0) scale(0.96);
}

.gf-applaud-btn.active {
  background: var(--gold);
  color: #1a1430;
  border-color: var(--gold);
}

.gf-applaud-btn.active .gf-applaud-icon {
  animation: gfClap 0.4s ease;
}

.gf-applaud-icon {
  font-size: 1rem;
  line-height: 1;
}

.gf-applaud-count {
  background: rgba(0, 0, 0, 0.18);
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  text-align: center;
}

.gf-applaud-btn:not(.active) .gf-applaud-count {
  background: var(--bg);
  color: var(--gold);
}

@keyframes gfClap {
  0%   { transform: scale(1) rotate(0); }
  30%  { transform: scale(1.4) rotate(-15deg); }
  60%  { transform: scale(1.2) rotate(15deg); }
  100% { transform: scale(1) rotate(0); }
}

@media (max-width: 600px) {
  .gf-card { padding: 12px 14px; }
  .gf-icon { width: 34px; height: 34px; font-size: 1.5rem; }
  .gf-title { font-size: 0.86rem; }
}
