/* --- phpBB bridge comments bar --- */
.phpbb-bridge-comments-container{
  margin: 18px 0 12px;
}

.phpbb-bridge-comments-link{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;

  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);

  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #8B0000;
  text-decoration: none;
}

/* Иконка слева */
.phpbb-bridge-comments-link::before{
  content:"";
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;

  background: url("/themes/custom/quatro/images/comments-70.png") center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

/* Линия справа */
.phpbb-bridge-comments-link::after{
  content:"";
  height: 2px;
  flex: 1 1 auto;
  margin-left: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(139,0,0,.55), rgba(139,0,0,0));
}

/* Hover эффект */
.phpbb-bridge-comments-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  text-decoration: none;
}
