@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

.naba-opinion{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  width: 100%;
}

.naba-opinion-list{
  display: flex;
  flex-direction: column;
  gap: var(--naba-op-gap, 14px);
}

.naba-opinion-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--naba-op-card-bg, rgba(0,0,0,0.03));
  border-radius: var(--naba-op-card-radius, 10px);
  text-decoration: none;
}

.naba-opinion-text{ min-width: 0; }

.naba-opinion-author{
  font-size: var(--naba-op-author-size, 14px);
  font-weight: var(--naba-op-author-weight, 800);
  color: var(--naba-op-author-color, #d32f2f);
  line-height: 1.1;
  margin-bottom: 6px;
}

.naba-opinion-title{
  font-size: var(--naba-op-title-size, 18px);
  font-weight: var(--naba-op-title-weight, 800);
  color: var(--naba-op-title-color, #111);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.naba-opinion-avatar{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  filter: grayscale(1);
  opacity: .92;
}

.naba-opinion-section{
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: var(--naba-op-section-size, 18px);
  font-weight: var(--naba-op-section-weight, 800);
  color: var(--naba-op-section-color, #d32f2f);
}

.naba-opinion-empty{
  font-size: 14px;
  color: rgba(0,0,0,.6);
  padding: 10px 12px;
}

@media (max-width: 768px){
  .naba-opinion-card{ padding: 12px 14px; }
  .naba-opinion-title{
    font-size: var(--naba-op-m-title-size, 17px);
    font-weight: var(--naba-op-m-title-weight, 800);
    color: var(--naba-op-m-title-color, var(--naba-op-title-color, #111));
  }
  .naba-opinion-section{
    font-size: var(--naba-op-m-section-size, 18px);
    font-weight: var(--naba-op-m-section-weight, 800);
    color: var(--naba-op-m-section-color, var(--naba-op-section-color, #d32f2f));
  }
}
